/* [project]/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: Inter, "SF Pro Display", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-ink-950: #03070d;
    --color-ink-850: #0a1624;
    --color-ink-800: #0d1c2c;
    --color-cloud: #f1f8ff;
    --color-muted: #91a6bb;
    --color-line: #1c3449;
    --color-cyan: #1ed6f2;
    --color-cyan-strong: #00a8d2;
    --color-green: #5df2b3;
    --color-coral: #ff6e6e;
    --color-amber: #ffc868;
    --radius-medium: 18px;
    --radius-large: 30px;
    --shadow-radar: 0 40px 120px #00000085;
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .invisible {
    visibility: hidden;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .hidden {
    display: none;
  }
}

:root {
  --font-body: var(--font-sans);
  --font-data: var(--font-mono);
  --page-bg: var(--color-ink-950);
  --page-text: var(--color-cloud);
  --text-muted: var(--color-muted);
  --surface: var(--color-ink-850);
  --surface-strong: var(--color-ink-800);
  --line: var(--color-line);
  --brand: var(--color-cyan);
  --brand-strong: var(--color-cyan-strong);
  --success: var(--color-green);
  --danger: var(--color-coral);
  --warning: var(--color-amber);
  --radius-ui: var(--radius-medium);
  --radius-panel: var(--radius-large);
  --shadow-panel: var(--shadow-radar);
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  color: var(--page-text);
  background: var(--page-bg);
  font-family: var(--font-body);
  text-rendering: geometricprecision;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: .62;
}

::selection {
  color: #001017;
  background: var(--brand);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.signal-site {
  background: var(--page-bg);
  min-height: 100vh;
  overflow-x: clip;
}

.section-shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.skip-link {
  z-index: 100;
  color: #001017;
  background: var(--brand);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  z-index: 20;
  border-bottom: 1px solid #91a6bb2e;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: min(100% - 48px, 1320px);
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  position: absolute;
  inset: 0 0 auto;
}

.brand, .footer-brand {
  align-items: center;
  gap: 12px;
  width: fit-content;
  display: inline-flex;
}

.brand-mark {
  background: #071523;
  border: 1px solid #1ed6f257;
  border-radius: 14px;
  place-items: center;
  width: 46px;
  height: 46px;
  display: grid;
  overflow: hidden;
}

.brand-mark img {
  object-fit: contain;
  width: 58px;
  height: 58px;
}

.brand-name {
  letter-spacing: -.035em;
  font-size: 1.08rem;
  font-weight: 850;
}

.site-nav, .footer-links {
  color: #a8bacb;
  align-items: center;
  gap: 32px;
  font-size: .84rem;
  font-weight: 700;
  display: flex;
}

.site-nav a, .footer-links a {
  transition: color .16s;
}

.site-nav a:hover, .footer-links a:hover {
  color: var(--brand);
}

.header-status {
  color: #c8ffe9;
  font-family: var(--font-data);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #5df2b30e;
  border: 1px solid #5df2b338;
  border-radius: 999px;
  justify-self: end;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  font-size: .68rem;
  display: inline-flex;
}

.header-status span, .status-dot {
  background: var(--success);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2.4s ease-in-out infinite statusPulse;
  box-shadow: 0 0 0 4px #5df2b31a, 0 0 15px #5df2b3e6;
}

.hero {
  background: linear-gradient(105deg, #03070d 0%, #06111d 55%, #071726 100%);
  border-bottom: 1px solid #91a6bb2e;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(30px, 5vw, 88px);
  min-height: 880px;
  padding: 126px max(24px, 50vw - 620px) 64px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #1ed6f221, #0000 63%);
  border-radius: 50%;
  width: 65%;
  height: 100%;
  position: absolute;
  top: -10%;
  right: -8%;
}

.hero-grid {
  opacity: .32;
  background-image: linear-gradient(#5c8eb11f 1px, #0000 1px), linear-gradient(90deg, #5c8eb11f 1px, #0000 1px);
  background-size: 72px 72px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 48% 100%);
  mask-image: linear-gradient(90deg, #0000, #000 48% 100%);
}

.hero-copy {
  z-index: 2;
  max-width: 690px;
  position: relative;
}

.kicker, .section-kicker {
  color: var(--brand);
  font-family: var(--font-data);
  letter-spacing: .13em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
}

.hero h1 {
  letter-spacing: -.07em;
  text-wrap: balance;
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 6.7vw, 7.5rem);
  font-weight: 850;
  line-height: .88;
}

.hero h1 em {
  color: var(--brand);
  font-style: normal;
  display: block;
}

.hero-lead {
  color: #9eb1c4;
  max-width: 660px;
  margin: 30px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.74;
}

.hero-actions {
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  display: flex;
}

.button {
  letter-spacing: -.02em;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 21px;
  font-weight: 850;
  transition: transform .16s, background .16s, box-shadow .16s;
  display: inline-flex;
}

.button-primary {
  color: #001017;
  background: var(--brand);
  box-shadow: 0 12px 35px #1ed6f233;
}

.button-primary:hover {
  background: #68ecff;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px #1ed6f247;
}

.hero-actions p {
  color: #8ea3b8;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
}

.hero-proof {
  border-top: 1px solid #91a6bb33;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin: 46px 0 0;
  padding-top: 22px;
  display: grid;
}

.hero-proof div {
  border-left: 1px solid #91a6bb33;
  gap: 6px;
  padding-left: 18px;
  display: grid;
}

.hero-proof div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-proof dt {
  color: #71879d;
  font-family: var(--font-data);
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .63rem;
}

.hero-proof dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.radar-stage {
  z-index: 2;
  aspect-ratio: 1;
  width: min(100%, 670px);
  box-shadow: var(--shadow-panel), inset 0 0 90px #1ed6f212;
  background-color: #06121e;
  background-image: linear-gradient(#1ed6f214 1px, #0000 1px), linear-gradient(90deg, #1ed6f214 1px, #0000 1px), none;
  background-position: center;
  background-repeat: repeat, repeat, repeat;
  background-size: 54px 54px;
  background-attachment: scroll, scroll, scroll;
  background-origin: padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box;
  border: 1px solid #1ed6f22e;
  border-radius: 50%;
  justify-self: end;
  position: relative;
}

.radar-stage:before, .radar-stage:after {
  z-index: 0;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.radar-stage:before {
  border: 1px dashed #1ed6f23d;
  inset: 11%;
}

.radar-stage:after {
  border: 1px solid #1ed6f230;
  inset: 31%;
}

.radar-orbit {
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.radar-orbit-outer {
  border-top: 2px solid var(--brand);
  border-right: 2px solid #0000;
  inset: -1px;
  transform: rotate(-24deg);
}

.radar-orbit-inner {
  border-bottom: 1px solid #5df2b3cc;
  border-left: 1px solid #0000;
  inset: 21%;
  transform: rotate(31deg);
}

.radar-sweep {
  z-index: 1;
  transform-origin: 100% 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: linear-gradient(45deg, #0000 45%, #1ed6f20d, #1ed6f233);
  animation: 8s linear infinite radarSweep;
  position: absolute;
  inset: 50% 50% 0 0;
}

.radar-node {
  z-index: 2;
  background: var(--brand);
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 5px #1ed6f21a, 0 0 24px var(--brand);
  border: 2px solid #06121e;
  border-radius: 50%;
  position: absolute;
}

.node-one {
  top: 18%;
  left: 26%;
}

.node-two {
  background: var(--success);
  box-shadow: 0 0 0 5px #5df2b31a, 0 0 24px var(--success);
  top: 38%;
  right: 12%;
}

.node-three {
  background: var(--danger);
  box-shadow: 0 0 0 5px #ff6e6e1a, 0 0 24px var(--danger);
  bottom: 16%;
  right: 28%;
}

.logo-aura {
  z-index: 7;
  pointer-events: none;
  place-items: center;
  display: grid;
  position: absolute;
  inset: 18%;
}

.logo-aura:before {
  content: "";
  background: #07192ae0;
  border-radius: 50%;
  position: absolute;
  inset: 14%;
  box-shadow: 0 0 80px #1ed6f22e;
}

.logo-aura img {
  object-fit: contain;
  filter: drop-shadow(0 18px 25px #0006);
  width: 100%;
  height: 100%;
  position: relative;
}

.radar-label, .detection-card {
  z-index: 5;
  background: #050e18f0;
  border: 1px solid #91a6bb3d;
  position: absolute;
  box-shadow: 0 16px 38px #00000052;
}

.radar-label-top {
  color: #8fa5b9;
  font-family: var(--font-data);
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 12px;
  grid-template-columns: auto 1fr;
  gap: 3px 9px;
  padding: 11px 14px;
  font-size: .61rem;
  display: grid;
  top: 3%;
  left: 3%;
}

.radar-label-top .status-dot {
  grid-row: 1 / 3;
  align-self: center;
}

.radar-label-top strong {
  color: #eaf7ff;
  font-size: .72rem;
}

.detection-card {
  border-radius: 11px;
  align-items: center;
  gap: 10px;
  width: 212px;
  padding: 11px 12px;
  display: flex;
}

.detection-card span {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.detection-card strong {
  font-size: .77rem;
}

.detection-card small {
  color: #7890a5;
  font-family: var(--font-data);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .57rem;
  overflow: hidden;
}

.tone-cyan svg {
  color: var(--brand);
}

.tone-coral svg {
  color: var(--danger);
}

.tone-green svg {
  color: var(--success);
}

.tone-amber svg {
  color: var(--warning);
}

.detection-1 {
  top: 8%;
  right: -7%;
}

.detection-2 {
  bottom: 7%;
  right: -4%;
}

.detection-3 {
  bottom: 2%;
  left: -4%;
}

.pulse-strip {
  z-index: 4;
  background: #071421;
  border-bottom: 1px solid #1ed6f233;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 66px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.pulse-label {
  color: #001017;
  background: var(--brand);
  height: 100%;
  font-family: var(--font-data);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  align-items: center;
  gap: 9px;
  padding: 0 max(24px, 50vw - 620px);
  font-size: .68rem;
  font-weight: 800;
  display: flex;
}

.pulse-track {
  color: #a9bac9;
  min-width: 0;
  font-family: var(--font-data);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: .63rem;
  display: flex;
}

.pulse-track i {
  background: var(--brand);
  width: 4px;
  height: 4px;
  box-shadow: 0 0 12px var(--brand);
  border-radius: 50%;
  flex: none;
}

.thesis {
  grid-template-columns: 150px minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: clamp(36px, 6vw, 100px);
  padding-block: 150px 160px;
  display: grid;
}

.section-index {
  color: #597086;
  font-family: var(--font-data);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .67rem;
}

.thesis h2, .signal-categories-heading h2, .coverage-heading h2, .pipeline-intro h2, .callout-inner h2, .risk-copy h2 {
  letter-spacing: -.06em;
  text-wrap: balance;
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  font-weight: 820;
  line-height: .96;
}

.thesis-note {
  border-left: 1px solid var(--line);
  align-content: end;
  gap: 22px;
  padding-left: 30px;
  display: grid;
}

.thesis-note p, .signal-categories-heading > p, .coverage-heading > p, .pipeline-intro > p, .callout-inner > p, .risk-copy p {
  color: #91a6bb;
  margin: 0;
  line-height: 1.75;
}

.signal-categories {
  gap: 56px;
  padding-block: 0 148px;
  display: grid;
}

.signal-categories-heading {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 64px;
  display: grid;
}

.signal-categories-heading h2 {
  letter-spacing: 0;
  max-width: 850px;
  font-size: 5.2rem;
}

.signal-category-grid {
  background: #22394d;
  border: 1px solid #22394d;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  display: grid;
}

.signal-category-card {
  background: #07111d;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  min-height: 372px;
  padding: 28px;
  transition: background .18s, transform .18s, box-shadow .18s;
  display: grid;
}

.signal-category-card:hover {
  background: #0a1826;
  transform: translateY(-3px);
  box-shadow: 0 20px 46px #00000038;
}

.signal-category-top {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  display: flex;
}

.signal-category-number {
  color: #50677c;
  font-family: var(--font-data);
  letter-spacing: .09em;
  font-size: .64rem;
}

.signal-category-icon {
  background: #91a6bb0e;
  border: 1px solid #91a6bb33;
  border-radius: 10px;
  place-items: center;
  width: 46px;
  height: 46px;
  display: grid;
}

.signal-category-card .signal-category-rule {
  color: var(--brand);
  font-family: var(--font-data);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: .62rem;
  font-weight: 800;
}

.signal-category-card h3 {
  overflow-wrap: anywhere;
  letter-spacing: 0;
  margin: 0 0 16px;
  font-size: 1.52rem;
  line-height: 1.08;
}

.signal-category-card p {
  color: #91a6bb;
  margin: 0;
  line-height: 1.62;
}

.signal-category-card ul {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.signal-category-card li {
  color: #b3c4d3;
  font-family: var(--font-data);
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid #263e52;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: .56rem;
}

.coverage {
  background: #07111d;
  border-block: 1px solid #91a6bb2e;
  padding-block: 128px 72px;
}

.coverage-heading {
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 64px;
  margin-bottom: 82px;
  display: grid;
}

.coverage-heading h2 {
  max-width: 870px;
}

.coverage-list {
  border-top: 1px solid #22394d;
}

.coverage-row {
  border-bottom: 1px solid #22394d;
  grid-template-columns: 68px 64px minmax(260px, .85fr) minmax(330px, 1fr);
  align-items: start;
  gap: 28px;
  padding-block: 40px;
  transition: background .18s, padding-inline .18s;
  display: grid;
}

.coverage-row:hover {
  background: #0a1826;
  margin-inline: -18px;
  padding-inline: 18px;
}

.coverage-number {
  color: #4c667d;
  font-family: var(--font-data);
  font-size: .7rem;
}

.coverage-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  background: #1ed6f20d;
  border: 1px solid #1ed6f23d;
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.coverage-title-block > p {
  color: var(--brand);
  font-family: var(--font-data);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 13px;
  font-size: .64rem;
}

.coverage-title-block h3 {
  letter-spacing: -.04em;
  max-width: 390px;
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

.coverage-detail > p {
  color: #91a6bb;
  margin: 0;
  line-height: 1.67;
}

.coverage-detail ul {
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.coverage-detail li {
  color: #b3c4d3;
  font-family: var(--font-data);
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid #263e52;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .58rem;
}

.pipeline {
  grid-template-columns: minmax(310px, .7fr) minmax(500px, 1.3fr);
  gap: clamp(60px, 10vw, 150px);
  padding-block: 148px;
  display: grid;
}

.pipeline-intro {
  align-self: start;
}

.pipeline-intro .section-index {
  margin-bottom: 72px;
}

.pipeline-intro h2 {
  font-size: clamp(2.8rem, 4.7vw, 5rem);
}

.pipeline-intro > p {
  max-width: 500px;
  margin-top: 30px;
}

.pipeline-list {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-list li {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 50px 1fr;
  align-items: start;
  gap: 18px;
  padding-block: 29px;
  display: grid;
  position: relative;
}

.pipeline-count {
  color: #50677c;
  font-family: var(--font-data);
  font-size: .65rem;
}

.pipeline-icon {
  color: #001017;
  background: var(--brand);
  border-radius: 10px;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid;
}

.pipeline-list h3 {
  letter-spacing: -.03em;
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.pipeline-list p {
  color: #8ea4b9;
  max-width: 570px;
  margin: 0;
  line-height: 1.62;
}

.pipeline-arrow {
  z-index: 2;
  color: #5a738a;
  background: var(--page-bg);
  border-radius: 50%;
  padding: 3px;
  position: absolute;
  top: 100%;
  left: 70px;
  transform: translateY(-50%)rotate(90deg);
}

.signal-callout {
  background: var(--brand);
  border-block: 1px solid #1ed6f24d;
}

.callout-inner {
  color: #001017;
  grid-template-columns: 84px minmax(0, 1fr) 310px;
  align-items: center;
  gap: 46px;
  min-height: 310px;
  display: grid;
}

.callout-icon {
  border: 1px solid #0010174d;
  border-radius: 50%;
  place-items: center;
  width: 76px;
  height: 76px;
  display: grid;
}

.callout-inner .section-kicker {
  color: #07546a;
}

.callout-inner h2 {
  max-width: 790px;
  font-size: clamp(2.4rem, 4.3vw, 4.7rem);
}

.callout-inner > p {
  color: #064c5f;
  border-left: 1px solid #0010174d;
  padding-left: 28px;
  font-weight: 650;
}

.responsible-use {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(50px, 10vw, 150px);
  padding-block: 140px;
  display: grid;
}

.risk-badge {
  border-top: 2px solid var(--danger);
  color: #ffb3b3;
  height: fit-content;
  font-family: var(--font-data);
  letter-spacing: .08em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
}

.risk-copy h2 {
  max-width: 900px;
  margin-bottom: 38px;
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
}

.risk-copy p {
  max-width: 980px;
  margin-top: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050c14;
}

.footer-main {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  min-height: 170px;
  display: flex;
}

.footer-brand img {
  object-fit: contain;
  width: 70px;
  height: 70px;
}

.footer-brand span {
  gap: 4px;
  display: grid;
}

.footer-brand strong {
  letter-spacing: -.04em;
  font-size: 1.28rem;
}

.footer-brand small {
  color: #758da3;
}

.footer-legal {
  border-top: 1px solid var(--line);
  color: #60788e;
  min-height: 70px;
  font-family: var(--font-data);
  letter-spacing: .02em;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: .61rem;
  display: flex;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:last-child {
  color: var(--brand);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes statusPulse {
  0%, 100% {
    opacity: .55;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
    min-height: auto;
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
  }

  .radar-stage {
    max-width: 530px;
  }

  .detection-card {
    width: 190px;
  }

  .detection-1 {
    top: 5%;
    right: -7%;
  }

  .detection-2 {
    bottom: 5%;
    right: -7%;
  }

  .detection-3 {
    bottom: 2%;
    left: -4%;
  }

  .pulse-track {
    justify-content: flex-start;
    overflow: hidden;
  }

  .thesis {
    grid-template-columns: 100px 1fr;
  }

  .thesis-note {
    grid-column: 2;
  }

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

  .coverage-row {
    grid-template-columns: 50px 52px 1fr;
  }

  .coverage-detail {
    grid-column: 3;
  }

  .callout-inner {
    grid-template-columns: 70px 1fr;
    padding-block: 70px;
  }

  .callout-inner > p {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .section-shell, .site-header {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    min-height: 76px;
  }

  .header-status {
    padding: 8px 10px;
    font-size: .58rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 116px 16px 50px;
  }

  .hero-copy {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(3.25rem, 12vw, 6.2rem);
  }

  .hero-lead {
    max-width: 680px;
  }

  .radar-stage {
    justify-self: center;
    width: min(88vw, 620px);
  }

  .pulse-strip {
    grid-template-columns: 1fr;
  }

  .pulse-label {
    justify-content: center;
    min-height: 48px;
    padding-inline: 20px;
  }

  .pulse-track {
    min-height: 54px;
    padding-inline: 18px;
  }

  .thesis, .signal-categories-heading, .coverage-heading, .pipeline, .responsible-use {
    grid-template-columns: 1fr;
  }

  .thesis {
    gap: 30px;
    padding-block: 100px;
  }

  .thesis-note {
    grid-column: 1;
    padding-left: 22px;
  }

  .signal-categories {
    gap: 42px;
    padding-block: 0 96px;
  }

  .signal-categories-heading {
    gap: 28px;
  }

  .signal-categories-heading h2 {
    font-size: 4rem;
  }

  .signal-categories-heading > p {
    max-width: 620px;
  }

  .coverage {
    padding-block: 96px 52px;
  }

  .coverage-heading {
    gap: 28px;
    margin-bottom: 56px;
  }

  .coverage-heading > p {
    max-width: 580px;
  }

  .pipeline {
    gap: 60px;
    padding-block: 110px;
  }

  .pipeline-intro .section-index {
    margin-bottom: 42px;
  }

  .responsible-use {
    gap: 50px;
    padding-block: 100px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: .98rem;
  }

  .header-status {
    background: none;
    border: 0;
    padding-inline: 0;
    font-size: 0;
  }

  .header-status span {
    width: 9px;
    height: 9px;
  }

  .hero {
    gap: 38px;
    padding-top: 104px;
  }

  .kicker {
    margin-bottom: 16px;
    font-size: .61rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.5vw, 4.45rem);
    line-height: .91;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: .96rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-top: 25px;
  }

  .button {
    width: 100%;
  }

  .hero-actions p {
    justify-content: center;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
    margin-top: 30px;
  }

  .hero-proof div:nth-child(3) {
    border-top: 1px solid #91a6bb2e;
    border-left: 0;
    grid-column: 1 / -1;
    padding-top: 16px;
    padding-left: 0;
  }

  .radar-stage {
    width: 92vw;
    margin-left: -2vw;
  }

  .radar-label-top {
    width: 184px;
    padding: 9px 10px;
    font-size: .52rem;
    top: 0;
    left: 0;
  }

  .radar-label-top strong {
    font-size: .62rem;
  }

  .detection-card {
    width: 168px;
    padding: 9px 10px;
  }

  .detection-card small {
    font-size: .54rem;
  }

  .detection-1 {
    top: 1%;
    right: -1%;
  }

  .detection-2 {
    bottom: 2%;
    right: -1%;
  }

  .detection-3 {
    bottom: -2%;
    left: 0;
  }

  .pulse-track {
    scrollbar-width: none;
    gap: 20px;
    overflow-x: auto;
  }

  .thesis h2, .coverage-heading h2, .pipeline-intro h2, .risk-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .signal-categories-heading h2 {
    font-size: 2.9rem;
  }

  .signal-category-grid {
    grid-template-columns: 1fr;
  }

  .signal-category-card {
    min-height: auto;
    padding: 24px;
  }

  .signal-category-card:hover {
    box-shadow: none;
    transform: none;
  }

  .coverage-row {
    grid-template-columns: 40px 1fr;
    gap: 18px;
    padding-block: 34px;
  }

  .coverage-row:hover {
    background: none;
    margin-inline: 0;
    padding-inline: 0;
  }

  .coverage-icon {
    grid-area: 1 / 2;
  }

  .coverage-title-block, .coverage-detail {
    grid-column: 2;
  }

  .coverage-title-block h3 {
    font-size: 1.75rem;
  }

  .pipeline-list li {
    grid-template-columns: 36px 42px 1fr;
    gap: 12px;
  }

  .pipeline-icon {
    width: 38px;
    height: 38px;
  }

  .pipeline-arrow {
    left: 54px;
  }

  .callout-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 72px;
  }

  .callout-inner > p {
    border-top: 1px solid #0010174d;
    border-left: 0;
    grid-column: 1;
    padding-top: 22px;
    padding-left: 0;
  }

  .callout-inner h2 {
    font-size: 2.65rem;
  }

  .footer-main, .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    justify-content: center;
    padding-block: 50px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-legal {
    justify-content: center;
    padding-block: 24px;
    line-height: 1.6;
  }
}

.turnstile-widget {
  min-height: 65px;
}

.primary, .ghost {
  cursor: pointer;
  border: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.preview-access-page {
  background: linear-gradient(#112235 0%, #0d1c2d 54%, #0c1928 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 32px 20px;
  display: flex;
}

.preview-access-shell {
  width: min(100%, 430px);
}

.preview-access-card {
  color: #f4fbff;
  background: linear-gradient(#08121ef0, #08101beb);
  border: 1px solid #a7d4ff24;
  border-radius: 24px;
  gap: 16px;
  padding: 24px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 64px #03091185;
}

.preview-access-form {
  gap: 14px;
  display: grid;
}

.preview-access-field {
  gap: 10px;
  display: grid;
}

.preview-access-field input {
  color: #f4fbff;
  width: 100%;
  min-height: 60px;
  font: inherit;
  background: #091827d6;
  border: 1px solid #91c5ff29;
  border-radius: 16px;
  padding: 0 20px;
  font-size: 1.05rem;
  font-weight: 500;
}

.preview-access-field input::placeholder {
  color: #e2eeff6b;
}

.preview-access-field input:focus {
  border-color: #9dd2ff8c;
  outline: none;
  box-shadow: 0 0 0 4px #6fc6ff1f;
}

.preview-access-actions {
  display: grid;
}

.preview-access-actions .primary, .preview-access-actions .ghost {
  min-height: 54px;
}

.preview-access-actions .primary {
  color: #112235;
  background: #d9e9ff;
  border-radius: 16px;
  width: 100%;
  padding: 0 18px;
  font-size: 1rem;
  font-weight: 700;
}

.preview-access-error, .preview-access-success {
  border-radius: 16px;
  padding: 12px 14px;
  font-size: .94rem;
}

.preview-access-error {
  color: #ffd6de;
  background: #ff6f8a1f;
  border: 1px solid #ff96ac29;
}

.preview-access-success {
  color: #d7ffe7;
  background: #6fffb326;
}

@media (max-width: 720px) {
  .preview-access-page {
    padding: 20px 14px;
  }

  .preview-access-shell {
    width: min(100%, 380px);
  }

  .preview-access-card {
    padding: 18px;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/