/* ============ BASE ============ */
:root {
  --bg: #0A0E1A;
  --bg-2: #0E1424;
  --bg-3: #141B2E;
  --ink: #F5F1E6;
  --ink-2: #C4C8D4;
  --ink-3: #8089A0;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --gold: #E8B859;
  --gold-2: #D9A23A;
  --gold-soft: rgba(232,184,89,0.12);
  --green: #2E5A4A;
  --green-ink: #1F3A32;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
::selection { background: var(--gold); color: #000; }

.serif { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; }
em, .gold-italic { font-family: 'Cormorant Garamond', Georgia, serif; font-style: normal; color: var(--gold); font-weight: 700; }
.gold { color: var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; }
.section { padding: 72px 0; position: relative; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-on-dark { color: var(--gold); }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 20px 0 18px;
  text-wrap: balance;
}
.section-title .gold-word { color: var(--gold); font-style: normal; font-family: inherit; font-weight: 700; }
.section-sub {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
}
.btn-gold { background: var(--gold); color: #0a0e1a; }
.btn-gold:hover { background: #f0c770; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(232,184,89,0.25); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-block { width: 100%; padding: 16px; font-size: 14px; }
.btn:disabled { opacity: 0.7; cursor: wait; transform: none; box-shadow: none; }

/* ============ NAV ============ */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  padding: 26px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img { height: 90px; width: auto; display: block; }
.nav-links { display: flex; gap: 44px; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav { padding: 12px 24px; font-size: 14px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: auto;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #0E1424 0%, #060913 70%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.flowfield-root { position: relative; width: 100%; height: 100%; overflow: hidden; background: #080C16; }
.flowfield-root canvas { display: block; width: 100%; height: 100%; }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, transparent 0%, rgba(6,9,19,0.55) 70%, rgba(6,9,19,0.9) 100%),
    linear-gradient(180deg, rgba(6,9,19,0.5) 0%, transparent 30%, transparent 70%, rgba(6,9,19,0.9) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 24px 0 28px;
  text-wrap: nowrap;
  white-space: normal;
}
.hero-title br { display: block; }
.hero-title .gold-word { color: var(--gold); font-style: normal; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; }
.hero-sub {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 40px;
}

.hero-stats { display: flex; align-items: center; gap: 28px; margin-bottom: 36px; }
.stat-divider { width: 1px; height: 42px; background: var(--line); }
.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}

.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--green) 100%);
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #8b7355 0%, #3a5a50 100%); }
.trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #c9a878 0%, #5a6b85 100%); }
.trust-avatars span:nth-child(4) { background: linear-gradient(135deg, #e8b859 0%, #1f3a32 100%); }
.trust-text { color: var(--ink-3); font-size: 13px; }

/* ============ HERO FORM ============ */
.ref-form {
  background: rgba(14, 20, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.ref-form-head { margin-bottom: 20px; }
.ref-form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.ref-form-sub { color: var(--ink-3); font-size: 12px; }

.ref-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.field input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  font-family: inherit;
  transition: all .2s;
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(232,184,89,0.04);
}
.field input::placeholder { color: var(--ink-3); }

.ref-form-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.ref-form-feedback.is-success {
  background: rgba(46,90,74,0.16);
  border-color: rgba(113,190,160,0.35);
  color: #cde9dc;
}
.ref-form-feedback.is-error {
  background: rgba(160,54,54,0.16);
  border-color: rgba(214,105,105,0.35);
  color: #ffd1d1;
}

.turnstile-field {
  display: flex;
  justify-content: center;
  min-height: 65px;
  margin: 4px 0 16px;
}

.ref-form-note {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(6px); opacity: 0.3; } }
.scroll-dot { animation: scrollDot 1.8s ease-in-out infinite; }

/* ============ HOW IT WORKS ============ */
.how-section { background: linear-gradient(180deg, #060913 0%, var(--bg) 100%); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how-card { position: relative; text-align: left; padding: 40px 32px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); }
.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
}
.how-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.how-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; margin-bottom: 10px; }
.how-desc { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.how-arrow {
  position: absolute;
  right: -28px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.5;
  font-size: 20px;
}

/* ============ REWARDS ============ */
.rewards-section { background: var(--bg); }
.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.ladder-card {
  background: linear-gradient(180deg, rgba(232,184,89,0.03) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.ladder-card:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(232,184,89,0.06) 0%, rgba(255,255,255,0.03) 100%);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,184,89,0.2);
}
.ladder-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; min-height: 68px; }
.ladder-head-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.ladder-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 0.9;
  font-weight: 400;
  color: var(--gold);
}
.ladder-meta { flex: 1; }
.ladder-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; }
.ladder-threshold { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.ladder-tier {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232,184,89,0.08);
  border: 1px solid rgba(232,184,89,0.2);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.tier-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.ladder-desc { color: var(--ink-2); font-size: 13px; line-height: 1.5; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px dashed var(--line); min-height: 62px; }
.ladder-body { display: flex; flex-direction: column; flex: 1; }
.ladder-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; min-height: 168px; }
.ladder-items li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink); }
.ri-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(232,184,89,0.08);
  color: var(--gold);
  flex-shrink: 0;
}
.ri-label { line-height: 1.3; }
.ladder-rail {
  margin-top: auto;
  padding-top: 24px;
}
.ladder-rail-track {
  height: 3px; background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.ladder-rail-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(232,184,89,0.5);
}

/* SURPRISE */
.surprise {
  border: 1px solid rgba(232,184,89,0.3);
  background:
    radial-gradient(ellipse at right, rgba(232,184,89,0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(46,90,74,0.1) 0%, rgba(14,20,36,0.6) 100%);
  border-radius: 20px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  cursor: default;
}
.surprise:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,184,89,0.25);
  background:
    radial-gradient(ellipse at right, rgba(232,184,89,0.14) 0%, transparent 60%),
    linear-gradient(135deg, rgba(46,90,74,0.16) 0%, rgba(14,20,36,0.7) 100%);
}
.surprise::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(232,184,89,0.015) 20px, rgba(232,184,89,0.015) 21px);
  pointer-events: none;
}
.surprise-inner { display: flex; align-items: center; gap: 32px; position: relative; }
.surprise-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0e1a;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
}
.surprise-body { flex: 1; }
.surprise-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 8px;
}
.surprise-sub { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.surprise-ornament { color: var(--gold); opacity: 0.5; flex-shrink: 0; }

/* ============ TESTIMONIALS ============ */
.testi-section { background: linear-gradient(180deg, var(--bg) 0%, #060913 100%); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.testi-card {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote-mark { color: var(--gold); margin-bottom: 16px; display: block; }
.testi-card blockquote {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.testi-card figcaption { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); margin-top: auto; }
.testi-years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* ============ FAQ ============ */
.faq-section { background: #060913; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: all .25s;
}
.faq-item.is-open { border-color: var(--gold); background: rgba(232,184,89,0.03); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ink);
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-q svg { transition: transform .3s; color: var(--gold); flex-shrink: 0; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.is-open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-2); font-size: 14px; line-height: 1.65; }

/* ============ CTA ============ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: #060913;
}
.cta-bg { position: absolute; inset: 0; opacity: 0.6; }
.cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6,9,19,0.85) 70%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  margin: 20px 0 20px;
  text-wrap: balance;
}
.cta-title .gold-word { color: var(--gold); font-style: normal; font-weight: 700; }
.cta-sub { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin: 0 0 36px; }

/* ============ FOOTER ============ */
.footer {
  background: #040609;
  padding: 60px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { height: 90px; width: auto; opacity: 0.95; margin-bottom: 16px; display: block; }
.footer-brand p { color: var(--ink-3); font-size: 14px; line-height: 1.6; max-width: 340px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-h { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-col a { color: var(--ink-2); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 12px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #f7fff8;
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  box-shadow: 0 18px 42px rgba(18, 140, 74, 0.34), 0 0 0 1px rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 54px rgba(18, 140, 74, 0.42), 0 0 0 1px rgba(255,255,255,0.12);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.whatsapp-float span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-arrow { display: none; }
  .ladder { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .ref-grid { grid-template-columns: 1fr; }
  .ladder { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .surprise-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }
  .whatsapp-float span { display: none; }
}

@media print {
  .whatsapp-float { display: none !important; }
}
