:root {
  --ink: #10131b;
  --ink-2: #171b25;
  --paper: #f5f1e9;
  --paper-2: #ebe5d9;
  --white: #fffdf8;
  --muted: #6b6e76;
  --line: rgba(16, 19, 27, .14);
  --lime: #b9ff55;
  --lime-2: #8fe23e;
  --coral: #ff6d4a;
  --blue: #8aa4ff;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(15, 18, 27, .12);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  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;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--lime); color: var(--ink); }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 10px 16px; background: var(--lime); color: var(--ink); border-radius: 999px;
}
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.kicker { color: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; }
h1 { font-size: clamp(3.1rem, 7vw, 7.3rem); }
h2 { font-size: clamp(2.2rem, 4.3vw, 4.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
.lede { max-width: 760px; color: #d9dbe2; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.section-lede { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.display-mark { color: var(--lime); }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header.light { position: relative; color: var(--ink); background: var(--paper); border-color: var(--line); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 860; letter-spacing: -.03em; }
.brand-mark {
  width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid currentColor;
  border-radius: 10px; transform: rotate(8deg); position: relative;
}
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; border: 2px solid var(--lime); border-radius: 50%; }
.brand-mark::before { width: 16px; height: 16px; }
.brand-mark::after { width: 4px; height: 4px; background: var(--lime); }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: .9rem; font-weight: 700; }
.nav-links a:not(.button) { opacity: .78; }
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; }
.nav-toggle { display: none; color: inherit; background: transparent; border: 0; width: 44px; height: 44px; }
.nav-toggle span { display: block; height: 2px; width: 25px; margin: 6px auto; background: currentColor; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  background: var(--lime); color: var(--ink); font-weight: 850; line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button::after { content: "↗"; font-size: 1.05em; }
.button:hover { transform: translateY(-2px); background: #d1ff8f; }
.button.secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }
.button.secondary:hover { background: #fff; color: var(--ink); }
.button.dark { background: var(--ink); color: #fff; }
.button.small { min-height: 42px; padding-inline: 17px; font-size: .86rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 850; border-bottom: 1px solid currentColor; }

.hero {
  min-height: 860px; display: grid; align-items: end; position: relative; overflow: hidden;
  color: #fff; background: #060b1b;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,11,27,.98) 0%, rgba(6,11,27,.86) 39%, rgba(6,11,27,.12) 72%); z-index: 1; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #060b1b 0%, transparent 28%); z-index: 1; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { position: relative; z-index: 2; padding: 180px 0 74px; }
.hero h1 { max-width: 950px; margin-bottom: 30px; }
.hero-copy { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-status {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.12); backdrop-filter: blur(14px);
}
.status-cell { min-height: 102px; padding: 22px; background: rgba(10,14,29,.72); }
.status-cell small { display: block; color: #aeb2bd; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: .67rem; }
.status-cell strong { display: block; margin-top: 7px; font-size: 1.05rem; }
.pulse { display: inline-block; width: 8px; height: 8px; margin-right: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(185,255,85,.12); }

.rail { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--lime); }
.rail-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.rail-item { padding: 16px 30px; font-size: .77rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
.rail-item::after { content: "●"; margin-left: 60px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section.compact { padding: 82px 0; }
.section.dark { color: #fff; background: var(--ink); }
.section.coral { background: var(--coral); }
.section-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.sticky-heading { position: sticky; top: 40px; }
.metric-board { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.metric { min-height: 210px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-index { font-size: .7rem; font-weight: 900; color: var(--coral); letter-spacing: .12em; }
.metric h3 { margin: 48px 0 12px; }
.metric p { color: var(--muted); margin-bottom: 0; }

.ops-panel { overflow: hidden; background: #202531; border-radius: 34px; box-shadow: var(--shadow); }
.ops-top { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ops-dots { display: flex; gap: 7px; }
.ops-dots i { width: 8px; height: 8px; border-radius: 50%; background: #505664; }
.ops-dots i:first-child { background: var(--lime); }
.ops-grid { display: grid; grid-template-columns: 1.1fr .9fr; }
.ops-flow { padding: 34px; border-right: 1px solid rgba(255,255,255,.1); }
.flow-step { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 15px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.flow-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 12px; font-weight: 900; }
.flow-step:nth-child(2) .flow-icon { background: var(--blue); }
.flow-step:nth-child(3) .flow-icon { background: var(--coral); }
.flow-step small { color: #a9aeba; }
.flow-status { color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ops-side { padding: 34px; background: #181c26; }
.ring { width: 150px; aspect-ratio: 1; display: grid; place-items: center; margin: 20px auto 38px; border-radius: 50%; background: conic-gradient(var(--lime) 0 82%, #323744 82%); position: relative; }
.ring::before { content: ""; position: absolute; width: 112px; aspect-ratio: 1; border-radius: 50%; background: #181c26; }
.ring strong { position: relative; font-size: 2rem; }
.mini-stat { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.mini-stat span { color: #a9aeba; }

.method-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 52px; }
.method { min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.method-symbol { font-size: 1.55rem; font-weight: 900; color: var(--coral); }
.method strong { font-size: .86rem; }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 54px; border: 1px solid rgba(255,255,255,.15); }
.process-step { min-height: 290px; padding: 28px; border-right: 1px solid rgba(255,255,255,.15); }
.process-step:last-child { border-right: 0; }
.process-step::before { counter-increment: step; content: "0" counter(step); display: block; color: var(--lime); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.process-step h3 { margin-top: 96px; }
.process-step p { color: #aeb2bd; }

.insights-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { display: flex; flex-direction: column; min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .card-media img { transform: scale(1.035); }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.card-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 22px; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.card-meta span:first-child { color: var(--coral); }
.card-body h3 { font-size: 1.55rem; }
.card-body p { color: var(--muted); }
.card-body .text-link { margin-top: auto; align-self: flex-start; }

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding: 65px; color: #fff; background: var(--ink); border-radius: 36px; overflow: hidden; position: relative; }
.cta-band::after { content: ""; position: absolute; right: -70px; top: -110px; width: 350px; aspect-ratio: 1; border: 70px solid var(--coral); border-radius: 50%; opacity: .22; }
.cta-band h2 { max-width: 820px; margin: 0; position: relative; z-index: 1; }
.cta-band .button { position: relative; z-index: 1; }

.page-hero { padding: 120px 0 92px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1020px; font-size: clamp(3.4rem, 7.5vw, 7.8rem); margin-bottom: 26px; }
.page-hero .section-lede { font-size: 1.2rem; }
.resource-hero { padding: 90px 0; background: var(--ink); color: #fff; }
.resource-hero .resource-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; }
.resource-hero h1 { max-width: 820px; font-size: clamp(3.5rem, 7vw, 7rem); }
.resource-hero p { color: #c2c5cc; font-size: 1.12rem; }
.search-box { display: flex; padding: 8px; background: #fff; border-radius: 999px; }
.search-box input { flex: 1; min-width: 0; padding: 0 18px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box button { border: 0; }
.featured { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 500px; background: var(--white); border: 1px solid var(--line); border-radius: 30px; overflow: hidden; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px; }
.featured-copy h2 { font-size: clamp(2.2rem, 3.7vw, 4rem); }
.featured-copy p { color: var(--muted); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.breadcrumb a:hover { color: var(--coral); }
.article-hero { padding: 70px 0 50px; }
.article-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.article-hero h1 { font-size: clamp(3rem, 5.7vw, 6.2rem); margin-bottom: 26px; }
.article-deck { color: var(--muted); font-size: 1.18rem; }
.article-byline { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.article-cover { aspect-ratio: 16/10; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 760px) 1fr; gap: 55px; align-items: start; }
.toc { position: sticky; top: 24px; padding-top: 12px; }
.toc strong { display: block; margin-bottom: 15px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.toc a { display: block; padding: 8px 0; color: var(--muted); font-size: .85rem; border-bottom: 1px solid var(--line); }
.toc a:hover { color: var(--coral); }
.article-body { min-width: 0; }
.article-body > p:first-child { font-size: 1.26rem; color: #3c4049; }
.article-body h2 { margin: 80px 0 24px; font-size: clamp(2rem, 3.6vw, 3.5rem); }
.article-body h3 { margin: 38px 0 14px; letter-spacing: -.025em; }
.article-body p, .article-body li { color: #42454d; }
.article-body a { color: #2f5d11; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.takeaways { display: grid; gap: 1px; margin: 40px 0; padding: 1px; background: var(--line); border-radius: 20px; overflow: hidden; }
.takeaway { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px; background: var(--white); }
.takeaway b { width: 34px; height: 34px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; }
.callout { margin: 35px 0; padding: 28px; background: #e7f9cb; border-left: 5px solid var(--lime-2); border-radius: 0 18px 18px 0; }
.callout.coral { background: #ffe2d9; border-color: var(--coral); }
.callout strong { display: block; margin-bottom: 7px; }
.table-wrap { margin: 35px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 650px; background: var(--white); }
th, td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: #fff; background: var(--ink); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
tr:last-child td { border-bottom: 0; }
.side-note { position: sticky; top: 24px; padding: 22px; background: var(--ink); color: #fff; border-radius: 18px; }
.side-note small { color: var(--lime); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.side-note p { margin: 14px 0 20px; color: #c3c7cf; font-size: .9rem; }
.faq-list { margin-top: 30px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 850; }
.faq-q::after { content: "+"; font-size: 1.5rem; line-height: 1; }
.faq-q[aria-expanded="true"]::after { content: "−"; }
.faq-a { display: none; padding: 0 0 24px; color: var(--muted); }
.faq-q[aria-expanded="true"] + .faq-a { display: block; }
.related { margin-top: 90px; padding-top: 55px; border-top: 1px solid var(--line); }
.related .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.email-list { border-top: 1px solid var(--line); }
.email-row { display: grid; grid-template-columns: 190px 1fr auto; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.email-row small { color: var(--coral); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.email-row p { margin: 4px 0 0; color: var(--muted); }
.email-row a:last-child { font-size: 1.2rem; font-weight: 850; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 800px); gap: 80px; }
.legal-nav { position: sticky; top: 30px; }
.legal-nav a { display: block; padding: 9px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin: 60px 0 20px; font-size: 2.2rem; }
.legal-copy h3 { margin-top: 34px; }
.legal-copy p, .legal-copy li { color: #494c54; }

.site-footer { color: #d8dbe2; background: #0b0e15; }
.footer-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; padding: 90px 0 60px; }
.footer-top h2 { color: #fff; max-width: 720px; }
.footer-email { display: inline-block; margin-top: 25px; color: var(--lime); font-size: clamp(1.3rem, 2.4vw, 2.2rem); font-weight: 850; border-bottom: 1px solid currentColor; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px; }
.footer-links strong { color: #fff; }
.footer-links a { display: block; margin-top: 10px; color: #9fa4af; }
.footer-links a:hover { color: var(--lime); }
.disclosure { padding: 28px 0; color: #8d929d; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.disclosure p { max-width: 1050px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 28px; color: #717680; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rail-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1050px) {
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step { border-bottom: 1px solid rgba(255,255,255,.15); }
  .article-layout { grid-template-columns: 210px minmax(0, 1fr); }
  .side-note { display: none; }
  .article-hero-grid { grid-template-columns: 1fr; }
  .article-cover { max-height: 560px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .nav-links { position: fixed; inset: 0; display: none; flex-direction: column; justify-content: center; background: var(--ink); color: #fff; font-size: 1.4rem; }
  .nav-open .nav-links { display: flex; }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(90deg, rgba(6,11,27,.98), rgba(6,11,27,.58)); }
  .hero-content { padding-top: 140px; }
  .hero-copy, .section-grid, .resource-hero .resource-grid, .featured, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 46px; }
  .hero-status { max-width: 620px; }
  .sticky-heading { position: static; }
  .article-grid { grid-template-columns: 1fr; }
  .related .article-grid { grid-template-columns: 1fr; }
  .featured-media { min-height: 340px; }
  .cta-band { grid-template-columns: 1fr; padding: 42px 30px; }
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; padding: 22px; background: var(--paper-2); border-radius: 16px; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }
  .legal-nav { position: static; }
  .email-row { grid-template-columns: 1fr; gap: 7px; }
}

@media (max-width: 560px) {
  h1 { font-size: 3.2rem; }
  .hero { min-height: 820px; }
  .hero-media { opacity: .55; object-position: 62% center; }
  .hero::before { background: linear-gradient(180deg, rgba(6,11,27,.82), rgba(6,11,27,.96)); }
  .hero-copy { gap: 32px; }
  .hero-status { grid-template-columns: 1fr 1fr; }
  .status-cell { min-height: 90px; padding: 17px; }
  .section { padding: 82px 0; }
  .metric-board { grid-template-columns: 1fr; }
  .metric { min-height: 180px; }
  .ops-grid { grid-template-columns: 1fr; }
  .ops-flow { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method { min-height: 112px; }
  .process { grid-template-columns: 1fr; }
  .process-step { min-height: 230px; border-right: 0; }
  .process-step h3 { margin-top: 60px; }
  .insights-head { display: block; }
  .insights-head .button { margin-top: 20px; }
  .page-hero, .resource-hero { padding: 72px 0; }
  .page-hero h1, .resource-hero h1, .article-hero h1 { font-size: 3.1rem; }
  .featured-copy { padding: 30px 24px; }
  .article-hero { padding-top: 45px; }
  .article-hero-grid { gap: 35px; }
  .takeaway { grid-template-columns: 34px 1fr; padding: 17px; }
  .footer-top { padding-top: 65px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}
