:root {
  --night: #05080b;
  --night-2: #080d11;
  --navy: #090f13;
  --panel: #0d171c;
  --panel-2: #111f25;
  --paper: #05080b;
  --paper-2: #0a1115;
  --surface: #0b1216;
  --surface-2: #0f191e;
  --white: #f4f8f7;
  --ink: #e9f0ef;
  --muted: #93a6aa;
  --muted-dark: #a0b4b8;
  --line: #1c2c32;
  --line-dark: #20353d;
  --signal: #32e6bc;
  --signal-dark: #087f6b;
  --blue: #8da7ff;
  --cobalt: #4f7cff;
  --coral: #ff747a;
  --amber: #ffcb6b;
  --danger: #ff9a9e;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--signal); color: var(--night); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 15px;
  background: var(--signal);
  color: var(--night);
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 12px max(4vw, 24px);
  color: var(--white);
  background: rgba(5, 8, 11, .96);
  border-bottom: 1px solid #183039;
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 850;
  letter-spacing: .11em;
  white-space: nowrap;
}
.brand b { color: var(--signal); font-weight: 850; }
.brand-mark {
  width: 34px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid var(--signal);
  border-radius: 70% 12%;
  transform: rotate(45deg);
  background: transparent;
}
.brand-mark::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--signal);
}
.brand-mark::after {
  content: none;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 30px);
  margin-left: auto;
}
.nav-toggle, .nav-burger { display: none; }
.site-header nav a {
  color: #c1d0d3;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { color: var(--white); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--signal);
  border-radius: 8px;
  background: var(--signal);
  color: var(--night) !important;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(50, 230, 188, .13);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(50, 230, 188, .24); }
.button:active { transform: translateY(0); }
.button:hover { background: #69f1d1; border-color: #69f1d1; }
.button.secondary {
  background: transparent;
  color: var(--white) !important;
  border-color: #42616a;
  box-shadow: none;
}
.button.secondary:hover { border-color: var(--signal); }
.button.dark { background: var(--surface); color: var(--white) !important; border-color: #34515a; }
.button.small { min-height: 40px; padding: 8px 13px; font-size: .79rem; }
.client-portal-link { white-space: nowrap; }
.text-link { color: var(--signal); font-weight: 800; text-underline-offset: 4px; }
.dark-shell .text-link, .hero .text-link { color: var(--signal); }

.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.dark-shell .eyebrow, .hero .eyebrow, .band .eyebrow { color: var(--signal); }
.kicker { color: var(--muted); font-weight: 700; }
.lede { max-width: 760px; color: var(--muted); font-size: clamp(1.06rem, 1.6vw, 1.24rem); }
.dark-shell .lede, .hero .lede { color: var(--muted-dark); }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 100px;
  border: 1px solid #245e53;
  background: #0d2925;
  color: #79e8cd;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tag.blue { border-color: #3c5799; background: #111a37; color: var(--blue); }
.tag.amber { border-color: #6a5226; background: #261e10; color: #f5cb7a; }
.tag.outline { background: transparent; border: 1px solid #3d5b64; color: #b9c9cc; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(35, 126, 136, .28), transparent 30%),
    linear-gradient(135deg, #05080b 0%, #071219 56%, #09232c 100%);
}
@keyframes cbRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cbBeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: .7; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1320px);
  margin: auto;
  padding: 105px 0 95px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(370px, .7fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}
.hero h1, .page-hero h1, .article-hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero h1 span {
  color: var(--signal);
  background: linear-gradient(104deg, #32e6bc 8%, #5fead2 48%, var(--cobalt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede { margin: 30px 0 0; }
.hero-grid > * { animation: cbRise .7s ease both; }
.hero-grid > *:nth-child(2) { animation-delay: .14s; }
.page-hero .wrap > * { animation: cbRise .6s ease both; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 35px; }
.assurance-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.assurance-row span {
  padding: 5px 10px;
  border: 1px solid #2b4851;
  border-radius: 100px;
  color: #9eb5b9;
  font-size: .75rem;
}

.signal-panel {
  position: relative;
  padding: 25px;
  border: 1px solid #2a505a;
  border-radius: 22px;
  background: rgba(7, 19, 25, .82);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .32);
  backdrop-filter: blur(8px);
}
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.panel-top p { margin: 0; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #aac0c4; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--signal); font-size: .7rem; text-transform: uppercase; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 15px var(--signal); animation: cbBeat 2.6s ease-in-out infinite; }
.signal-list { display: grid; gap: 10px; }
.signal-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid #213d46;
  border-radius: 10px;
  background: #0c2028;
}
.signal-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; color: var(--signal); background: #12333b; font-size: .72rem; font-weight: 900; }
.signal-item strong { display: block; font-size: .86rem; }
.signal-item small { color: #819ba1; }
.signal-state { color: #9eb5b9; font-size: .72rem; }
.panel-foot { display: flex; justify-content: space-between; gap: 20px; padding-top: 19px; color: #718c92; font-size: .68rem; }

.metric-strip { color: var(--white); background: #0a171d; border-top: 1px solid #1b353d; border-bottom: 1px solid #1b353d; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-grid div { padding: 26px 24px; border-right: 1px solid #1b353d; }
.metric-grid div:last-child { border-right: 0; }
.metric-grid strong { display: block; color: var(--signal); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.metric-grid span { color: #abc0c4; font-size: .9rem; }

.section { padding: 100px 0; }
.section.compact { padding: 72px 0; }
.section-link { margin-top: 28px; }
.section-note { margin-top: 24px; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 48px;
}
.section h2, .band h2, .cta-panel h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 1.01;
  letter-spacing: -.055em;
}
.section-head > p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.dark-shell { color: var(--white); background: var(--navy); border-block: 1px solid #101c21; }
.dark-shell .section-head > p { color: var(--muted-dark); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  transition: transform .22s ease, border-color .22s ease;
}
.feature-card:hover { transform: translateY(-3px); border-color: #2f6a63; }
.dark-shell .feature-card { background: var(--surface-2); border-color: #22363d; }
.feature-card .number { display: block; margin-bottom: 42px; color: var(--signal); font-size: .74rem; font-weight: 900; letter-spacing: .15em; }
.dark-shell .feature-card .number { color: var(--signal); }
.feature-card h3 { margin: 0 0 12px; font-size: 1.35rem; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-card .card-detail { margin-top: 14px; }
.dark-shell .feature-card p { color: var(--muted-dark); }

.capability-split { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.capability-split > aside { position: sticky; top: 115px; }
.capability-split h2 { font-size: clamp(2.3rem, 4vw, 4.2rem); }
.capability-list { display: grid; gap: 12px; }
.capability-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.capability-row:last-child { border-bottom: 1px solid var(--line); }
.capability-row > b { color: var(--signal); font-size: .75rem; letter-spacing: .1em; }
.capability-row h3 { margin: 0 0 6px; font-size: 1.16rem; }
.capability-row p { margin: 0; color: var(--muted); }

.ready-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding: clamp(38px, 6vw, 75px);
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, #071117 0%, #0d3038 100%);
  box-shadow: var(--shadow);
}
.ready-panel h2 { font-size: clamp(2.3rem, 4.6vw, 4.7rem); }
.ready-panel p { color: #a9bec2; }
.score-box { padding: 26px; border: 1px solid #31505a; border-radius: 18px; background: rgba(3, 11, 15, .55); }
.score-top { display: flex; justify-content: space-between; gap: 16px; color: #9bb2b7; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.score-number { margin: 18px 0; color: var(--white); font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; line-height: .9; letter-spacing: -.08em; }
.score-number small { color: #8fa6ab; font-size: 1rem; letter-spacing: 0; }
.score-meter { height: 8px; border-radius: 8px; overflow: hidden; background: #29404a; }
.score-meter span { display: block; width: 84%; height: 100%; background: var(--signal); }
.score-meter .score-60 { width: 60%; }
.score-meter .score-72 { width: 72%; }
.score-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }
.score-facts.stack { grid-template-columns: 1fr; }
.score-facts div { padding: 12px; border: 1px solid #253f48; border-radius: 8px; }
.score-facts b { display: block; color: var(--signal); font-size: .7rem; text-transform: uppercase; }
.score-facts span { font-size: .78rem; color: #b4c5c8; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.content-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.content-card { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.content-card:hover { transform: translateY(-4px); border-color: #2f6a63; box-shadow: var(--shadow); }
.content-card .meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .73rem; }
.content-card h3 { margin: 34px 0 12px; font-size: 1.45rem; line-height: 1.2; letter-spacing: -.02em; }
.content-card p { margin: 0; color: var(--muted); }
.content-card .card-link { margin-top: auto; padding-top: 26px; color: var(--signal); font-weight: 850; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.price-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.price-card.featured { border-color: #2c7567; box-shadow: inset 0 3px 0 var(--signal); }
.price-card .meta { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-size: .75rem; }
.price-card h3 { margin: 28px 0 5px; font-size: 1.55rem; letter-spacing: -.02em; }
.price { margin: 8px 0 0; color: var(--ink); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 900; letter-spacing: -.05em; }
.price-note { margin: 3px 0 22px; color: var(--muted); font-size: .82rem; }
.price-card ul { margin: 0 0 28px; padding-left: 1.2rem; color: var(--muted); }
.price-card li { margin: 9px 0; }
.price-card .button { align-self: flex-start; margin-top: auto; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.trust-grid article { padding: 26px; background: var(--navy); }
.trust-grid h3 { margin: 0 0 11px; font-size: 1.05rem; }
.trust-grid p { margin: 0; color: var(--muted-dark); font-size: .88rem; }

.cta-panel {
  margin: 32px auto 70px;
  padding: clamp(46px, 7vw, 88px);
  border-radius: 26px;
  color: var(--white);
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #194953, #081218 68%);
}
.cta-panel h2 { margin-inline: auto; }
.cta-panel p { max-width: 680px; margin: 22px auto 30px; color: #a8bec2; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 85px;
  color: var(--white);
  background: radial-gradient(circle at 78% 5%, #173d47 0, #08131a 38%, #05080b 80%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1000px; font-size: clamp(3.2rem, 6.5vw, 6rem); }
.page-hero .lede { margin: 25px 0 0; }
.page-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.matrix { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); }
.matrix th, .matrix td { padding: 16px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.matrix th { color: #b1c1c4; font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; background: var(--surface-2); }
.matrix td:first-child { font-weight: 800; }
.matrix p { margin: 5px 0 0; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; counter-reset: step; }
.step { padding: 24px 18px; border: 1px solid var(--line); border-top: 3px solid var(--signal); background: var(--surface); }
.step::before { counter-increment: step; content: "0" counter(step); color: var(--signal); font-size: .72rem; font-weight: 900; }
.step h3 { margin: 25px 0 8px; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: .86rem; }

.glossary-index { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.glossary-index a { padding: 6px 11px; border: 1px solid #36545d; border-radius: 100px; color: #c5d4d6; text-decoration: none; font-size: .75rem; }
.glossary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.term-card { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); scroll-margin-top: 100px; }
.term-card h2 { margin: 0 0 10px; font-size: 1.3rem; letter-spacing: -.02em; }
.term-card p { margin: 0; color: var(--muted); }
.term-card .argus-note { margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink); font-size: .88rem; }
.term-card .argus-note b { color: var(--signal); }

.article-hero { padding: 92px 0 70px; color: var(--white); background: var(--night); }
.article-hero .wrap { max-width: 950px; }
.article-hero h1 { font-size: clamp(2.8rem, 5.8vw, 5.3rem); }
.article-hero .lede { margin-top: 24px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 28px; color: #8fa6ab; font-size: .78rem; }
.article-layout { display: grid; grid-template-columns: 210px minmax(0, 760px); gap: clamp(45px, 8vw, 100px); justify-content: center; padding: 74px 0 100px; }
.article-aside { position: sticky; top: 115px; align-self: start; font-size: .78rem; color: var(--muted); }
.article-aside strong { display: block; margin-bottom: 12px; color: var(--ink); text-transform: uppercase; letter-spacing: .1em; }
.article-aside a { display: block; margin: 7px 0; text-decoration: none; }
.prose { min-width: 0; }
.prose h2 { margin: 2.15em 0 .65em; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.15; letter-spacing: -.035em; scroll-margin-top: 110px; }
.prose h3 { margin: 1.8em 0 .5em; font-size: 1.25rem; }
.prose p, .prose li { color: #a8b8bb; font-size: 1.05rem; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin: .55em 0; }
.prose blockquote { margin: 30px 0; padding: 5px 0 5px 24px; border-left: 4px solid var(--signal); color: var(--ink); font-size: 1.2rem; font-weight: 750; }
.callout { margin: 30px 0; padding: 22px; border: 1px solid #26554b; border-radius: 12px; background: #0b211e; }
.callout strong { display: block; margin-bottom: 6px; color: var(--signal); }
.callout p { margin: 0; font-size: .96rem; }
.references { margin-top: 55px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.references h2 { margin-top: 0; font-size: 1.45rem; letter-spacing: -.02em; }
.references li { font-size: .9rem; overflow-wrap: anywhere; }
.references a { color: var(--signal); }
.paper-label { display: inline-flex; margin-bottom: 18px; padding: 5px 9px; border: 1px solid #3a5962; border-radius: 100px; color: var(--signal); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 8vw, 100px); align-items: start; }
.form-intro { position: sticky; top: 115px; }
.form-intro h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.boundary-list { margin: 30px 0 0; padding: 0; list-style: none; }
.boundary-list li { position: relative; padding: 12px 0 12px 27px; border-top: 1px solid var(--line); color: var(--muted); }
.boundary-list li::before { content: ""; position: absolute; left: 0; top: 21px; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); }
.contact-form { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #31464d;
  border-radius: 8px;
  color: var(--ink);
  background: #070d10;
  outline: none;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(50, 230, 188, .12); }
.field-help { display: block; margin-top: 6px; color: var(--muted); font-size: .73rem; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 18px 0; }
.checkbox input { margin-top: 5px; }
.checkbox label { color: var(--muted); font-size: .82rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .74rem; }
.turnstile-wrap { min-height: 70px; margin: 20px 0; }

.policy-shell { background: var(--night); }
.policy { max-width: 880px; padding: 84px 0 110px; }
.policy h1 { margin: 0 0 20px; font-size: clamp(2.9rem, 6vw, 5.4rem); line-height: .96; letter-spacing: -.06em; }
.policy .policy-summary { margin: 28px 0 40px; padding: 24px; border-left: 4px solid var(--signal); background: #0b211e; color: #b8cacb; font-size: 1.07rem; }
.policy h2 { margin: 2.2em 0 .6em; font-size: 1.65rem; letter-spacing: -.025em; }
.policy h3 { margin: 1.6em 0 .45em; font-size: 1.1rem; }
.policy p, .policy li { color: #a8b8bb; }
.policy table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy th, .policy td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy th { background: var(--paper-2); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }

.site-footer { padding: 60px 0 36px; color: #9bb1b5; background: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 40px; }
.footer-brand p { max-width: 380px; color: #80999e; font-size: .86rem; }
.footer-col strong { display: block; margin-bottom: 13px; color: var(--white); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-col a { display: block; margin: 8px 0; color: #96abb0; text-decoration: none; font-size: .84rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 45px; padding-top: 24px; border-top: 1px solid #1b3038; color: #70878d; font-size: .73rem; }


/* SecTools uses the same AlomSec layout and visual tokens. */
.sectools-hero { min-height: 0; }
.sectools-hero-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr); gap: 58px; align-items: center; }
.sectools-hero-copy h1 { max-width: 720px; }
.sectools-hero-copy .lede { max-width: 650px; color: #b5c5c8; }
.sectools-stage-note, .sectools-visual-note { color: #82979b; font-size: .76rem; }
.sectools-stage-note { max-width: 650px; margin: 22px 0 0; }
.sectools-stage-note b { color: var(--signal); }
.sectools-visual-note { position: relative; margin-top: 24px; }
.analysis-window { min-width: 0; overflow: hidden; border: 1px solid #31505a; border-radius: 15px; background: #071016; box-shadow: 0 30px 90px rgba(0,0,0,.48); }
.analysis-window-bar { min-height: 44px; display: flex; align-items: center; gap: 12px; padding: 0 14px; border-bottom: 1px solid #1d323a; color: #70868b; font: .68rem/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.analysis-window-bar > span:last-child { margin-left: auto; color: var(--blue); }
.window-lights { display: flex; gap: 6px; }
.window-lights i { width: 8px; height: 8px; border-radius: 50%; background: #40525b; }
.window-lights i:first-child { background: var(--coral); }
.window-lights i:nth-child(2) { background: #dca759; }
.window-lights i:last-child { background: #46c7aa; }
.analysis-workbench { min-width: 710px; height: 420px; display: grid; grid-template-columns: 142px minmax(350px, 1fr) 170px; }
.analysis-tree, .analysis-evidence { padding: 15px 11px; background: #09131a; font: .65rem/1.75 ui-monospace, SFMono-Regular, Consolas, monospace; }
.analysis-tree { border-right: 1px solid #1d323a; }
.analysis-evidence { border-left: 1px solid #1d323a; }
.analysis-tree small, .analysis-evidence > small { display: block; margin-bottom: 12px; color: #5f767d; font-weight: 850; letter-spacing: .13em; }
.analysis-tree > span { display: block; padding: 4px 7px; color: #8ca0a4; }
.analysis-tree > span b { float: right; color: #526970; font-weight: 500; }
.analysis-tree > span.active { border-left: 2px solid var(--signal); color: var(--signal); background: rgba(50,230,188,.09); }
.analysis-code { min-width: 0; overflow: hidden; }
.analysis-tabs { min-height: 41px; display: flex; align-items: end; gap: 20px; padding: 0 15px; border-bottom: 1px solid #1d323a; color: #5e747b; font: .62rem/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.analysis-tabs > * { padding-bottom: 12px; }
.analysis-tabs b { color: var(--white); border-bottom: 2px solid var(--signal); }
.analysis-code pre { margin: 0; padding: 23px 18px; overflow: auto; color: #c7d3d6; background: #060c11; font: .7rem/1.9 ui-monospace, SFMono-Regular, Consolas, monospace; }
.code-type { color: var(--blue); }
.code-fn { color: #65e4c7; }
.code-keyword { color: #bea6ef; }
.code-constant { color: var(--danger); }
.code-comment { color: #587079; }
.analysis-evidence div { margin-bottom: 10px; padding: 10px; border: 1px solid #203840; border-radius: 7px; }
.analysis-evidence div.signal { border-color: #88464d; }
.analysis-evidence b, .analysis-evidence span { display: block; }
.analysis-evidence b { color: #e1eaeb; }
.analysis-evidence div.signal b { color: var(--danger); }
.analysis-evidence span { color: #799096; }
.sectools-evidence { grid-template-columns: minmax(280px, .76fr) minmax(520px, 1.24fr); gap: 34px; }
.sectools-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 24px 0; }
.sectools-metrics div { padding: 15px; border: 1px solid #213a41; border-radius: 9px; background: #071116; }
.sectools-metrics strong, .sectools-metrics span { display: block; }
.sectools-metrics strong { color: var(--white); font-size: 1.45rem; letter-spacing: -.04em; }
.sectools-metrics span { margin-top: 5px; color: #71878c; font: .57rem/1.45 ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; }
.sectools-inference { padding: 14px 16px; border-left: 2px solid var(--coral); background: rgba(255,116,122,.05); font-size: .76rem; }
.sectools-inference b { color: var(--danger); }
.sectools-chart { min-width: 0; padding: 17px; border: 1px solid #203840; border-radius: 12px; background: #050c11; }
.sectools-chart-head { display: flex; justify-content: space-between; gap: 20px; color: #cbd9db; }
.sectools-chart-head span { color: #6f858b; font: .59rem/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; }
.sectools-chart-scroll { overflow-x: auto; }
.sectools-chart svg { display: block; min-width: 560px; width: 100%; height: auto; }
.chart-grid line { stroke: #22353b; stroke-width: 1; }
.chart-labels { fill: #647b81; font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; }
.chart-pending { stroke: var(--cobalt); stroke-dasharray: 4 6; }
.chart-loss-line { fill: none; stroke: var(--signal); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chart-points circle { fill: #071116; stroke: var(--signal); stroke-width: 2; }
.sectools-chart details { color: #81979c; font-size: .72rem; }
.sectools-chart summary { cursor: pointer; }
.sectools-chart table { width: 100%; margin-top: 10px; border-collapse: collapse; }
.sectools-chart th, .sectools-chart td { padding: 6px; border: 1px solid #203840; text-align: right; }
.sectools-chart th:first-child, .sectools-chart td:first-child { text-align: left; }
.sectools-sources { margin: 12px 0 0; font-size: .67rem; }
.sectools-sources a { color: var(--signal); }
.sectools-agent-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: center; }
.sectools-tool-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 24px; }
.sectools-tool-list code { padding: 10px; border: 1px solid #284047; border-radius: 7px; color: #9eb3b7; background: #071116; font-size: .69rem; }
.sectools-terminal { overflow: hidden; border: 1px solid #31505a; border-radius: 14px; background: #050b0f; box-shadow: 0 26px 72px rgba(0,0,0,.4); }
.sectools-terminal > div { padding: 14px 18px; border-bottom: 1px solid #1d323a; color: #71888d; font: .62rem/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.sectools-terminal pre { margin: 0; padding: 25px; overflow: auto; color: #b8c8cb; font: .76rem/1.8 ui-monospace, SFMono-Regular, Consolas, monospace; }
.sectools-terminal code span { color: var(--signal); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .content-card, .feature-card, .button { transition: none; }
  .nav-burger span, .nav-burger span::before, .nav-burger span::after { transition: none; }
  .hero-grid > *, .page-hero .wrap > *, .live-dot::before { animation: none; }
}

@media (max-width: 1440px) {
  .site-header { gap: 16px; }
  .site-header nav { gap: 13px; }
  .site-header nav a { font-size: .8rem; }
  .site-header nav .button.small, .site-header > .button { font-size: .74rem; padding: 8px 11px; }
}

@media (max-width: 1280px) {
  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 6px 0 16px;
    background: var(--night);
    border-bottom: 1px solid #183039;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav-toggle:checked ~ nav { display: flex; }
  .site-header nav a { padding: 13px max(4vw, 24px); font-size: .95rem; }
  .site-header nav a.button { margin: 10px max(4vw, 24px) 0; justify-content: center; }
  .site-header > .button { margin-left: auto; }
  .nav-burger { display: block; position: relative; width: 44px; height: 44px; flex: none; }
  .nav-burger span {
    position: absolute;
    top: 21px;
    left: 11px;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: background .2s ease;
  }
  .nav-burger span::before, .nav-burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform .2s ease;
  }
  .nav-burger span::before { top: -7px; }
  .nav-burger span::after { top: 7px; }
  .nav-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: max(4vw, 24px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
  }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--signal); outline-offset: 2px; border-radius: 10px; }
  .nav-toggle:checked ~ .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .nav-burger span::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span::after { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 980px) {
  .hero-grid, .ready-panel, .section-head, .capability-split, .form-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 75px; }
  .signal-panel { max-width: 650px; }
  .feature-grid, .card-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-split > aside, .form-intro { position: static; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .wrap, .hero-grid { width: min(calc(100% - 32px), var(--max)); }
  .site-header { min-height: 66px; padding-inline: 16px; }
  .brand { font-size: .78rem; }
  .brand-mark { width: 30px; height: 22px; }
  .site-header .button { min-height: 38px; padding: 7px 10px; font-size: .7rem; }
  .nav-toggle { right: 16px; }
  .site-header nav a { padding: 13px 16px; }
  .site-header nav a.button { margin-inline: 16px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 62px 0; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .signal-panel { padding: 16px; }
  .signal-item { grid-template-columns: 38px 1fr; }
  .signal-state { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid div:nth-child(2) { border-right: 0; }
  .metric-grid div:nth-child(-n+2) { border-bottom: 1px solid #1b353d; }
  .section { padding: 72px 0; }
  .feature-grid, .card-grid, .pricing-grid, .trust-grid, .glossary-grid, .steps, .field-row { grid-template-columns: 1fr; }
  .ready-panel { padding: 30px 22px; }
  .score-facts { grid-template-columns: 1fr; }
  .page-hero, .article-hero { padding: 72px 0 58px; }
  .article-layout { padding-top: 50px; }
  .contact-form { padding: 22px 17px; }
  .policy { padding: 62px 0 85px; }
  .matrix { display: block; max-width: 100%; overflow-x: auto; }
  .policy table, .policy thead, .policy tbody, .policy tr, .policy th, .policy td { display: block; }
  .policy th { border-bottom: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .analysis-window { overflow-x: auto; }
  .sectools-tool-list { grid-template-columns: 1fr; }
  .sectools-chart-head { flex-direction: column; }
}
