:root { --font-geist-sans: Arial, Helvetica, sans-serif; --font-geist-mono: Consolas, "Courier New", monospace; }

:root {
  --background: #050708;
  --panel: #0b0f11;
  --panel-2: #111619;
  --line: #293034;
  --line-soft: #1a2023;
  --foreground: #f4f5f2;
  --muted: #a5aaac;
  --yellow: #ffe100;
  --yellow-soft: #fff174;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 80px;
  padding: 0 clamp(24px, 3.5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 225, 0, .38);
  background: rgba(5, 7, 8, .93);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; width: max-content; flex-direction: column; line-height: .84; }
.brand-main { font-size: clamp(26px, 2.3vw, 39px); font-weight: 950; letter-spacing: -.065em; }
.brand-sub { margin-top: 8px; color: var(--yellow); font-size: 12px; font-weight: 850; letter-spacing: .42em; }
.desktop-nav { display: flex; gap: clamp(22px, 3.2vw, 48px); color: #c7cacb; font-size: 15px; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--yellow); }
.header-cta { justify-self: end; padding: 15px 24px; color: #070807; background: var(--yellow); font-weight: 850; }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(390px, .86fr) minmax(620px, 1.45fr);
  gap: clamp(32px, 4vw, 70px);
  min-height: 680px;
  padding: clamp(60px, 7vw, 104px) clamp(24px, 3.5vw, 60px) 50px;
  border-bottom: 1px solid rgba(255, 225, 0, .32);
  background:
    radial-gradient(circle at 31% 43%, rgba(255,225,0,.10), transparent 28%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 360px;
  left: -110px;
  top: 215px;
  border: 1px solid rgba(255,225,0,.16);
  border-radius: 50%;
  transform: rotate(-10deg);
  box-shadow: 80px -20px 0 -79px rgba(255,225,0,.18), 150px 35px 0 -149px rgba(255,225,0,.12);
}
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 650px; }
.eyebrow { margin: 0 0 22px; color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-size: 13px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(64px, 6vw, 104px);
  line-height: .91;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero-summary { max-width: 600px; margin: 28px 0 0; color: #d6d8d7; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.button { min-width: 176px; padding: 17px 24px; border: 1px solid var(--yellow); text-align: center; font-weight: 820; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #050706; background: var(--yellow); }
.button-primary:hover { background: var(--yellow-soft); }
.button-secondary { background: rgba(5,7,8,.58); }
.button-secondary:hover { color: #050706; background: var(--yellow); }
.price-line { margin: 23px 0 0; color: #d1d3d2; font-size: 18px; }
.price-line span { margin: 0 8px; color: var(--yellow); }
.trust-row { display: flex; gap: 0; margin-top: 42px; }
.trust-row > div { min-width: 31%; padding: 0 20px; display: grid; justify-items: center; gap: 10px; border-right: 1px solid #383e40; font-size: 13px; }
.trust-row > div:first-child { padding-left: 0; }
.trust-row > div:last-child { border-right: 0; }
.trust-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-weight: 850; }

.control-shell {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 520px;
  display: grid;
  grid-template-columns: 62px 1fr;
  border: 1px solid #3a4245;
  background: #080b0d;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 4px rgba(255,255,255,.025);
}
.mock-sidebar { display: flex; flex-direction: column; align-items: center; gap: 23px; padding: 17px 0; border-right: 1px solid var(--line); color: #7d8589; }
.mock-sidebar span { width: 36px; height: 32px; display: grid; place-items: center; border-left: 2px solid transparent; }
.mock-sidebar .active { color: var(--yellow); border-left-color: var(--yellow); background: rgba(255,225,0,.09); }
.sb-mark { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 5px; color: #050706; background: var(--yellow); font-weight: 950; transform: skew(-8deg); }
.mock-workspace { min-width: 0; padding: 20px; }
.mock-titlebar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.mock-titlebar small { color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-size: 8px; letter-spacing: .2em; }
.mock-titlebar h2 { margin: 3px 0 0; font-size: clamp(20px, 2vw, 29px); }
.status-pill { padding: 8px 15px; border: 1px solid var(--yellow); color: var(--yellow); background: rgba(255,225,0,.07); font-size: 10px; font-weight: 850; }
.mock-grid { display: grid; grid-template-columns: 1fr .9fr 1.15fr; gap: 10px; padding-top: 12px; }
.data-card { min-width: 0; padding: 13px; border: 1px solid var(--line); background: linear-gradient(145deg, #0d1214, #090c0e); }
.card-label { margin: 0 0 12px; color: #a9afb1; font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.data-card dl { margin: 0; }
.data-card dl div { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6px; margin: 8px 0; font-size: 10px; }
.data-card dt { color: #899195; }.data-card dd { margin: 0; }.yellow-text { color: var(--yellow); }
.people { display: flex; align-items: center; gap: 8px; margin: 9px 0; font-size: 10px; }
.people span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-size: 8px; }
.people b { font-weight: 550; color: #d0d3d4; }
.driver-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 10px; }
.driver-row b { width: 26px; padding: 4px; border: 1px solid var(--yellow); color: var(--yellow); text-align: center; }
.driver-row small { color: #7f878b; }
.evidence-card { grid-column: 1 / 3; }
.evidence-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.evidence-strip > div { min-height: 64px; display: grid; place-items: center; align-content: center; gap: 7px; border: 1px solid var(--line); background: radial-gradient(circle at center, #263033, #111719); }
.evidence-strip span { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #838a8e; border-radius: 50%; font-size: 8px; }
.evidence-strip small { color: #c2c5c5; font-size: 7px; }
.timeline-track { position: relative; display: flex; justify-content: space-between; margin: 20px 10px 4px; border-top: 1px solid var(--yellow); }
.timeline-track i { width: 5px; height: 5px; margin-top: -3px; border-radius: 50%; background: var(--yellow); }
.decision-card label { display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 8px; margin: 8px 0; color: #92999c; font-size: 9px; }
.decision-card select { min-width: 0; padding: 6px; border: 1px solid var(--line); color: #7f8789; background: #0a0e10; font-size: 8px; }
.decision-card button { width: 100%; margin-top: 12px; padding: 8px; border: 0; color: #050706; background: var(--yellow); font-size: 9px; font-weight: 850; }
.audit-card { grid-column: 1 / 4; padding-top: 10px; padding-bottom: 10px; }
.audit-card > div { display: grid; grid-template-columns: 80px 1fr; gap: 14px; padding: 4px 0; border-top: 1px solid var(--line-soft); color: #aeb3b5; font-size: 8px; }
.audit-card time { color: #747d81; }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1600px; margin: 0 auto; padding: 28px clamp(24px, 3.5vw, 60px) 42px; border-bottom: 1px solid var(--line-soft); }
.proof-strip article { min-height: 115px; display: flex; align-items: center; gap: 22px; padding: 24px clamp(20px, 3vw, 44px); border-right: 1px solid var(--line); }
.proof-strip article:last-child { border-right: 0; }
.proof-strip article > span { width: 54px; height: 54px; flex: 0 0 54px; display: grid; place-items: center; border: 1px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-weight: 800; }
.proof-strip h2 { margin: 0 0 8px; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.proof-strip p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.content-section, .workflow-section, .pricing-section, .faq-section {
  padding: clamp(76px, 9vw, 138px) clamp(24px, 7vw, 112px);
}
.section-heading { max-width: 780px; margin-bottom: 50px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2, .control-band h2, .policy-band h2, .support-section h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.section-heading > p:last-child, .policy-band > div > p:last-child, .support-section > div > p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.feature-section { border-bottom: 1px solid var(--line-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid article { min-height: 260px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.022), transparent); }
.feature-grid article > span { color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-size: 12px; letter-spacing: .14em; }
.feature-grid h3 { margin: 58px 0 16px; font-size: 22px; text-transform: uppercase; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.workflow-section { background: #080b0c; border-bottom: 1px solid rgba(255,225,0,.25); }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: workflow; }
.workflow-grid article { position: relative; min-height: 300px; padding: 30px; border: 1px solid var(--line); border-right: 0; }
.workflow-grid article:last-child { border-right: 1px solid var(--line); }
.workflow-grid article::after { content: ""; position: absolute; top: 49px; right: -12px; z-index: 2; width: 22px; height: 22px; border-top: 1px solid var(--yellow); border-right: 1px solid var(--yellow); transform: rotate(45deg); background: #080b0c; }
.workflow-grid article:last-child::after { display: none; }
.workflow-grid article > span { color: var(--yellow); font-family: var(--font-geist-mono), monospace; }
.workflow-grid article > div { margin-top: 90px; }
.workflow-grid h3 { margin: 0 0 16px; font-size: 28px; text-transform: uppercase; }
.workflow-grid p { margin: 0; color: var(--muted); line-height: 1.7; }

.control-band { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 140px); padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); background: var(--yellow); color: #080a09; }
.control-band .eyebrow { color: #080a09; }
.control-points { display: grid; align-content: center; }
.control-points p { margin: 0; padding: 22px 0; border-top: 1px solid rgba(0,0,0,.35); font-size: 16px; line-height: 1.6; }
.control-points p:last-child { border-bottom: 1px solid rgba(0,0,0,.35); }
.control-points span { display: block; margin-bottom: 7px; font-family: var(--font-geist-mono), monospace; font-size: 11px; font-weight: 850; letter-spacing: .18em; }

.pricing-section { border-bottom: 1px solid var(--line-soft); }
.pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; max-width: 1060px; margin: 0 auto; border: 1px solid var(--line); }
.price-card { padding: clamp(34px, 4vw, 56px); background: #0a0e10; }
.price-card + .price-card { border-left: 1px solid var(--line); }
.price-card.featured { box-shadow: inset 0 4px 0 var(--yellow); }
.price-kicker { color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.price-card h3 { margin: 30px 0 14px; font-size: clamp(42px, 4vw, 64px); }
.price-card h3 small { color: var(--muted); font-size: 16px; font-weight: 500; }
.price-card p { min-height: 54px; margin: 0 0 30px; color: var(--muted); line-height: 1.65; }
.price-card .button { width: 100%; }
.included-list { grid-column: 1 / 3; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; padding: 20px 36px; border-top: 1px solid var(--line); list-style: none; }
.included-list li { position: relative; padding: 12px 16px 12px 26px; color: #c4c8c8; }
.included-list li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow); font-weight: 900; }

.policy-band, .support-section { display: flex; justify-content: space-between; align-items: end; gap: 50px; padding: clamp(72px, 8vw, 120px) clamp(24px, 7vw, 112px); border-bottom: 1px solid rgba(255,225,0,.3); background: radial-gradient(circle at 72% 50%, rgba(255,225,0,.08), transparent 24%), #080b0c; }
.policy-band > div, .support-section > div { max-width: 820px; }
.policy-band .button, .support-section .button { flex: 0 0 auto; }

.faq-list { max-width: 980px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 50px 26px 0; cursor: pointer; font-size: 20px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 12px; color: var(--yellow); font-size: 26px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 800px; margin: 0; padding: 0 0 28px; color: var(--muted); line-height: 1.75; }
.support-section { align-items: center; border-bottom: 0; }
.support-actions { display: flex; gap: 14px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding: 54px clamp(24px, 5vw, 76px); border-top: 1px solid var(--line); background: #030505; }
.footer-brand { margin-bottom: 20px; }
.footer-brand .brand-main { font-size: 28px; }.footer-brand .brand-sub { font-size: 9px; }
.site-footer p { margin: 8px 0; color: #7f8789; font-size: 13px; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, minmax(110px, 1fr)); gap: 14px 30px; align-content: start; color: #b8bdbd; font-size: 13px; }
.site-footer nav a:hover { color: var(--yellow); }
.footer-legal { text-align: right; }

.policy-hero { padding: clamp(76px, 9vw, 132px) clamp(24px, 13vw, 210px) 60px; border-bottom: 1px solid rgba(255,225,0,.28); background: radial-gradient(circle at 70% 30%, rgba(255,225,0,.08), transparent 30%); }
.policy-hero h1 { max-width: 980px; margin: 0; font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif; font-size: clamp(54px, 7vw, 104px); line-height: .93; letter-spacing: -.05em; text-transform: uppercase; }
.policy-hero > p:not(.eyebrow) { max-width: 760px; margin: 26px 0 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.policy-meta { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 35px; color: #c4c7c6; font-family: var(--font-geist-mono), monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.policy-notice { max-width: 1110px; margin: 34px auto 0; padding: 20px 24px; display: grid; gap: 6px; border: 1px solid rgba(255,225,0,.45); background: rgba(255,225,0,.06); }
.policy-notice strong { color: var(--yellow); text-transform: uppercase; letter-spacing: .08em; }.policy-notice span { color: #c5c8c7; line-height: 1.6; }
.policy-document { max-width: 1110px; margin: 0 auto; padding: 40px 24px 120px; }
.policy-document > section { display: grid; grid-template-columns: 80px 1fr; gap: 22px; padding: 48px 0; border-top: 1px solid var(--line); }
.policy-document > section:last-child { border-bottom: 1px solid var(--line); }
.policy-index { color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-size: 13px; }
.policy-document h2 { margin: 0 0 22px; font-size: 28px; text-transform: uppercase; letter-spacing: -.02em; }
.policy-document p, .policy-document li { color: #b6bbbb; line-height: 1.8; }
.policy-document p { margin: 0 0 16px; }.policy-document ul { margin: 0; padding-left: 22px; }.policy-document li + li { margin-top: 9px; }

.policy-centre { padding: clamp(76px, 9vw, 132px) clamp(24px, 7vw, 112px); }
.policy-centre .section-heading h1, .support-page .section-heading h1 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(54px, 7vw, 100px);
  line-height: .94;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.policy-centre-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.policy-centre-grid a { min-height: 250px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent); transition: background .2s ease, transform .2s ease; }
.policy-centre-grid a:hover { background: rgba(255,225,0,.06); transform: translateY(-3px); }
.policy-centre-grid span { color: var(--yellow); font-family: var(--font-geist-mono), monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.policy-centre-grid h2 { margin: auto 0 12px; font-size: 23px; text-transform: uppercase; }.policy-centre-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.support-page { padding: clamp(76px, 9vw, 132px) clamp(24px, 7vw, 112px); }
.setup-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.setup-grid article { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.setup-grid article > span { color: var(--yellow); font-family: var(--font-geist-mono), monospace; }.setup-grid h2 { margin: 70px 0 14px; font-size: 22px; text-transform: uppercase; }.setup-grid p { color: var(--muted); line-height: 1.65; }
.support-box { max-width: 900px; margin: 70px auto 0; padding: 38px; border: 1px solid var(--line); background: #0a0e10; }.support-box h2 { margin-top: 0; text-transform: uppercase; }.support-box p { color: var(--muted); line-height: 1.75; }.support-box strong { color: var(--yellow); }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .control-shell { width: 100%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid article:nth-child(2) { border-right: 1px solid var(--line); }
  .workflow-grid article:nth-child(2)::after { display: none; }
  .workflow-grid article:nth-child(-n+2) { border-bottom: 0; }
  .control-band { grid-template-columns: 1fr; }
  .setup-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  .brand-main { font-size: 25px; }
  .brand-sub { font-size: 8px; }
  .header-cta { padding: 12px 14px; font-size: 12px; }
  .hero { padding-top: 52px; min-height: auto; }
  .hero h1 { font-size: clamp(52px, 17vw, 76px); }
  .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); }
  .trust-row > div { min-width: 0; padding: 0 8px; text-align: center; font-size: 10px; }
  .control-shell { grid-template-columns: 44px 1fr; min-height: 0; }
  .mock-sidebar { gap: 15px; }
  .mock-workspace { padding: 11px; }
  .mock-grid { grid-template-columns: 1fr 1fr; }
  .drivers-card { grid-column: 1 / 3; }
  .evidence-card, .audit-card { grid-column: 1 / 3; }
  .decision-card { grid-column: 1 / 3; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-grid, .workflow-grid, .policy-centre-grid, .setup-grid { grid-template-columns: 1fr; }
  .workflow-grid article { border-right: 1px solid var(--line); border-bottom: 0; }
  .workflow-grid article:last-child { border-bottom: 1px solid var(--line); }
  .workflow-grid article::after { display: none; }
  .control-band, .policy-band, .support-section { display: grid; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .price-card + .price-card { border-left: 0; border-top: 1px solid var(--line); }
  .included-list { grid-column: 1; grid-template-columns: 1fr; }
  .support-actions { flex-wrap: wrap; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
  .policy-document > section { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .price-line { font-size: 15px; }
  .control-shell { overflow-x: auto; }
  .mock-workspace { min-width: 520px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
