:root {
  color-scheme: dark;
  --ink: #03070a;
  --panel: rgba(7, 18, 23, 0.82);
  --panel-strong: #071217;
  --line: rgba(118, 214, 215, 0.18);
  --line-hot: rgba(92, 246, 232, 0.52);
  --text: #eaf9f7;
  --muted: #8ba3a8;
  --cyan: #5cf6e8;
  --violet: #9d82ff;
  --magenta: #ff4fd8;
  --success: #78f7b5;
  --danger: #ff7d8c;
  --radius: 20px;
  --page: min(1240px, calc(100vw - 48px));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 73% 18%, rgba(60, 129, 158, 0.15), transparent 34rem),
    radial-gradient(circle at 12% 72%, rgba(104, 76, 191, 0.12), transparent 31rem),
    linear-gradient(180deg, #020507 0%, #051014 46%, #020709 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(98, 193, 198, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 193, 198, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #00100e;
  background: var(--cyan);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.page-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.field-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(92, 246, 232, 0.08);
  border-radius: 50%;
}

.field-orbit::before,
.field-orbit::after {
  position: absolute;
  content: "";
  background: rgba(92, 246, 232, 0.16);
}

.field-orbit::before { inset: 50% 0 auto; height: 1px; }
.field-orbit::after { inset: 0 auto 0 50%; width: 1px; }
.field-orbit-one { width: 720px; height: 720px; top: -220px; right: -260px; }
.field-orbit-two { width: 440px; height: 440px; bottom: -220px; left: -150px; border-color: rgba(157, 130, 255, 0.08); }

.field-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: var(--page);
  min-height: 96px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; }
.brand-wordmark { width: 122px; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 32px); }
.site-nav a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.social-link {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: #789196;
  border: 1px solid rgba(92, 246, 232, 0.2);
  background: rgba(92, 246, 232, 0.035);
  border-radius: 8px;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.social-link svg { width: 15px; height: 15px; fill: currentColor; }
.social-link:hover, .social-link:focus-visible {
  color: var(--cyan);
  border-color: rgba(92, 246, 232, 0.7);
  background: rgba(92, 246, 232, 0.09);
  box-shadow: 0 0 18px rgba(92, 246, 232, 0.1);
}
.header-social-link { width: 44px; height: 44px; }
.site-nav .nav-cta {
  padding: 12px 16px;
  color: var(--cyan);
  border: 1px solid rgba(92, 246, 232, 0.28);
  background: rgba(92, 246, 232, 0.05);
  border-radius: 8px;
}
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { border-color: var(--cyan); background: rgba(92, 246, 232, 0.11); }

.hero {
  display: grid;
  width: var(--page);
  min-height: min(790px, calc(100svh - 96px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: 72px 0 76px;
}

.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.eyebrow {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(92, 246, 232, 0.08), 0 0 18px rgba(92, 246, 232, 0.62);
  animation: status-pulse 2.8s ease-in-out infinite;
}

h1, h2, h3 { margin-top: 0; text-wrap: balance; }
h1 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: clamp(3.3rem, 6.8vw, 6.5rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.91;
}
h1 span {
  color: transparent;
  background: linear-gradient(94deg, var(--cyan) 2%, #b5fff8 46%, var(--violet) 76%, var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
}

.performance-marker {
  margin-left: 0.12em;
  color: var(--cyan);
  font-size: 0.56em;
  line-height: 0;
  vertical-align: super;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: #a6babf;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.72;
}

.hero-actions { display: flex; margin-top: 38px; align-items: center; gap: 25px; }
.primary-button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  color: #03100f;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(92, 246, 232, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.primary-button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.44), transparent 65%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}
.primary-button:hover::after { transform: translateX(120%); }
.primary-button:hover, .primary-button:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(92, 246, 232, 0.2); }
.primary-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: square; stroke-width: 1.6; }
.text-link { color: #b9c9cc; font-size: 0.83rem; font-weight: 650; letter-spacing: 0.04em; text-underline-offset: 5px; }
.text-link:hover, .text-link:focus-visible { color: var(--cyan); }

.signal-strip {
  display: grid;
  max-width: 610px;
  margin: 56px 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signal-strip div { display: flex; min-width: 0; padding: 17px 14px 17px 0; align-items: center; gap: 10px; }
.signal-strip div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.signal-strip dt { color: var(--cyan); font-family: ui-monospace, monospace; font-size: 0.62rem; }
.signal-strip dd { min-width: 0; margin: 0; color: #839b9f; font-size: 0.67rem; font-weight: 720; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }

@media (min-width: 641px) {
  .signal-strip {
    position: relative;
    max-width: 640px;
    grid-template-columns: minmax(0, 1.38fr) repeat(2, minmax(0, 1fr));
    overflow: hidden;
    background:
      linear-gradient(100deg, rgba(92, 246, 232, 0.055), transparent 42%),
      rgba(4, 14, 18, 0.72);
    border: 1px solid rgba(118, 214, 215, 0.16);
    border-radius: 12px;
    box-shadow:
      inset 0 1px rgba(255, 255, 255, 0.025),
      0 18px 42px rgba(0, 0, 0, 0.12);
  }

  .signal-strip::before {
    position: absolute;
    inset: 0 12% auto;
    z-index: 2;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(92, 246, 232, 0.54), rgba(157, 130, 255, 0.34), transparent);
    pointer-events: none;
  }

  .signal-strip div {
    --signal-accent: var(--cyan);
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 82px;
    padding: 16px 18px 15px;
    align-content: center;
    align-items: start;
    gap: 8px;
  }

  .signal-strip div:nth-child(2) { --signal-accent: var(--violet); }
  .signal-strip div:nth-child(3) { --signal-accent: #6fee9c; }

  .signal-strip div + div {
    padding-left: 18px;
    border-left: 1px solid rgba(118, 214, 215, 0.12);
  }

  .signal-strip div::after {
    position: absolute;
    bottom: 0;
    left: 18px;
    width: 32px;
    height: 2px;
    content: "";
    background: var(--signal-accent);
    box-shadow: 0 0 10px color-mix(in srgb, var(--signal-accent) 56%, transparent);
  }

  .signal-strip dt {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    color: var(--signal-accent);
    font-size: 0.58rem;
    font-weight: 740;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .signal-strip dt::before {
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    content: "";
    background: var(--signal-accent);
    box-shadow: 0 0 8px color-mix(in srgb, var(--signal-accent) 70%, transparent);
    transform: rotate(45deg);
  }

  .signal-strip dd {
    max-width: 100%;
    color: #c7d6d9;
    font-size: clamp(0.66rem, 0.78vw, 0.76rem);
    font-weight: 760;
    letter-spacing: 0.055em;
    line-height: 1.3;
    overflow-wrap: normal;
    text-wrap: balance;
    white-space: normal;
  }
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: clamp(500px, 58vw, 680px);
  isolation: isolate;
}
.hero-visual::before {
  position: absolute;
  inset: 14% 5% 7%;
  z-index: -1;
  content: "";
  background: radial-gradient(ellipse at center, rgba(66, 171, 190, 0.2), rgba(6, 15, 20, 0) 66%);
  filter: blur(8px);
}
.visual-reticle { position: absolute; inset: 4% 0 6%; }
.visual-reticle::before {
  position: absolute;
  right: 5%;
  bottom: 0;
  left: 5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(92, 246, 232, 0.58) 18%, rgba(157, 130, 255, 0.42) 82%, transparent);
  box-shadow: 0 0 12px rgba(92, 246, 232, 0.2);
}
.kiko-presence { position: absolute; inset: -5% -1% 6%; z-index: 2; overflow: visible; }
.kiko-presence video,
.kiko-presence img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 18px rgba(61, 156, 210, 0.16)) drop-shadow(0 0 44px rgba(92, 246, 232, 0.08));
  pointer-events: none;
}
.kiko-presence video { z-index: 2; opacity: 0; }
.kiko-presence img { z-index: 1; }
.kiko-presence[data-media-state="playing"] video { opacity: 1; }
.kiko-presence[data-media-state="playing"] img { display: none; }
.kiko-presence[data-media-state="fallback"] video { display: none; }

.mode-orbit {
  position: absolute;
  top: 7%;
  left: 50%;
  z-index: 4;
  width: min(84%, 475px);
  height: 220px;
  transform: translateX(-50%);
  pointer-events: none;
}
.mode-icon {
  position: absolute;
  width: clamp(64px, 6.5vw, 88px);
  height: auto;
  filter: drop-shadow(0 0 7px rgba(92, 246, 232, 0.42));
  animation: mode-float 5.8s ease-in-out infinite;
}
.mode-defensive { top: 42%; left: 2%; filter: drop-shadow(0 0 8px rgba(255, 187, 72, 0.42)); animation-delay: -1.8s; }
.mode-balanced { top: 0; left: 50%; transform: translateX(-50%); filter: drop-shadow(0 0 8px rgba(157, 130, 255, 0.45)); animation-name: mode-float-centered; }
.mode-yield { top: 42%; right: 2%; filter: drop-shadow(0 0 8px rgba(118, 255, 83, 0.4)); animation-delay: -3.6s; }
.kiko-speech {
  position: absolute;
  bottom: 12%;
  left: 0;
  z-index: 6;
  width: min(286px, 52%);
  min-height: 104px;
  padding: 14px 16px 15px;
  color: #dceced;
  background:
    linear-gradient(135deg, rgba(8, 25, 31, 0.96), rgba(7, 15, 24, 0.91)),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(92, 246, 232, 0.035) 5px 6px);
  border: 1px solid rgba(92, 246, 232, 0.42);
  border-radius: 12px 12px 12px 3px;
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.34), inset 0 0 24px rgba(92, 246, 232, 0.035), 0 0 20px rgba(92, 246, 232, 0.08);
  backdrop-filter: blur(10px);
  transform-origin: left bottom;
  transition: opacity 220ms ease, transform 220ms ease;
}
.kiko-speech::before {
  position: absolute;
  right: -14px;
  bottom: 17px;
  width: 23px;
  height: 18px;
  content: "";
  background: linear-gradient(135deg, transparent 49%, rgba(92, 246, 232, 0.42) 50% 53%, rgba(7, 16, 23, 0.96) 54%);
  clip-path: polygon(0 0, 100% 100%, 0 74%);
}
.kiko-speech::after {
  position: absolute;
  top: -1px;
  left: 14px;
  width: 52px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--violet), transparent);
  box-shadow: 0 0 9px rgba(92, 246, 232, 0.5);
}
.kiko-speech[data-typing="pending"] { opacity: 0; transform: translateY(8px) scale(0.98); }
.kiko-speech[data-typing="typing"],
.kiko-speech[data-typing="complete"] { opacity: 1; transform: none; }
.kiko-speech-status {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-family: ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kiko-speech-status i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(92, 246, 232, 0.75);
}
.kiko-speech-copy { margin: 0; font-size: 0.82rem; font-weight: 640; line-height: 1.5; letter-spacing: 0.005em; }
.kiko-speech-copy::after {
  display: inline-block;
  width: 0.5em;
  height: 1em;
  margin-left: 3px;
  content: "";
  vertical-align: -0.12em;
  background: var(--cyan);
  box-shadow: 0 0 7px rgba(92, 246, 232, 0.58);
  animation: speech-cursor 680ms steps(1, end) infinite;
}
.kiko-speech[data-typing="complete"] .kiko-speech-copy::after { visibility: hidden; animation: none; }
.visual-caption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 4; display: flex; margin: 0; justify-content: center; align-items: center; gap: 9px; color: #557277; font-family: ui-monospace, monospace; font-size: 0.58rem; letter-spacing: 0.14em; }
.visual-caption span { width: 28px; height: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.system-section, .launch-section { width: var(--page); margin: 0 auto; }
.system-section { padding: 120px 0; border-top: 1px solid var(--line); }
.section-heading { display: grid; margin-bottom: 48px; grid-template-columns: 1fr 1fr; column-gap: 60px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .launch-copy h2 { margin-bottom: 0; font-size: clamp(2.3rem, 4vw, 4.1rem); letter-spacing: -0.05em; line-height: 1.02; }
.section-heading > p:last-child { max-width: 520px; margin: 4px 0 0; align-self: end; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.capability-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.capability-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(11, 28, 34, 0.82), rgba(4, 11, 15, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  grid-column: span 2;
}
.capability-card:nth-child(n + 4) { min-height: 290px; grid-column: span 3; }
.capability-card::after { position: absolute; right: -45px; bottom: -58px; width: 145px; height: 145px; content: ""; border: 1px solid rgba(92, 246, 232, 0.08); border-radius: 50%; box-shadow: 0 0 0 26px rgba(92,246,232,.018), 0 0 0 53px rgba(92,246,232,.012); }
.capability-card:hover { transform: translateY(-4px); border-color: rgba(92, 246, 232, 0.34); background: linear-gradient(145deg, rgba(13, 34, 40, 0.9), rgba(4, 12, 16, 0.86)); }
.card-index { color: #5c7b7f; font-family: ui-monospace, monospace; font-size: 0.58rem; letter-spacing: 0.14em; }
.capability-icon { display: block; width: 62px; height: 62px; margin: 43px 0 30px; fill: none; stroke: var(--cyan); stroke-width: 1.2; filter: drop-shadow(0 0 7px rgba(92, 246, 232, .28)); }
.capability-card:nth-child(2) .capability-icon { stroke: #b9aaff; filter: drop-shadow(0 0 7px rgba(157, 130, 255, .28)); }
.capability-card:nth-child(3) .capability-icon { stroke: #ff88e4; filter: drop-shadow(0 0 7px rgba(255, 79, 216, .23)); }
.capability-card:nth-child(4) .capability-icon { stroke: #78f7b5; filter: drop-shadow(0 0 7px rgba(120, 247, 181, .24)); }
.capability-card:nth-child(5) .capability-icon { stroke: #7dc8ff; filter: drop-shadow(0 0 7px rgba(125, 200, 255, .24)); }
.capability-card h3 { margin-bottom: 13px; font-size: 1.25rem; letter-spacing: -0.025em; }
.capability-card p { max-width: 33ch; margin: 0; color: var(--muted); font-size: 0.91rem; line-height: 1.68; }

.launch-section { padding: 32px 0 120px; }
.launch-panel {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  background:
    linear-gradient(110deg, rgba(10, 31, 37, 0.96), rgba(8, 15, 30, 0.94)),
    var(--panel-strong);
  border: 1px solid rgba(92, 246, 232, 0.24);
  border-radius: 26px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.26);
}
.launch-panel::before { position: absolute; top: -190px; right: -170px; width: 520px; height: 520px; content: ""; border: 1px solid rgba(92, 246, 232, 0.09); border-radius: 50%; box-shadow: 0 0 0 56px rgba(92,246,232,.018), 0 0 0 112px rgba(157,130,255,.015); }
.launch-copy, .launch-form { position: relative; z-index: 1; min-width: 0; }
.launch-copy > p:last-child { max-width: 44ch; margin: 22px 0 0; color: var(--muted); line-height: 1.72; }
.launch-form label { display: block; margin-bottom: 10px; color: #a8bcbf; font-size: 0.72rem; font-weight: 720; letter-spacing: 0.11em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.form-row input { width: 100%; min-width: 0; min-height: 58px; padding: 0 18px; color: var(--text); background: rgba(1, 7, 10, 0.78); border: 1px solid rgba(118, 214, 215, 0.24); border-radius: 10px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.form-row input::placeholder { color: #516a70; }
.form-row input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(92, 246, 232, 0.1), 0 0 28px rgba(92, 246, 232, 0.08); }
.form-row input[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255, 125, 140, 0.08); }
.form-row button { position: relative; min-width: 132px; min-height: 58px; padding: 0 19px; overflow: hidden; color: #02110e; background: var(--cyan); border: 0; border-radius: 10px; cursor: pointer; font-size: 0.76rem; font-weight: 820; letter-spacing: 0.08em; text-transform: uppercase; }
.form-row button:disabled { cursor: wait; opacity: 0.72; }
.button-signal { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: rgba(255,255,255,.8); transform: scaleX(0); transform-origin: left; }
.launch-form[data-submitting="true"] .button-signal { animation: submit-signal 1.2s ease-in-out infinite; }
.form-note, .form-status { margin: 12px 0 0; font-size: 0.72rem; line-height: 1.55; }
.form-note { color: #5f777c; }
.form-status { min-height: 1.2em; color: var(--success); font-weight: 650; }
.form-status[data-state="error"] { color: var(--danger); }
.bot-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }

.site-footer { display: grid; width: var(--page); min-height: 150px; margin: 0 auto; padding: 22px 0; grid-template-columns: 1fr auto auto; align-items: center; column-gap: 32px; row-gap: 16px; color: #526d72; border-top: 1px solid var(--line); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.performance-note { width: min(760px, 100%); margin: 0; grid-column: 1 / -1; color: #769095; font-size: 0.72rem; letter-spacing: 0.02em; line-height: 1.55; overflow-wrap: anywhere; text-transform: none; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: ui-monospace, monospace; }
.footer-brand img { width: 25px; height: 25px; opacity: 0.7; }
.footer-links { display: flex; align-items: center; gap: 20px; }
.footer-social-link { width: 36px; height: 36px; }
.footer-links button { padding: 5px 0; color: #6f898e; background: transparent; border: 0; cursor: pointer; font-size: inherit; letter-spacing: inherit; text-transform: inherit; }
.footer-links button:hover, .footer-links button:focus-visible { color: var(--cyan); }
.site-footer > p:last-child { margin: 0; }

.info-dialog { width: min(560px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 0; color: var(--text); background: transparent; border: 0; overflow: visible; }
.info-dialog::backdrop { background: rgba(0, 5, 8, 0.8); backdrop-filter: blur(7px); }
.dialog-shell { position: relative; padding: 34px; overflow: auto; background: #081419; border: 1px solid rgba(92, 246, 232, 0.28); border-radius: 18px; box-shadow: 0 28px 100px rgba(0,0,0,.56); }
.dialog-shell h2 { margin-bottom: 18px; font-size: 2rem; letter-spacing: -0.04em; }
.dialog-shell > p:not(.eyebrow) { color: var(--muted); line-height: 1.72; }
.dialog-close { position: absolute; top: 13px; right: 13px; display: grid; width: 38px; height: 38px; place-items: center; color: #95acb0; background: rgba(92,246,232,.04); border: 1px solid var(--line); border-radius: 9px; cursor: pointer; font-size: 1.4rem; }
.dialog-close:hover, .dialog-close:focus-visible { color: var(--cyan); border-color: var(--cyan); }

.confirmation-page { min-height: 100svh; }
.confirmation-header { position: relative; }
.confirmation-home-link {
  padding: 11px 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.confirmation-home-link:hover, .confirmation-home-link:focus-visible { color: var(--cyan); border-color: var(--line-hot); }
.confirmation-main {
  display: grid;
  width: var(--page);
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: 56px 0 90px;
  place-items: center;
}
.confirmation-panel {
  position: relative;
  width: min(680px, 100%);
  padding: clamp(34px, 7vw, 76px);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, rgba(9, 28, 34, 0.96), rgba(5, 11, 20, 0.96));
  border: 1px solid rgba(92, 246, 232, 0.26);
  border-radius: 24px;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.38), 0 0 70px rgba(92, 246, 232, 0.04);
}
.confirmation-panel::before {
  position: absolute;
  inset: -45% -20% auto;
  height: 420px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(92, 246, 232, 0.12), transparent 66%);
}
.confirmation-glyph {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 30px;
  place-items: center;
  border: 1px solid rgba(92, 246, 232, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(92, 246, 232, 0.025), 0 0 42px rgba(92, 246, 232, 0.12);
}
.confirmation-glyph img { width: 47px; height: 47px; }
.confirmation-panel .eyebrow { position: relative; justify-content: center; }
.confirmation-panel h1 { position: relative; margin-bottom: 22px; font-size: clamp(2.5rem, 7vw, 4.7rem); line-height: 0.96; }
.confirmation-copy { position: relative; max-width: 48ch; margin: 0 auto; color: #a6babf; line-height: 1.7; }
.confirmation-button { margin-top: 34px; cursor: pointer; }
.confirmation-button:disabled { cursor: wait; opacity: 0.72; transform: none; }
.confirmation-status { min-height: 3.2em; margin: 20px auto 0; color: var(--success); font-size: 0.82rem; font-weight: 680; line-height: 1.55; }
.confirmation-status[data-state="error"], .confirmation-status[data-state="invalid"] { color: var(--danger); }

[data-enter] { opacity: 0; transform: translateY(18px); }
.is-ready [data-enter] { animation: enter 700ms cubic-bezier(.2,.8,.2,1) forwards; animation-delay: calc(var(--enter-order, 1) * 70ms); }
[data-enter="1"] { --enter-order: 1; } [data-enter="2"] { --enter-order: 2; } [data-enter="3"] { --enter-order: 3; }
[data-enter="4"] { --enter-order: 1; } [data-enter="5"] { --enter-order: 2; } [data-enter="6"] { --enter-order: 3; }
[data-enter="7"] { --enter-order: 4; } [data-enter="8"] { --enter-order: 5; }
[data-enter="9"] { --enter-order: 6; } [data-enter="10"] { --enter-order: 2; }

@keyframes enter { to { opacity: 1; transform: translateY(0); } }
@keyframes status-pulse { 0%, 100% { opacity: .66; transform: scale(.86); } 50% { opacity: 1; transform: scale(1); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes mode-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes mode-float-centered { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -7px); } }
@keyframes submit-signal { 0% { transform: scaleX(0); } 52% { transform: scaleX(1); } 100% { transform: translateX(100%) scaleX(.2); } }
@keyframes speech-cursor { 0%, 52% { opacity: 1; } 53%, 100% { opacity: 0; } }

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 58px; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .signal-strip { margin-inline: auto; }
  .hero-visual { width: min(620px, 100%); height: 610px; margin: -18px auto 0; }
  .mode-defensive { left: 5%; }
  .mode-yield { right: 4%; }
  .section-heading { grid-template-columns: 1fr; text-align: center; }
  .section-heading > p:last-child { margin: 22px auto 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card, .capability-card:nth-child(n + 4) { min-height: 0; grid-column: auto; }
  .capability-card p { max-width: 52ch; }
  .launch-panel { grid-template-columns: 1fr; text-align: center; }
  .launch-copy > p:last-child { margin-inline: auto; }
  .launch-form { width: min(620px, 100%); margin: 0 auto; text-align: left; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 28px); --radius: 16px; }
  html { scroll-padding-top: 84px; }
  .site-header { min-height: 78px; }
  .brand { gap: 9px; }
  .brand-mark { width: 31px; height: 31px; }
  .brand-wordmark { width: 92px; }
  .site-nav > a:first-child { display: none; }
  .header-social-link { width: 42px; height: 42px; }
  .site-nav .nav-cta { padding: 10px 11px; font-size: 0.61rem; }
  .hero { gap: 8px; padding: 48px 0 58px; }
  .eyebrow { margin-bottom: 18px; font-size: 0.62rem; letter-spacing: .12em; }
  h1 { margin-bottom: 22px; font-size: clamp(2.75rem, 14.5vw, 4rem); line-height: .94; }
  .hero-lede { font-size: 1rem; line-height: 1.62; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .primary-button { width: 100%; max-width: 380px; }
  .signal-strip { width: 100%; margin-top: 40px; }
  .signal-strip div { display: grid; padding: 13px 7px; justify-items: center; gap: 5px; }
  .signal-strip div + div { padding-left: 7px; }
  .signal-strip dd { font-size: 0.53rem; letter-spacing: .06em; white-space: normal; }
  .hero-visual { height: 500px; margin-top: -15px; }
  .visual-reticle { inset: 7% 0; }
  .kiko-presence { inset: -2% 0 7%; }
  .kiko-speech { bottom: 10%; left: 50%; width: min(320px, calc(100% - 24px)); min-height: 96px; transform-origin: center bottom; transform: translateX(-50%); }
  .kiko-speech[data-typing="pending"] { transform: translate(-50%, 8px) scale(0.98); }
  .kiko-speech[data-typing="typing"], .kiko-speech[data-typing="complete"] { transform: translateX(-50%); }
  .kiko-speech::before { top: -15px; right: 24%; bottom: auto; transform: rotate(-90deg); }
  .mode-orbit { top: 1%; width: min(100%, 360px); height: 170px; }
  .mode-icon { width: clamp(56px, 17vw, 70px); }
  .mode-defensive { top: 44%; left: 2%; }
  .mode-balanced { top: 0; }
  .mode-yield { top: 44%; right: 2%; }
  .system-section { padding: 86px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .launch-copy h2 { font-size: 2.35rem; }
  .capability-card { padding: 23px; }
  .capability-icon { width: 52px; height: 52px; margin: 32px 0 24px; }
  .launch-section { padding: 4px 0 82px; }
  .launch-panel { padding: 32px 20px; gap: 34px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row button { width: 100%; }
  .site-footer { min-height: 240px; padding: 28px 0; grid-template-columns: 1fr; justify-items: center; gap: 18px; text-align: center; }
  .performance-note { grid-row: 1; }
  .footer-brand { grid-row: 2; }
  .footer-links { grid-row: 3; }
  .site-footer > p:last-child { grid-row: 4; }
  .dialog-shell { padding: 30px 24px 24px; }
  .confirmation-main { min-height: calc(100svh - 78px); padding: 28px 0 64px; }
  .confirmation-panel { padding: 38px 22px; border-radius: 18px; }
  .confirmation-glyph { width: 70px; height: 70px; }
  .confirmation-glyph img { width: 40px; height: 40px; }
  .confirmation-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
  [data-enter] { opacity: 1; transform: none; }
}
