:root {
  --ink: #10231d;
  --muted: #587067;
  --forest-950: #04130f;
  --forest-900: #071f18;
  --forest-800: #0b3126;
  --forest-700: #12513d;
  --forest-600: #167052;
  --gold-500: #d9aa4d;
  --gold-400: #f0cb73;
  --cream: #f7f4ea;
  --paper: #fffdf7;
  --line: rgba(16, 35, 29, .13);
  --shadow: 0 24px 80px rgba(3, 25, 18, .16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; padding: 10px 14px; border-radius: 8px; background: #fff; color: #111; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { background: rgba(4, 19, 15, .9); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; color: var(--gold-400); display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 700 25px/1 Georgia, "Times New Roman", serif; letter-spacing: .01em; }
.brand-copy small { margin-top: 3px; color: var(--gold-400); font-size: 9px; letter-spacing: .28em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a { color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.primary-nav > a:hover, .primary-nav > a:focus-visible { color: #fff; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.06); }
.nav-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; margin: 4px auto; background: #fff; transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 12px 32px rgba(217, 170, 77, .2);
  color: #17251f;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(217, 170, 77, .3); filter: brightness(1.04); }
.button-small { min-height: 42px; padding-inline: 18px; color: #17251f !important; }
.button-full { width: 100%; }
.text-link { color: #fff; font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 900px;
  padding: 170px 0 62px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,19,15,.98) 0%, rgba(4,25,19,.92) 42%, rgba(4,19,15,.7) 100%),
    radial-gradient(circle at 76% 38%, rgba(18,81,61,.85), transparent 42%),
    #04130f;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, rgba(4,19,15,.6));
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(12px); z-index: -1; }
.hero-orb-one { width: 460px; height: 460px; right: -180px; top: 90px; background: rgba(217,170,77,.08); }
.hero-orb-two { width: 380px; height: 380px; left: 42%; bottom: -240px; background: rgba(27,130,92,.18); }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 66px; }
.hero-copy { max-width: 610px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--gold-400); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--forest-600); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(54px, 6.6vw, 94px); line-height: .97; }
h1 em { color: var(--gold-400); font-style: italic; }
h2 { margin-bottom: 18px; font-size: clamp(38px, 4.8vw, 64px); line-height: 1.06; }
h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.3; }
.hero-lead { max-width: 600px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: 19px; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 22px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }
.hero-note span { color: var(--gold-400); }
.hero-visual { position: relative; min-height: 535px; display: grid; place-items: center; }
.visual-frame { position: relative; width: min(680px, 100%); border: 1px solid rgba(255,255,255,.12); border-radius: 34px; background: rgba(255,255,255,.035); box-shadow: 0 40px 120px rgba(0,0,0,.35); transform: rotate(-1.5deg); overflow: hidden; }
.visual-frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 80px rgba(4,19,15,.55); pointer-events: none; }
.visual-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transform: scale(1.03); }
.visual-glow { position: absolute; inset: 18% 12%; background: rgba(217,170,77,.22); filter: blur(70px); }
.floating-card { position: absolute; display: flex; gap: 12px; align-items: center; min-width: 220px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(6,31,24,.87); box-shadow: 0 18px 60px rgba(0,0,0,.3); backdrop-filter: blur(15px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { color: rgba(255,255,255,.55); font-size: 11px; }
.floating-card-top { top: 26px; right: -20px; }
.floating-card-bottom { bottom: 28px; left: -30px; }
.mini-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: rgba(217,170,77,.14); color: var(--gold-400); font-weight: 900; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.trust-strip div { padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: #fff; font-size: 14px; }
.trust-strip span { color: rgba(255,255,255,.48); font-size: 12px; }

.section { padding: 120px 0; }
.section-light { background: var(--paper); }
.section-heading { max-width: 770px; margin-bottom: 58px; }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 300px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #f9f5e9); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(18,81,61,.28); box-shadow: 0 24px 60px rgba(12,51,38,.1); }
.feature-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -55px; bottom: -55px; border-radius: 50%; background: radial-gradient(circle, rgba(217,170,77,.12), transparent 70%); }
.feature-number { position: absolute; right: 26px; top: 22px; color: rgba(16,35,29,.13); font: 700 50px/1 Georgia, serif; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 18px; background: var(--forest-900); color: var(--gold-400); font-size: 28px; }
.feature-card p { max-width: 520px; margin-bottom: 0; color: var(--muted); }

.showcase-section { color: #fff; background: var(--forest-900); overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 68px; }
.showcase-copy p:not(.eyebrow) { color: rgba(255,255,255,.65); font-size: 18px; }
.check-list { list-style: none; margin: 32px 0 0; padding: 0; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.83); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-400); font-weight: 900; }
.showcase-image { position: relative; }
.showcase-image::before { content: ""; position: absolute; inset: 15% 8%; background: rgba(217,170,77,.18); filter: blur(65px); }
.showcase-image img { position: relative; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; box-shadow: 0 40px 100px rgba(0,0,0,.35); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; min-height: 285px; padding: 36px 32px; border-left: 1px solid var(--line); }
.step::before { content: ""; position: absolute; left: -1px; top: 0; width: 3px; height: 70px; background: var(--gold-500); }
.step-badge { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 50%; background: var(--forest-900); color: var(--gold-400); font: 700 20px/1 Georgia, serif; }
.step p { color: var(--muted); }

.safety-section { color: #fff; background: linear-gradient(135deg, #071f18, #0c382b); }
.safety-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: center; }
.safety-panel { position: relative; min-height: 510px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 34px; background: radial-gradient(circle at 50% 45%, rgba(217,170,77,.12), transparent 42%), rgba(255,255,255,.025); overflow: hidden; }
.safety-panel::before, .safety-panel::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.safety-panel::before { width: 330px; height: 330px; }
.safety-panel::after { width: 440px; height: 440px; }
.shield { width: 150px; color: var(--gold-400); z-index: 1; }
.safety-panel > span { position: absolute; bottom: 38px; color: rgba(255,255,255,.6); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.safety-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); font-size: 18px; }
.safety-list { margin-top: 34px; }
.safety-list div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }
.safety-list strong { color: var(--gold-400); font-size: 14px; }
.safety-list span { color: rgba(255,255,255,.65); font-size: 14px; }

.story-section { background: #efe9d9; }
.story-grid { display: grid; grid-template-columns: .45fr 1.55fr; align-items: center; gap: 60px; }
.story-number { color: rgba(7,31,24,.08); font: 700 clamp(210px, 28vw, 390px)/.7 Georgia, serif; text-align: center; user-select: none; }
.story-copy p:last-child { max-width: 760px; color: var(--muted); font-size: 18px; }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 125px; }
.faq-heading p:last-child { color: var(--muted); }
.faq-heading a { color: var(--forest-600); font-weight: 700; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 0; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 800; }
.faq-plus { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--forest-600); }
.faq-answer { padding: 0 52px 22px 0; color: var(--muted); }
.faq-answer p { margin: 0; }

.access-section { color: #fff; background: var(--forest-950); }
.access-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.access-copy { position: sticky; top: 125px; }
.access-copy > p:not(.eyebrow) { color: rgba(255,255,255,.63); font-size: 18px; }
.access-contact { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
.access-contact span, .access-contact a { display: block; }
.access-contact span { color: rgba(255,255,255,.45); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.access-contact a { margin-top: 5px; color: var(--gold-400); font-weight: 800; text-decoration: none; }
.access-form { padding: 38px; border: 1px solid rgba(255,255,255,.11); border-radius: 28px; background: rgba(255,255,255,.045); box-shadow: 0 30px 100px rgba(0,0,0,.25); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.access-form label { display: block; margin-bottom: 18px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 700; }
.access-form label > span { color: var(--gold-400); }
.access-form input, .access-form textarea, .access-form select { width: 100%; margin-top: 7px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.07); color: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.access-form input, .access-form select { height: 51px; padding: 0 14px; }
.access-form textarea { min-height: 120px; padding: 13px 14px; resize: vertical; }
.access-form select option { color: #111; }
.access-form input:focus, .access-form textarea:focus, .access-form select:focus { border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(217,170,77,.12); background: rgba(255,255,255,.09); }
.access-form input::placeholder, .access-form textarea::placeholder { color: rgba(255,255,255,.36); }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; }
.consent input { width: 17px; height: 17px; margin: 3px 0 0; flex: 0 0 auto; }
.consent span { color: rgba(255,255,255,.58) !important; }
.consent a { color: var(--gold-400); }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,.4); font-size: 11px; text-align: center; }
.form-status { display: none; margin-bottom: 18px; padding: 12px 14px; border-radius: 12px; font-size: 13px; }
.form-status.is-success { display: block; color: #d8ffe9; background: rgba(31,142,90,.22); border: 1px solid rgba(76,211,145,.28); }
.form-status.is-error { display: block; color: #ffe0dd; background: rgba(180,54,46,.2); border: 1px solid rgba(255,110,100,.25); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.site-footer { padding: 70px 0 26px; color: #fff; background: #020c09; }
.footer-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding-bottom: 55px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div:first-child > p { max-width: 360px; color: rgba(255,255,255,.48); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 7px; color: var(--gold-400); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.57); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.36); font-size: 12px; }
.footer-bottom p { margin: 0; }
.company-placeholder { color: #e0b963 !important; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid, .showcase-grid, .safety-grid, .access-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 45px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 440px; }
  .showcase-copy { max-width: 760px; }
  .showcase-image { max-width: 840px; }
  .safety-panel { min-height: 400px; }
  .safety-copy { max-width: 780px; }
  .access-copy { position: static; max-width: 740px; }
  .faq-grid { gap: 48px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: 74px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(4,19,15,.98); box-shadow: 0 24px 70px rgba(0,0,0,.34); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 12px 14px; }
  .primary-nav .button { margin-top: 8px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .faq-grid, .story-grid, .footer-grid { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .story-number { display: none; }
  .footer-grid { gap: 45px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 88px 0; }
  .hero { padding-top: 130px; }
  h1 { font-size: clamp(48px, 16vw, 68px); }
  h2 { font-size: clamp(36px, 11vw, 50px); }
  .hero-lead, .section-heading > p:last-child, .showcase-copy p:not(.eyebrow), .safety-copy > p:not(.eyebrow), .story-copy p:last-child, .access-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 310px; }
  .visual-frame { border-radius: 22px; }
  .floating-card { display: none; }
  .trust-strip { margin-top: 45px; }
  .trust-strip div { padding: 19px 16px; }
  .feature-card { min-height: 0; padding: 28px; }
  .feature-icon { margin-bottom: 34px; }
  .safety-list div { grid-template-columns: 1fr; gap: 5px; }
  .safety-panel { min-height: 330px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .access-form { padding: 25px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

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