
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --c-bg:          #111110;
  --c-bg-2:        #161614;
  --c-bg-3:        #1c1c1a;
  --c-bg-4:        #222220;
  --c-bg-card:     #181816;
  --c-gold:        #C9A84C;
  --c-gold-light:  #E2C06A;
  --c-gold-dim:    rgba(201,168,76,0.12);
  --c-gold-border: rgba(201,168,76,0.22);
  --c-gold-text:   #D4AF62;
  --c-white:       #F5F4EF;
  --c-white-80:    rgba(245,244,239,0.8);
  --c-white-50:    rgba(245,244,239,0.5);
  --c-white-25:    rgba(245,244,239,0.25);
  --c-white-10:    rgba(245,244,239,0.08);
  --c-green:       #1E7C4D;
  --c-green-dim:   rgba(30,124,77,0.15);
  --c-green-text:  #3DB872;
  --c-red:         #B83030;
  --c-red-dim:     rgba(184,48,48,0.12);
  --c-red-text:    #E06060;
  --c-border:      rgba(245,244,239,0.07);
  --c-border-gold: rgba(201,168,76,0.18);
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;
  --f-mono:  'DM Mono', 'Courier New', monospace;
  --t-d1:   clamp(44px, 7vw, 72px);
  --t-h1:   clamp(26px, 3.5vw, 36px);
  --t-h2:   clamp(22px, 2.8vw, 28px);
  --t-h3:   18px;
  --t-body:  15px;
  --t-small: 13px;
  --t-xs:    11px;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;
  --r-sm: 3px; --r-md: 6px; --r-lg: 12px;
  --sh-gold: 0 0 40px rgba(201,168,76,0.06);
  --sh-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: var(--t-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--f-sans); border: none; background: none; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 var(--sp-6); }
.container--wide { max-width: 1240px; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--sp-4) 0;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(17,17,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--c-border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--f-serif); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--c-white); line-height: 1; }
.nav__logo span { color: var(--c-gold-text); }
.nav__links { display: flex; align-items: center; gap: var(--sp-7); list-style: none; }
.nav__links a { font-size: var(--t-small); font-weight: 400; color: var(--c-white-50); letter-spacing: 0.02em; transition: color 0.2s; }
.nav__links a:hover, .nav__links a.active { color: var(--c-white); }
.nav__cta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 10px 20px; background: var(--c-gold); color: #111110;
  font-size: var(--t-small); font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--r-sm); transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.nav__cta:hover { background: var(--c-gold-light); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--c-white); transition: all 0.3s; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 140px 0 var(--sp-10);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.page-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.page-hero__bg-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.page-hero__bg-orb--1 {
  width: 500px; height: 500px; top: -150px; right: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.page-hero__bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,244,239,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(245,244,239,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}

.section-label {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-gold-text); margin-bottom: var(--sp-5);
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--c-gold); opacity: 0.6; }

.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-gold-text); margin-bottom: var(--sp-5);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-green-text);
  box-shadow: 0 0 8px var(--c-green-text); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

.page-hero__title {
  font-family: var(--f-serif); font-size: var(--t-d1); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.03em; color: var(--c-white);
  margin-bottom: var(--sp-5);
}
.page-hero__title em { font-style: italic; color: var(--c-gold-text); }
.page-hero__sub {
  font-size: clamp(15px, 1.6vw, 17px); color: var(--c-white-50);
  max-width: 560px; line-height: 1.75; margin-bottom: var(--sp-6);
}
.page-hero__sub strong { color: var(--c-white-80); font-weight: 500; }

.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: var(--c-green-dim);
  border: 1px solid rgba(30,124,77,0.3); border-radius: var(--r-sm);
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-green-text);
}
.live-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-green-text); animation: pulse 2s infinite;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  padding: var(--sp-7) 0; border-bottom: 1px solid var(--c-border); background: var(--c-bg-2);
}
.stats-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-strip__item { padding: var(--sp-5) var(--sp-6); border-right: 1px solid var(--c-border); text-align: center; }
.stats-strip__item:last-child { border-right: none; }
.stats-strip__value {
  font-family: var(--f-serif); font-size: clamp(30px, 4vw, 44px); font-weight: 700;
  color: var(--c-gold-text); line-height: 1; letter-spacing: -0.03em; margin-bottom: var(--sp-2);
}
.stats-strip__label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-white-25); }
.stats-strip__sub { font-size: var(--t-xs); color: var(--c-white-25); margin-top: var(--sp-1); }

/* ---- SECTION SHARED ---- */
.section { padding: var(--sp-10) 0; }
.section--alt { background: var(--c-bg-2); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.section-heading {
  font-family: var(--f-serif); font-size: var(--t-h1); font-weight: 600;
  color: var(--c-white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: var(--sp-4);
}
.section-heading em { font-style: italic; color: var(--c-gold-text); }
.section-sub { font-size: var(--t-body); color: var(--c-white-50); max-width: 520px; line-height: 1.75; }

/* ---- MONTHLY CHART ---- */
.chart-section { padding: var(--sp-10) 0; }
.chart-wrap {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--sp-6); box-shadow: var(--sh-card);
}
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-6); flex-wrap: wrap; gap: var(--sp-3); }
.chart-title { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-white-25); }
.bar-chart { display: flex; align-items: flex-end; gap: var(--sp-3); height: 200px; margin-bottom: var(--sp-4); }
.bar-chart__bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); height: 100%; justify-content: flex-end; }
.bar-chart__bar {
  width: 100%; border-radius: var(--r-sm) var(--r-sm) 0 0;
  position: relative; min-height: 4px; transition: opacity 0.2s;
}
.bar-chart__bar:hover { opacity: 0.8; }
.bar-chart__bar.positive { background: linear-gradient(to top, var(--c-gold) 0%, var(--c-gold-light) 100%); }
.bar-chart__bar.negative { background: var(--c-red); }
.bar-chart__val { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-family: var(--f-mono); font-size: 10px; white-space: nowrap; }
.bar-chart__val.positive { color: var(--c-gold-text); }
.bar-chart__val.negative { color: var(--c-red-text); }
.bar-chart__month { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-white-25); }
.chart-note { font-family: var(--f-mono); font-size: 10px; color: var(--c-white-25); letter-spacing: 0.08em; padding-top: var(--sp-4); border-top: 1px solid var(--c-border); display: flex; gap: var(--sp-5); flex-wrap: wrap; }

/* ---- MONTHLY TABLE ---- */
.perf-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-7); }
.perf-table th {
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-white-25); font-weight: 400;
  padding: var(--sp-3) var(--sp-5); text-align: left;
  border-bottom: 1px solid var(--c-border); background: var(--c-bg-card);
}
.perf-table th:not(:first-child) { text-align: right; }
.perf-table td {
  padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--c-border);
  font-size: var(--t-small); transition: background 0.15s;
}
.perf-table tr:hover td { background: var(--c-bg-3); }
.perf-table tr:last-child td { border-bottom: none; }
.perf-table td:not(:first-child) { text-align: right; font-family: var(--f-mono); }
.td-month { font-weight: 500; color: var(--c-white-80); }
.td-positive { color: var(--c-green-text); font-weight: 500; }
.td-negative { color: var(--c-red-text); }
.td-neutral { color: var(--c-white-25); font-style: italic; }
.table-wrap { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; }

/* ---- VERIFICATION SECTION ---- */
.verify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); margin-top: var(--sp-7); }
.verify-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: var(--sp-6); transition: border-color 0.22s, transform 0.22s var(--ease-out);
}
.verify-card:hover { border-color: var(--c-border-gold); transform: translateY(-2px); }
.verify-card__icon { font-size: 28px; margin-bottom: var(--sp-4); }
.verify-card__title { font-family: var(--f-serif); font-size: var(--t-h3); font-weight: 600; color: var(--c-white); margin-bottom: var(--sp-3); line-height: 1.3; }
.verify-card__body { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.75; }

/* ---- METHODOLOGY SECTION ---- */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-7); }
.method-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: var(--sp-6); transition: border-color 0.22s, transform 0.22s var(--ease-out);
}
.method-card:hover { border-color: var(--c-border-gold); transform: translateY(-2px); }
.method-card__num {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--c-gold-dim); border: 1px solid var(--c-border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: var(--t-small); font-weight: 500; color: var(--c-gold-text);
  margin-bottom: var(--sp-4);
}
.method-card__title { font-family: var(--f-serif); font-size: var(--t-h3); font-weight: 600; color: var(--c-white); margin-bottom: var(--sp-3); line-height: 1.3; }
.method-card__body { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.75; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--c-bg-card); border: 1px solid var(--c-border-gold);
  border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-7);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6); box-shadow: var(--sh-gold); flex-wrap: wrap;
}
.cta-banner__text h2 { font-family: var(--f-serif); font-size: var(--t-h1); font-weight: 600; color: var(--c-white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: var(--sp-3); }
.cta-banner__text h2 em { font-style: italic; color: var(--c-gold-text); }
.cta-banner__text p { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.7; max-width: 460px; }
.btn--primary {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 14px 28px; background: var(--c-gold); color: #111110;
  font-size: var(--t-small); font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--r-sm); transition: all 0.22s var(--ease-out); white-space: nowrap;
}
.btn--primary:hover { background: var(--c-gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.2); }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- FOOTER ---- */
.footer { padding: var(--sp-8) 0 var(--sp-6); border-top: 1px solid var(--c-border); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-5); padding-bottom: var(--sp-7); border-bottom: 1px solid var(--c-border); }
.footer__brand-name { font-family: var(--f-serif); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--sp-3); }
.footer__brand-name span { color: var(--c-gold-text); }
.footer__tagline { font-size: var(--t-small); color: var(--c-white-25); line-height: 1.7; max-width: 260px; }
.footer__col-title { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-white-25); margin-bottom: var(--sp-4); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a { font-size: var(--t-small); color: var(--c-white-50); transition: color 0.2s; }
.footer__links a:hover { color: var(--c-gold-text); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-5); flex-wrap: wrap; gap: var(--sp-4); }
.footer__copy { font-size: 12px; color: var(--c-white-25); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: 12px; color: var(--c-white-25); transition: color 0.2s; }
.footer__legal a:hover { color: var(--c-gold-text); }
.footer__disclaimer { font-size: 11px; color: var(--c-white-25); line-height: 1.6; padding-top: var(--sp-5); border-top: 1px solid var(--c-border); margin-top: var(--sp-4); opacity: 0.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .container { padding: 0 var(--sp-5); }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item:nth-child(2) { border-right: none; }
  .verify-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .nav__links { display: none; }
  .nav__cta {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.03em;
    line-height: 1.1;
    min-width: 84px;
    max-width: 96px;
    text-align: center;
  }
  .nav__hamburger { display: flex; }
  .cta-banner { flex-direction: column; }
}
@media (max-width: 600px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}


:root {
  --c-bg:          #111110;
  --c-bg-2:        #161614;
  --c-bg-3:        #1c1c1a;
  --c-bg-card:     #181816;
  --c-gold:        #C9A84C;
  --c-gold-light:  #E2C06A;
  --c-gold-dim:    rgba(201,168,76,0.12);
  --c-gold-border: rgba(201,168,76,0.22);
  --c-gold-text:   #D4AF62;
  --c-white:       #F5F4EF;
  --c-white-80:    rgba(245,244,239,0.8);
  --c-white-50:    rgba(245,244,239,0.5);
  --c-white-25:    rgba(245,244,239,0.25);
  --c-white-10:    rgba(245,244,239,0.08);
  --c-green-dim:   rgba(30,124,77,0.15);
  --c-green-text:  #3DB872;
  --c-red-dim:     rgba(184,48,48,0.12);
  --c-red-text:    #E06060;
  --c-border:      rgba(245,244,239,0.07);
  --c-border-gold: rgba(201,168,76,0.18);
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;
  --f-mono:  'DM Mono', 'Courier New', monospace;
  --t-d1:   clamp(40px, 6vw, 64px);
  --t-h1:   clamp(26px, 3.5vw, 36px);
  --t-h2:   clamp(20px, 2.5vw, 26px);
  --t-h3:   18px;
  --t-body:  15px;
  --t-small: 13px;
  --t-xs:    11px;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;
  --r-sm: 3px; --r-md: 6px; --r-lg: 12px;
  --sh-gold: 0 0 40px rgba(201,168,76,0.06);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--c-bg); color: var(--c-white); font-family: var(--f-sans); font-size: var(--t-body); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--f-sans); border: none; background: none; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 var(--sp-6); }
.container--narrow { max-width: 760px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: var(--sp-4) 0; transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(17,17,16,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--c-border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--f-serif); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--c-white); line-height: 1; }
.nav__logo span { color: var(--c-gold-text); }
.nav__links { display: flex; align-items: center; gap: var(--sp-7); list-style: none; }
.nav__links a { font-size: var(--t-small); font-weight: 400; color: var(--c-white-50); letter-spacing: 0.02em; transition: color 0.2s; }
.nav__links a:hover { color: var(--c-white); }
.nav__cta { display: inline-flex; align-items: center; gap: var(--sp-2); padding: 10px 20px; background: var(--c-gold); color: #111110; font-size: var(--t-small); font-weight: 600; letter-spacing: 0.04em; border-radius: var(--r-sm); transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out); }
.nav__cta:hover { background: var(--c-gold-light); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--c-white); }

/* PAGE HERO */
.page-hero { padding: 140px 0 var(--sp-10); position: relative; border-bottom: 1px solid var(--c-border); overflow: hidden; }
.page-hero__bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,244,239,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(245,244,239,0.02) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%); pointer-events: none; }

.section-label { display: inline-flex; align-items: center; gap: var(--sp-3); font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold-text); margin-bottom: var(--sp-5); }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--c-gold); opacity: 0.6; }
.page-hero__title { font-family: var(--f-serif); font-size: var(--t-d1); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--c-white); margin-bottom: var(--sp-5); }
.page-hero__title em { font-style: italic; color: var(--c-gold-text); }
.page-hero__meta { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.1em; color: var(--c-white-25); margin-top: var(--sp-5); }

/* WARNING BANNER */
.warning-banner {
  background: var(--c-red-dim); border: 1px solid rgba(184,48,48,0.3);
  border-radius: var(--r-md); padding: var(--sp-5) var(--sp-6); margin: var(--sp-8) 0;
  display: flex; gap: var(--sp-4); align-items: flex-start;
}
.warning-banner__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.warning-banner__text { font-size: var(--t-small); color: var(--c-white-80); line-height: 1.7; }
.warning-banner__text strong { color: var(--c-white); }

/* CONTENT LAYOUT */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-8); padding: var(--sp-10) 0; }
.legal-nav { position: sticky; top: 100px; align-self: start; }
.legal-nav__title { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-white-25); margin-bottom: var(--sp-4); }
.legal-nav__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.legal-nav__list a { font-size: var(--t-small); color: var(--c-white-50); transition: color 0.2s; display: block; padding: var(--sp-1) 0; }
.legal-nav__list a:hover { color: var(--c-gold-text); }

.legal-content { min-width: 0; }
.legal-section { margin-bottom: var(--sp-9); scroll-margin-top: 100px; }
.legal-section h2 { font-family: var(--f-serif); font-size: var(--t-h2); font-weight: 600; color: var(--c-white); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: var(--sp-5); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--c-border); }
.legal-section h3 { font-family: var(--f-serif); font-size: var(--t-h3); font-weight: 600; color: var(--c-white-80); margin-bottom: var(--sp-3); margin-top: var(--sp-6); }
.legal-section p { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.85; margin-bottom: var(--sp-4); }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: var(--sp-5); margin-bottom: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }
.legal-section ul li { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.75; }
.legal-section ul li::marker { color: var(--c-gold-text); }
.legal-section strong { color: var(--c-white-80); font-weight: 500; }
.legal-section a { color: var(--c-gold-text); border-bottom: 1px solid var(--c-border-gold); transition: border-color 0.2s; }
.legal-section a:hover { border-bottom-color: var(--c-gold-text); }

.highlight-box { background: var(--c-bg-card); border: 1px solid var(--c-border-gold); border-radius: var(--r-md); padding: var(--sp-5) var(--sp-6); margin: var(--sp-5) 0; }
.highlight-box p { color: var(--c-white-50); font-size: var(--t-small); line-height: 1.8; margin: 0; }
.highlight-box p strong { color: var(--c-gold-text); }

/* FOOTER */
.footer { padding: var(--sp-8) 0 var(--sp-6); border-top: 1px solid var(--c-border); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-5); padding-bottom: var(--sp-7); border-bottom: 1px solid var(--c-border); }
.footer__brand-name { font-family: var(--f-serif); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--sp-3); }
.footer__brand-name span { color: var(--c-gold-text); }
.footer__tagline { font-size: var(--t-small); color: var(--c-white-25); line-height: 1.7; max-width: 260px; }
.footer__col-title { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-white-25); margin-bottom: var(--sp-4); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a { font-size: var(--t-small); color: var(--c-white-50); transition: color 0.2s; }
.footer__links a:hover { color: var(--c-gold-text); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-5); flex-wrap: wrap; gap: var(--sp-4); }
.footer__copy { font-size: 12px; color: var(--c-white-25); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: 12px; color: var(--c-white-25); transition: color 0.2s; }
.footer__legal a:hover { color: var(--c-gold-text); }
.footer__disclaimer { font-size: 11px; color: var(--c-white-25); line-height: 1.6; padding-top: var(--sp-5); border-top: 1px solid var(--c-border); margin-top: var(--sp-4); opacity: 0.6; }

@media (max-width: 900px) {
  .container { padding: 0 var(--sp-5); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .nav__links { display: none; }
  .nav__cta {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.03em;
    line-height: 1.1;
    min-width: 84px;
    max-width: 96px;
    text-align: center;
  }
  .nav__hamburger { display: flex; }
}
@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 250;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(17, 17, 16, 0.92);
  color: var(--c-white);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), border-color 0.22s var(--ease-out), background 0.22s var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--c-gold-border);
  background: rgba(24, 24, 22, 0.98);
  transform: translateY(-2px);
}

.back-to-top__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.14);
  color: var(--c-gold-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.back-to-top__text {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white-80);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--c-gold-light);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }
}


:root {
  --c-bg:          #111110;
  --c-bg-2:        #161614;
  --c-bg-3:        #1c1c1a;
  --c-bg-card:     #181816;
  --c-gold:        #C9A84C;
  --c-gold-light:  #E2C06A;
  --c-gold-dim:    rgba(201,168,76,0.12);
  --c-gold-border: rgba(201,168,76,0.22);
  --c-gold-text:   #D4AF62;
  --c-white:       #F5F4EF;
  --c-white-80:    rgba(245,244,239,0.8);
  --c-white-50:    rgba(245,244,239,0.5);
  --c-white-25:    rgba(245,244,239,0.25);
  --c-white-10:    rgba(245,244,239,0.08);
  --c-green-dim:   rgba(30,124,77,0.15);
  --c-green-text:  #3DB872;
  --c-border:      rgba(245,244,239,0.07);
  --c-border-gold: rgba(201,168,76,0.18);
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;
  --f-mono:  'DM Mono', 'Courier New', monospace;
  --t-d1:   clamp(40px, 6vw, 64px);
  --t-h1:   clamp(26px, 3.5vw, 36px);
  --t-h2:   clamp(20px, 2.5vw, 26px);
  --t-h3:   18px;
  --t-body:  15px;
  --t-small: 13px;
  --t-xs:    11px;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;
  --r-sm: 3px; --r-md: 6px; --r-lg: 12px;
  --sh-gold: 0 0 40px rgba(201,168,76,0.06);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--c-bg); color: var(--c-white); font-family: var(--f-sans); font-size: var(--t-body); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--f-sans); border: none; background: none; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 var(--sp-6); }
.container--narrow { max-width: 760px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: var(--sp-4) 0; transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(17,17,16,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--c-border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--f-serif); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--c-white); line-height: 1; }
.nav__logo span { color: var(--c-gold-text); }
.nav__links { display: flex; align-items: center; gap: var(--sp-7); list-style: none; }
.nav__links a { font-size: var(--t-small); font-weight: 400; color: var(--c-white-50); letter-spacing: 0.02em; transition: color 0.2s; }
.nav__links a:hover { color: var(--c-white); }
.nav__cta { display: inline-flex; align-items: center; gap: var(--sp-2); padding: 10px 20px; background: var(--c-gold); color: #111110; font-size: var(--t-small); font-weight: 600; letter-spacing: 0.04em; border-radius: var(--r-sm); transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out); }
.nav__cta:hover { background: var(--c-gold-light); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--c-white); }

/* PAGE HERO */
.page-hero { padding: 140px 0 var(--sp-10); position: relative; border-bottom: 1px solid var(--c-border); overflow: hidden; }
.page-hero__bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,244,239,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(245,244,239,0.02) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%); pointer-events: none; }
.section-label { display: inline-flex; align-items: center; gap: var(--sp-3); font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold-text); margin-bottom: var(--sp-5); }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--c-gold); opacity: 0.6; }
.page-hero__title { font-family: var(--f-serif); font-size: var(--t-d1); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--c-white); margin-bottom: var(--sp-5); }
.page-hero__title em { font-style: italic; color: var(--c-gold-text); }
.page-hero__meta { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.1em; color: var(--c-white-25); margin-top: var(--sp-5); }

/* SUMMARY CARDS */
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin: var(--sp-8) 0; }
.summary-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: var(--sp-5); }
.summary-card__icon { font-size: 22px; margin-bottom: var(--sp-3); }
.summary-card__title { font-family: var(--f-serif); font-size: var(--t-h3); font-weight: 600; color: var(--c-white); margin-bottom: var(--sp-2); line-height: 1.3; }
.summary-card__body { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.7; }

/* LEGAL LAYOUT */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-8); padding: var(--sp-10) 0; }
.legal-nav { position: sticky; top: 100px; align-self: start; }
.legal-nav__title { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-white-25); margin-bottom: var(--sp-4); }
.legal-nav__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.legal-nav__list a { font-size: var(--t-small); color: var(--c-white-50); transition: color 0.2s; display: block; padding: var(--sp-1) 0; }
.legal-nav__list a:hover { color: var(--c-gold-text); }

.legal-content { min-width: 0; }
.legal-section { margin-bottom: var(--sp-9); scroll-margin-top: 100px; }
.legal-section h2 { font-family: var(--f-serif); font-size: var(--t-h2); font-weight: 600; color: var(--c-white); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: var(--sp-5); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--c-border); }
.legal-section h3 { font-family: var(--f-serif); font-size: var(--t-h3); font-weight: 600; color: var(--c-white-80); margin-bottom: var(--sp-3); margin-top: var(--sp-6); }
.legal-section p { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.85; margin-bottom: var(--sp-4); }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: var(--sp-5); margin-bottom: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }
.legal-section ul li { font-size: var(--t-small); color: var(--c-white-50); line-height: 1.75; }
.legal-section ul li::marker { color: var(--c-gold-text); }
.legal-section strong { color: var(--c-white-80); font-weight: 500; }
.legal-section a { color: var(--c-gold-text); border-bottom: 1px solid var(--c-border-gold); transition: border-color 0.2s; }
.legal-section a:hover { border-bottom-color: var(--c-gold-text); }

.data-table { width: 100%; border-collapse: collapse; margin: var(--sp-5) 0; }
.data-table th { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-white-25); font-weight: 400; padding: var(--sp-3) var(--sp-4); text-align: left; border-bottom: 1px solid var(--c-border); background: var(--c-bg-card); }
.data-table td { padding: var(--sp-4); border-bottom: 1px solid var(--c-border); font-size: var(--t-small); color: var(--c-white-50); vertical-align: top; line-height: 1.7; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { color: var(--c-white-80); font-weight: 500; white-space: nowrap; padding-right: var(--sp-6); }
.data-table-wrap { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }

.highlight-box { background: var(--c-bg-card); border: 1px solid var(--c-border-gold); border-radius: var(--r-md); padding: var(--sp-5) var(--sp-6); margin: var(--sp-5) 0; }
.highlight-box p { color: var(--c-white-50); font-size: var(--t-small); line-height: 1.8; margin: 0; }
.highlight-box p strong { color: var(--c-gold-text); }

/* FOOTER */
.footer { padding: var(--sp-8) 0 var(--sp-6); border-top: 1px solid var(--c-border); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-5); padding-bottom: var(--sp-7); border-bottom: 1px solid var(--c-border); }
.footer__brand-name { font-family: var(--f-serif); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--sp-3); }
.footer__brand-name span { color: var(--c-gold-text); }
.footer__tagline { font-size: var(--t-small); color: var(--c-white-25); line-height: 1.7; max-width: 260px; }
.footer__col-title { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-white-25); margin-bottom: var(--sp-4); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a { font-size: var(--t-small); color: var(--c-white-50); transition: color 0.2s; }
.footer__links a:hover { color: var(--c-gold-text); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-5); flex-wrap: wrap; gap: var(--sp-4); }
.footer__copy { font-size: 12px; color: var(--c-white-25); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: 12px; color: var(--c-white-25); transition: color 0.2s; }
.footer__legal a:hover { color: var(--c-gold-text); }
.footer__disclaimer { font-size: 11px; color: var(--c-white-25); line-height: 1.6; padding-top: var(--sp-5); border-top: 1px solid var(--c-border); margin-top: var(--sp-4); opacity: 0.6; }

@media (max-width: 900px) {
  .container { padding: 0 var(--sp-5); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { display: none; }
  .summary-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .nav__links { display: none; }
  .nav__cta {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.03em;
    line-height: 1.1;
    min-width: 84px;
    max-width: 96px;
    text-align: center;
  }
  .nav__hamburger { display: flex; }
  .data-table td:first-child { white-space: normal; }
}
@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LEAD MODAL
   ============================================================ */
.lead-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}

.lead-modal.open {
  display: flex;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFadeIn 0.25s var(--ease-out) forwards;
}

.lead-modal__box {
  position: relative;
  z-index: 1;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), var(--sh-gold);
  animation: modalSlideUp 0.3s var(--ease-out) forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lead-modal__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-white-25);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  background: none;
}

.lead-modal__close:hover {
  border-color: var(--c-border-gold);
  color: var(--c-white);
}

/* Reuse form-card styles inside modal */
.lead-modal .modal-heading {
  font-family: var(--f-serif);
  font-size: var(--t-h1);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.lead-modal .modal-heading em {
  font-style: italic;
  color: var(--c-gold-text);
}

.lead-modal .modal-sub {
  font-size: var(--t-small);
  color: var(--c-white-50);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.lead-modal .form-field {
  margin-bottom: var(--sp-4);
}

.lead-modal .form-field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white-25);
  margin-bottom: var(--sp-2);
}

.lead-modal .form-field input,
.lead-modal .form-field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-white);
  font-size: var(--t-small);
  font-family: var(--f-sans);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.lead-modal .form-field input::placeholder { color: var(--c-white-25); }
.lead-modal .form-field input:focus,
.lead-modal .form-field select:focus { border-color: rgba(201,168,76,0.4); }
.lead-modal .form-field select { cursor: pointer; }
.lead-modal .form-field select option { background: var(--c-bg-3); }

.lead-modal .form-submit {
  width: 100%;
  padding: 16px;
  background: var(--c-gold);
  color: #111110;
  font-size: var(--t-body);
  font-family: var(--f-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  margin-top: var(--sp-5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.lead-modal .form-submit:hover { background: var(--c-gold-light); transform: translateY(-2px); }
.lead-modal .form-submit:active { transform: translateY(0); }
.lead-modal .form-submit.loading { pointer-events: none; opacity: 0.7; }
.lead-modal .form-submit .btn-text { transition: opacity 0.2s; }
.lead-modal .form-submit.loading .btn-text { opacity: 0; }

.lead-modal .form-submit .btn-spinner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border: 2px solid rgba(17,17,16,0.3);
  border-top-color: #111110;
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.7s linear infinite;
  transition: opacity 0.2s;
}

.lead-modal .form-submit.loading .btn-spinner { opacity: 1; }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.lead-modal .form-privacy {
  text-align: center;
  margin-top: var(--sp-4);
  font-size: var(--t-xs);
  color: var(--c-white-25);
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
}

/* Success state */
.lead-modal .modal-success {
  display: none;
  text-align: center;
  padding: var(--sp-7) 0;
}

.lead-modal .modal-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-green-dim);
  border: 1px solid rgba(30,124,77,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto var(--sp-5);
}

.lead-modal .modal-success__title {
  font-family: var(--f-serif);
  font-size: var(--t-h2);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.lead-modal .modal-success__sub {
  font-size: var(--t-small);
  color: var(--c-white-50);
}

@media (max-width: 600px) {
  .lead-modal__box { padding: var(--sp-6); }
}
