:root {
  --black: #08090a;
  --black-soft: #0d0f10;
  --graphite: #131619;
  --graphite-light: #1b1f22;
  --white: #f1f2f2;
  --muted: #a1a4a6;
  --gold: #c59639;
  --gold-light: #e3b95d;
  --gold-dark: #7d5b1e;
  --line: rgba(224, 220, 208, 0.13);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.splash-active { overflow: hidden; }

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050607;
  opacity: 1;
  visibility: visible;
  transition: opacity 560ms cubic-bezier(.65, 0, .35, 1), visibility 560ms ease;
}
.site-intro::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 45%, rgba(197, 150, 57, .09), transparent 34%);
  pointer-events: none;
}
.site-intro.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.site-intro__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  animation: introContentIn 700ms cubic-bezier(.2, .75, .2, 1) 100ms forwards;
}
.site-intro.is-leaving .site-intro__content { transform: translateY(-5px) scale(1.01); transition: transform 520ms ease; }
.site-intro__content img { display: block; width: min(62vw, 290px); height: auto; }
.site-intro__content a {
  margin-top: -61px;
  color: #c7c1b5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.site-intro__content a:hover { color: var(--gold-light); }
.site-intro__line {
  position: relative;
  width: 86px;
  height: 1px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}
.site-intro__line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  animation: introProgress 2700ms cubic-bezier(.2, .7, .2, 1) 190ms forwards;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.ambient { position: absolute; z-index: -1; pointer-events: none; }
.ambient--top {
  top: -240px;
  right: -220px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 128, 18, 0.17), rgba(8, 8, 7, 0) 68%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 10, 0.86);
  backdrop-filter: blur(18px);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo-frame { display: flex; width: 118px; height: 64px; align-items: center; justify-content: flex-start; }
.brand-logo-frame img { display: block; width: auto; max-width: 118px; max-height: 62px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a { position: relative; color: #bbb7ae; font-size: 14px; font-weight: 500; transition: color 180ms ease; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; }
.header-cta svg { width: 19px; transition: transform 180ms ease; }
.header-cta:hover svg { transform: translateX(4px); }

.hero { position: relative; min-height: 780px; padding: 145px 0 82px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.03fr 0.97fr; align-items: center; gap: clamp(54px, 7vw, 100px); }
.eyebrow { display: flex; align-items: center; gap: 13px; margin-bottom: 25px; color: #c7c1b5; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); box-shadow: 0 0 12px rgba(214, 166, 46, 0.6); }
.hero h1, .section h2, .contact-panel h2 { margin: 0; font-family: "Manrope", sans-serif; letter-spacing: -0.045em; }
.hero h1 { max-width: 720px; font-size: clamp(43px, 4.7vw, 68px); font-weight: 700; line-height: 1.04; text-transform: uppercase; }
.hero h1 em, .section h2 em, .contact-panel h2 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 590px; margin: 27px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 37px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 11px; padding: 0 23px; border: 1px solid transparent; font-size: 14px; font-weight: 700; letter-spacing: 0.015em; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.button svg { width: 20px; }
.button:hover { transform: translateY(-2px); }
.button--gold { background: linear-gradient(115deg, #ad7d27, var(--gold-light)); color: #0b0b09; box-shadow: 0 10px 32px rgba(194, 141, 27, 0.14); }
.button--gold:hover { box-shadow: 0 13px 42px rgba(214, 166, 46, 0.24); }
.button--ghost, .button--outline { border-color: rgba(244, 241, 234, 0.18); background: rgba(244, 241, 234, 0.025); color: var(--white); }
.button--ghost:hover, .button--outline:hover { border-color: rgba(214, 166, 46, 0.56); background: rgba(214, 166, 46, 0.06); }
.trust-line { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: #7f7c75; font-size: 13px; }
.trust-icon { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid rgba(214, 166, 46, 0.25); border-radius: 50%; color: var(--gold); }
.trust-icon svg { width: 14px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { position: absolute; inset: 4% 0 7%; z-index: -1; content: ""; border: 1px solid rgba(214, 166, 46, 0.08); background-image: linear-gradient(rgba(214,166,46,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(214,166,46,.045) 1px, transparent 1px); background-size: 42px 42px; transform: perspective(700px) rotateY(-6deg) rotateX(4deg); }
.visual-glow { position: absolute; inset: 9%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(214, 166, 46, 0.17), transparent 66%); filter: blur(18px); }
.eligible-panel { position: relative; width: min(100%, 455px); padding: 25px; border: 1px solid rgba(224, 185, 93, 0.25); background: linear-gradient(145deg, rgba(26,29,31,.96), rgba(10,11,12,.98)); box-shadow: 0 38px 90px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.045); transform: perspective(1000px) rotateY(-3deg); }
.eligible-panel::before, .eligible-panel::after { position: absolute; width: 18px; height: 18px; content: ""; border-color: var(--gold); opacity: .8; }
.eligible-panel::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.eligible-panel::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.eligible-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.panel-label { display: block; margin-bottom: 5px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.eligible-head h2 { margin: 0; font: 600 21px/1.3 "Manrope", sans-serif; }
.analysis-pill { display: inline-flex; align-items: center; gap: 7px; margin-top: 2px; padding: 6px 9px; border: 1px solid rgba(214,166,46,.2); color: #c9c4b8; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.analysis-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 9px var(--gold); }
.niche-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 22px 0; }
.niche-card { position: relative; display: flex; min-height: 140px; flex-direction: column; justify-content: flex-end; padding: 17px; overflow: hidden; border: 1px solid rgba(244,241,234,.08); background: rgba(255,255,255,.018); transition: border-color 200ms ease, background 200ms ease, transform 200ms ease; }
.niche-card::before { position: absolute; top: -35px; right: -35px; width: 90px; height: 90px; content: ""; border: 1px solid rgba(214,166,46,.08); transform: rotate(45deg); }
.niche-card:hover { border-color: rgba(214,166,46,.38); background: rgba(214,166,46,.05); transform: translateY(-3px); }
.niche-card--accent { background: linear-gradient(145deg, rgba(214,166,46,.14), rgba(255,255,255,.018)); }
.niche-card small { position: absolute; top: 13px; left: 15px; color: #65625c; font-size: 9px; letter-spacing: .12em; }
.niche-card strong { color: #eeeae1; font: 700 29px/1 "Manrope", sans-serif; letter-spacing: -.03em; }
.niche-card span { margin-top: 8px; color: #7f7c75; font-size: 11px; }
.eligible-foot { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid rgba(214,166,46,.12); background: rgba(214,166,46,.035); }
.eligible-foot svg { width: 24px; flex: 0 0 auto; color: var(--gold-light); }
.eligible-foot span { display: flex; flex-direction: column; }
.eligible-foot small { color: #77746c; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.eligible-foot strong { color: #d5d0c6; font-size: 11px; font-weight: 600; line-height: 1.45; }

.proof-strip { border-bottom: 1px solid var(--line); background: #0c0e0f; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 118px; padding: 28px 28px 25px; border-left: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { color: #e7e2d7; font: 600 15px/1.2 "Manrope", sans-serif; }
.proof-grid span { margin-top: 7px; color: #77746c; font-size: 12px; line-height: 1.4; }

.section { position: relative; padding: 130px 0; }
.section-index { display: block; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.section-heading { display: grid; grid-template-columns: .32fr 1fr; gap: 40px; align-items: start; margin-bottom: 65px; }
.section h2, .contact-panel h2 { font-size: clamp(36px, 4.3vw, 58px); font-weight: 600; line-height: 1.08; }
.section-heading p { max-width: 610px; margin: 25px 0 0; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { position: relative; min-height: 330px; padding: 35px 28px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); transition: background 220ms ease, transform 220ms ease; }
.feature-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: ""; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 220ms ease; }
.feature-card:hover { z-index: 1; background: rgba(214,166,46,.035); transform: translateY(-4px); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-number { position: absolute; top: 31px; right: 28px; color: #57554f; font-size: 11px; }
.feature-card > svg { width: 32px; margin-top: 55px; color: var(--gold-light); }
.feature-card h3 { margin: 25px 0 12px; font: 600 18px/1.3 "Manrope", sans-serif; }
.feature-card p { margin: 0; color: #85827a; font-size: 14px; line-height: 1.65; }
.feature-card--accent { background: linear-gradient(150deg, rgba(214,166,46,.10), rgba(255,255,255,.012)); }

.section--audience { border-block: 1px solid var(--line); background: #0c0e0f; }
.section--audience::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 15% 50%, rgba(214,166,46,.07), transparent 34%); }
.audience-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; align-items: start; }
.audience-copy { position: sticky; top: 130px; }
.audience-copy h2 { margin-top: 23px; }
.audience-copy p { max-width: 480px; margin: 24px 0 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--gold-light); font-size: 14px; font-weight: 700; }
.text-link svg { width: 20px; transition: transform 180ms ease; }
.text-link:hover svg { transform: translateX(5px); }
.audience-list { border-top: 1px solid var(--line); }
.audience-item { display: grid; grid-template-columns: 55px 1fr; gap: 12px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.audience-item > span { color: var(--gold); font: 600 12px/1.4 "Manrope", sans-serif; }
.audience-item h3 { margin: 0; font: 600 19px/1.4 "Manrope", sans-serif; }
.audience-item p { margin: 7px 0 0; color: #85827a; font-size: 14px; }

.process-heading { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.process-heading h2 { text-align: right; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin: 0; padding: 0; list-style: none; }
.process-step { min-height: 245px; padding-top: 20px; }
.process-step > span { color: var(--gold-light); font: 700 13px/1 "Manrope", sans-serif; }
.step-line { position: relative; height: 1px; margin: 25px 0 30px; background: var(--line); }
.step-line::before { position: absolute; top: -3px; left: 0; width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px rgba(214,166,46,.45); }
.process-step h3 { margin: 0; font: 600 18px/1.35 "Manrope", sans-serif; }
.process-step p { max-width: 230px; margin: 12px 0 0; color: #85827a; font-size: 14px; }

.contact-section { padding: 0 0 110px; }
.contact-panel { position: relative; overflow: hidden; padding: 85px clamp(28px, 7vw, 85px); border: 1px solid rgba(197,150,57,.25); background: linear-gradient(120deg, #131619 0%, #0d0f10 65%, #171711 100%); }
.contact-panel::before { position: absolute; inset: 0; content: ""; pointer-events: none; background-image: linear-gradient(rgba(214,166,46,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(214,166,46,.035) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg, transparent, black); }
.contact-orb { position: absolute; top: -180px; right: -90px; width: 520px; height: 520px; border: 1px solid rgba(214,166,46,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(214,166,46,.025), 0 0 0 140px rgba(214,166,46,.018); }
.contact-panel > *:not(.contact-orb) { position: relative; z-index: 1; }
.contact-panel h2 { max-width: 720px; margin-top: 22px; }
.contact-panel p { max-width: 590px; margin: 24px 0 0; color: var(--muted); font-size: 17px; }

.site-footer { padding: 45px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: auto 1fr 1.25fr; align-items: center; gap: 40px; }
.footer-grid > p { margin: 0; color: #77746c; font-size: 12px; }
.footer-grid .legal { text-align: right; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1) var(--delay, 0ms), transform 700ms cubic-bezier(.2,.7,.2,1) var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes introContentIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introProgress { to { transform: scaleX(1); } }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 620px); margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(2) { border-right: 1px solid var(--line); }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .audience-grid { gap: 65px; }
}

@media (max-width: 780px) {
  section[id] { scroll-margin-top: 80px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .header-inner { height: 70px; }
  .desktop-nav { display: none; }
  .header-cta { font-size: 12px; }
  .hero { min-height: auto; padding: 132px 0 75px; }
  .hero h1 { font-size: clamp(39px, 12vw, 59px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .trust-line { align-items: flex-start; }
  .hero-visual { min-height: 480px; }
  .eligible-panel { width: min(94%, 455px); padding: 20px; transform: none; }
  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 45px; }
  .section h2, .contact-panel h2 { font-size: clamp(34px, 10vw, 48px); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-copy { position: static; }
  .process-heading { display: block; }
  .process-heading h2 { margin-top: 25px; text-align: left; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { padding-bottom: 70px; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid .legal { text-align: left; }
}

@media (max-width: 520px) {
  .header-cta svg { display: none; }
  .header-cta { padding: 9px 0; }
  .eyebrow { font-size: 10px; }
  .hero h1 { letter-spacing: -.055em; }
  .hero-visual { min-height: 450px; margin-top: 5px; }
  .niche-card { min-height: 122px; padding: 14px; }
  .niche-card strong { font-size: 25px; }
  .proof-grid, .feature-grid, .process-grid { grid-template-columns: 1fr; }
  .proof-grid > div, .proof-grid > div:nth-child(2) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .feature-card { min-height: 285px; }
  .process-step { min-height: 185px; }
  .contact-panel { padding-block: 60px; }
  .contact-orb { right: -290px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .site-intro__content { opacity: 1; transform: none; }
}
