@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #E63462;
  --primary-dark: #B01F49;
  --primary-light: #FF7A6B;
  --secondary: #241014;
  --secondary-light: #7A4A52;
  --gold: #C9973F;
  --ink: #241014;
  --bg: #FDF5F4;
  --card: #FFFFFF;
  --border: #F2DAD6;
  --border-focus: #E63462;
  --text-secondary: #7A4A52;
  --text-muted: #A88188;
  --success: #4F8F5E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(230, 52, 98, 0.28);
}

.top-nav .links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.top-nav .links a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 6px 4px;
}

.top-nav .links a:hover {
  color: var(--primary);
}

.hero {
  background: radial-gradient(circle at 80% 20%, rgba(255, 122, 107, 0.35) 0%, transparent 50%),
              linear-gradient(135deg, #1A0B0E 0%, #2A1016 30%, #5E1424 70%, #E63462 100%);
  color: #fff;
  padding: 76px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero img.logo-badge {
  width: 124px;
  height: 124px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38), 0 0 24px rgba(230, 52, 98, 0.4);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.hero img.logo-badge:hover {
  transform: translateY(-4px) scale(1.02);
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 16.5px;
  opacity: 0.94;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.container {
  max-width: 780px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 12px 35px rgba(176, 31, 73, 0.08);
}

.legal-doc h1 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 0;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

.legal-doc .updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.legal-doc h2 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 36px;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.legal-doc h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-top: 22px;
  color: var(--ink);
}

.legal-doc p, .legal-doc li {
  font-size: 15px;
  color: #3b272b;
  line-height: 1.7;
}

.legal-doc ul, .legal-doc ol {
  padding-left: 22px;
}

.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
}

.legal-doc th, .legal-doc td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

.legal-doc th {
  background: #FCEDEB;
  color: var(--primary-dark);
  font-weight: 700;
}

.placeholder {
  background: #FFF5F4;
  border: 1px dashed var(--primary-light);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--primary-dark);
  display: inline-block;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 6px 0 6px 44px;
  margin-bottom: 12px;
  font-size: 15px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(230, 52, 98, 0.3);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.pill {
  background: #FDF6F5;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(176, 31, 73, 0.08);
}

.pill strong {
  display: block;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pill span {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 36px 20px 60px;
  color: var(--text-secondary);
  font-size: 13.5px;
}

footer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

footer a:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--primary);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 26px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.btn:hover {
  background: #FFF5F4;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

@media (max-width: 600px) {
  .top-nav { padding: 14px 18px; }
  .hero { padding: 50px 18px 60px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .card { padding: 26px 20px; border-radius: 20px; }
  .top-nav .links { display: none; }
}
