:root {
  --bg: #08111f;
  --bg-soft: #0f1d31;
  --surface: rgba(255, 255, 255, 0.085);
  --surface-strong: rgba(255, 255, 255, 0.13);
  --ink: #f7fbff;
  --muted: #a9b8cb;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #48d6b5;
  --accent-2: #62a8ff;
  --accent-3: #f3bf57;
  --danger: #ff6a72;
  --warn: #f4b350;
  --medium: #73a7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(120deg, rgba(72, 214, 181, 0.09), transparent 34%),
    linear-gradient(240deg, rgba(98, 168, 255, 0.12), transparent 42%),
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.14), transparent 38%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(8, 17, 31, 0.96) 78%);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header,
.site-footer,
.hero,
.section,
.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(72, 214, 181, 0.95), rgba(98, 168, 255, 0.9));
  color: #06111f;
  box-shadow: 0 14px 42px rgba(72, 214, 181, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 9px 11px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.nav .nav-cta {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 58px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 7.2vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before,
.card::before,
.service-tile::before,
.audit-console::before,
.workbench::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 42%);
  transition: opacity 180ms ease;
}

.button:hover,
.card:hover,
.service-tile:hover,
.audit-console:hover {
  transform: translateY(-2px);
}

.button:hover::before,
.card:hover::before,
.service-tile:hover::before,
.audit-console:hover::before,
.workbench:hover::before {
  opacity: 1;
}

.button.primary {
  border-color: rgba(72, 214, 181, 0.52);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06111f;
  box-shadow: 0 18px 54px rgba(72, 214, 181, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics strong,
.score-ring span {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.hero-metrics span,
.score-ring small {
  color: var(--muted);
  font-size: 13px;
}

.audit-console,
.card,
.report-preview,
.cta {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--surface-strong), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.audit-console {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 18px;
}

.audit-console::after {
  position: absolute;
  inset: 56px 18px 18px;
  content: "";
  pointer-events: none;
  border-radius: 10px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.72;
}

.console-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
}

.window-controls span:nth-child(2) {
  background: var(--warn);
}

.window-controls span:nth-child(3) {
  background: var(--accent);
}

.scan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  margin-top: 46px;
}

.score-ring {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, rgba(8, 17, 31, 0.96) 74%, transparent 75%),
    conic-gradient(var(--accent-3) calc(var(--score) * 1%), rgba(255, 255, 255, 0.1) 0);
  animation: float-card 4.4s ease-in-out infinite;
}

.signal-stack {
  display: grid;
  gap: 12px;
}

.signal-stack div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 17, 31, 0.58);
  animation: scan-pulse 4s ease-in-out infinite;
}

.signal-stack div:nth-child(2) {
  animation-delay: 220ms;
}

.signal-stack div:nth-child(3) {
  animation-delay: 440ms;
}

.signal-stack div:nth-child(4) {
  animation-delay: 660ms;
}

.signal-stack span {
  color: var(--muted);
}

.danger {
  color: var(--danger);
}

.warn {
  color: var(--warn);
}

.medium {
  color: var(--medium);
}

.terminal-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 34px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #d8fff3;
  font-size: 13px;
}

.terminal-lines span {
  display: block;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  animation: type-line 9s steps(32) infinite;
}

.terminal-lines span::before {
  color: var(--accent);
  content: "$ ";
}

.terminal-lines span:nth-child(2) {
  animation-delay: 1.4s;
}

.terminal-lines span:nth-child(3) {
  animation-delay: 2.8s;
}

.terminal-lines span:nth-child(4) {
  animation-delay: 4.2s;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0 0 30px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.trust-band div {
  display: grid;
  gap: 4px;
  padding: 25px 32px;
}

.trust-band div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.trust-band span,
.section-heading p,
.card p,
.service-tile p,
.report-preview p,
.cta p,
.panel-list span,
.site-footer {
  color: var(--muted);
}

.section {
  padding: 66px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: rgba(72, 214, 181, 0.42);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.positioning-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 30px;
  gap: 14px;
}

.tagline-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(72, 214, 181, 0.11), rgba(98, 168, 255, 0.06)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.tagline-card::after {
  position: absolute;
  right: -24px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.tagline-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 340px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.04;
}

.service-orbit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-tile::after {
  position: absolute;
  inset: auto -34px -70px auto;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 214, 181, 0.2), transparent 62%);
  transition: transform 260ms ease, opacity 260ms ease;
}

.service-tile:hover {
  border-color: rgba(72, 214, 181, 0.48);
  background:
    linear-gradient(160deg, rgba(72, 214, 181, 0.12), rgba(98, 168, 255, 0.08)),
    rgba(255, 255, 255, 0.065);
}

.service-tile:hover::after {
  transform: scale(1.2) translate(-14px, -14px);
}

.tile-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
  place-items: center;
  border: 1px solid rgba(72, 214, 181, 0.36);
  border-radius: 11px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.tile-meter {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.tile-meter span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
  animation: meter-grow 1.8s ease both;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-list div {
  display: grid;
  gap: 4px;
  padding: 19px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, background 180ms ease;
}

.panel-list div:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
}

.workflow {
  position: relative;
}

.workbench {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(72, 214, 181, 0.11), rgba(98, 168, 255, 0.075)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.workbench-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.workbench-tabs button {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.workbench-tabs button:hover,
.workbench-tabs button.active {
  border-color: rgba(72, 214, 181, 0.52);
  background: rgba(72, 214, 181, 0.14);
  color: var(--ink);
  transform: translateY(-1px);
}

.workbench-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  min-height: 430px;
  gap: 18px;
}

.work-copy,
.work-visual {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 17, 31, 0.55);
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.step-count {
  display: inline-flex;
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(72, 214, 181, 0.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.work-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.work-list li {
  position: relative;
  padding-left: 22px;
}

.work-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(72, 214, 181, 0.65);
}

.work-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
}

.radar {
  position: relative;
  display: grid;
  width: min(340px, 78vw);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 54px),
    conic-gradient(from 0deg, rgba(72, 214, 181, 0.45), transparent 44%, rgba(98, 168, 255, 0.24), transparent 78%);
  animation: radar-turn 9s linear infinite;
}

.radar span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.radar span:nth-child(1) {
  inset: 18%;
}

.radar span:nth-child(2) {
  inset: 34%;
}

.radar span:nth-child(3) {
  inset: 50%;
}

.dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 28px rgba(255, 106, 114, 0.78);
}

.dot-a {
  top: 26%;
  left: 62%;
}

.dot-b {
  top: 58%;
  left: 24%;
  background: var(--warn);
}

.dot-c {
  top: 68%;
  left: 70%;
  background: var(--medium);
}

.mini-console {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(8, 17, 31, 0.84);
  color: #d8fff3;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.risk-map {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(72, 214, 181, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.25fr;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.comparison-table tbody tr:last-child {
  border-bottom: 0;
}

.comparison-row th,
.comparison-row td {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--muted);
  text-align: left;
}

.comparison-row th:not(:last-child),
.comparison-row td:not(:last-child) {
  border-right: 1px solid var(--line);
}

.comparison-row th:first-child {
  color: var(--ink);
  font-weight: 850;
}

.comparison-head {
  min-height: 56px;
  background: rgba(72, 214, 181, 0.12);
}

.comparison-head th {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deliverable-grid,
.faq-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.deliverable-grid div,
.faq-grid details,
.proof-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.deliverable-grid div {
  min-height: 235px;
  padding: 22px;
}

.deliverable-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid rgba(72, 214, 181, 0.35);
  border-radius: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.deliverable-grid strong {
  display: block;
  font-size: 19px;
}

.deliverable-grid p,
.faq-grid p,
.proof-grid p {
  color: var(--muted);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid div {
  min-height: 210px;
  padding: 24px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.report-page {
  background:
    linear-gradient(120deg, rgba(72, 214, 181, 0.08), transparent 36%),
    linear-gradient(240deg, rgba(98, 168, 255, 0.1), transparent 44%),
    var(--bg);
}

.report-shell {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto 70px;
}

.report-cover,
.report-section {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.report-cover {
  padding: 42px;
}

.report-cover h1 {
  font-size: clamp(48px, 8vw, 88px);
}

.report-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.report-meta div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.report-meta strong,
.report-meta span {
  display: block;
}

.report-meta span {
  margin-top: 8px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.report-section {
  margin-top: 18px;
  padding: 30px;
}

.report-section h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.finding-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.finding-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(8, 17, 31, 0.55);
}

.two-col-report {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.two-col-report ul {
  color: var(--muted);
}

.quote-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.quote-path div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-path strong,
.quote-path span {
  display: block;
}

.quote-path span {
  margin-top: 8px;
  color: var(--muted);
}

.inline-download {
  margin-top: 18px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-grid summary::marker {
  color: var(--accent);
}

.risk-map::before {
  position: absolute;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: slow-spin 16s linear infinite;
}

.risk-map::after {
  position: absolute;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px dashed rgba(72, 214, 181, 0.26);
  border-radius: 50%;
  animation: slow-spin 12s linear reverse infinite;
}

.risk-center,
.risk-node {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 17, 31, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.risk-center {
  display: grid;
  width: 230px;
  min-height: 128px;
  place-items: center;
  text-align: center;
}

.risk-center span,
.risk-node span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-node {
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.risk-node:hover {
  border-color: rgba(72, 214, 181, 0.52);
  transform: scale(1.035);
}

.risk-node p {
  margin-bottom: 0;
  color: var(--muted);
}

.critical-node {
  top: 44px;
  left: 7%;
}

.high-node {
  right: 7%;
  top: 100px;
}

.ops-node {
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
}

.ops-node:hover {
  transform: translateX(-50%) scale(1.035);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.steps div {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 10px;
  background: rgba(72, 214, 181, 0.15);
  color: var(--accent);
  font-weight: 900;
}

.report-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.report-preview > div {
  padding: 25px;
}

.report-preview > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 7px;
  color: #06111f;
  font-size: 12px;
  font-weight: 900;
}

.tag.critical {
  background: var(--danger);
}

.tag.high {
  background: var(--warn);
}

.tag.medium {
  background: var(--medium);
}

.pricing .price {
  margin: 12px 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 950;
}

.pricing ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.featured {
  border-color: rgba(72, 214, 181, 0.48);
  background: linear-gradient(145deg, rgba(72, 214, 181, 0.13), rgba(98, 168, 255, 0.08));
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 46px;
  padding: 32px;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 44px;
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes scan-pulse {
  0%,
  100% {
    border-color: var(--line);
    transform: translateX(0);
  }
  50% {
    border-color: rgba(72, 214, 181, 0.42);
    transform: translateX(3px);
  }
}

@keyframes type-line {
  0%,
  8% {
    width: 0;
  }
  22%,
  82% {
    width: 100%;
  }
  92%,
  100% {
    width: 0;
  }
}

@keyframes meter-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes radar-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 960px) {
  .site-header,
  .cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .grid.three,
  .report-preview,
  .trust-band,
  .steps,
  .positioning-band,
  .service-orbit,
  .workbench-stage,
  .comparison-row,
  .deliverable-grid,
  .faq-grid,
  .proof-grid,
  .report-meta,
  .two-col-report,
  .quote-path {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .audit-console {
    min-height: 440px;
  }

  .trust-band div:not(:last-child),
  .report-preview > div:not(:last-child),
  .comparison-row span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workbench-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .risk-map {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .risk-map::before,
  .risk-map::after {
    display: none;
  }

  .risk-center,
  .risk-node,
  .critical-node,
  .high-node,
  .ops-node {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .ops-node:hover {
    transform: scale(1.035);
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .cta {
    width: min(100% - 28px, 1180px);
  }

  .hero-metrics,
  .scan-grid,
  .workbench-tabs {
    grid-template-columns: 1fr;
  }

  .nav a {
    padding: 8px 9px;
  }

  .audit-console {
    min-height: 560px;
  }

  .positioning-band {
    width: min(100% - 28px, 1180px);
  }

  .service-tile {
    min-height: 280px;
  }

  .tile-index {
    margin-bottom: 42px;
  }

  .workbench {
    padding: 12px;
  }

  .work-copy {
    padding: 22px;
  }

  .report-shell {
    width: min(100% - 28px, 1060px);
  }

  .report-cover,
  .report-section {
    padding: 22px;
  }

  .mini-console {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 18px;
  }
}
