/* ============================================================
   Codex Security / Daybreak — concept landing page
   Design language: "daybreak over the attack surface"
   ============================================================ */

:root {
  --bg: #05080e;
  --bg-2: #080d16;
  --panel: #0b1220;
  --panel-2: #0e1626;
  --ink: #eef3fa;
  --ink-2: #c3cedd;
  --muted: #8a98ad;
  --faint: #5b6a80;
  --hairline: rgba(148, 178, 220, 0.14);
  --hairline-strong: rgba(148, 178, 220, 0.28);
  --blue: #5ea8ff;
  --blue-bright: #8fc4ff;
  --red: #ff6a4d;
  --red-bright: #ff9d7a;
  --green: #4ade80;
  --amber: #fbbf24;
  --accent: var(--blue);
  --radius: 14px;
  --font-display: "Inter Tight", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --maxw: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(94, 168, 255, 0.35); color: #fff; }

img { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 200;
  background: var(--blue); color: #04101f; font-weight: 600;
  padding: 10px 16px; border-radius: 8px; text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }

h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.9rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h3 { font-size: 1.12rem; font-weight: 600; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(94, 168, 255, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(94, 168, 255, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(94, 168, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 168, 255, 0); }
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 1.05rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 550; font-size: 0.95rem;
  padding: 11px 22px; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease-out), background 0.18s, border-color 0.18s, box-shadow 0.25s, color 0.18s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 8px 16px; font-size: 0.87rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--ink); color: #05080e;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 8px 30px rgba(94, 168, 255, 0.25);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--hairline-strong); color: var(--ink);
  background: rgba(148, 178, 220, 0.05);
}
.btn-outline:hover {
  border-color: var(--blue); color: var(--blue-bright);
  background: rgba(94, 168, 255, 0.08);
  transform: translateY(-1px);
}

.btn-ghost { color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); background: rgba(148,178,220,0.09); }

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--blue-bright); text-decoration: none; font-weight: 550; font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: gap 0.2s var(--ease-out), color 0.15s;
}
.text-link:hover { gap: 11px; color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 8, 14, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 16px 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink); font-weight: 600;
  font-family: var(--font-display);
}
.brand-mark { flex: none; }
.brand-sep { font-style: normal; opacity: 0.35; margin: 0 6px; font-weight: 400; }
.brand-sub { color: var(--muted); font-weight: 500; }

.site-nav { display: flex; gap: 4px; margin-left: auto; }
.site-nav a {
  text-decoration: none; color: var(--ink-2); font-size: 0.9rem; font-weight: 500;
  padding: 8px 13px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: var(--ink); background: rgba(148,178,220,0.08); }
.site-nav a.active { color: var(--blue-bright); }

.header-actions { display: flex; gap: 10px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--hairline-strong);
  border-radius: 9px; width: 40px; height: 40px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 17px; height: 1.8px; background: var(--ink);
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.9px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 20px 22px;
  min-height: calc(100dvh - 72px);
  background: rgba(5, 8, 14, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.mobile-nav a {
  text-decoration: none; color: var(--ink-2); font-weight: 500;
  padding: 12px 8px; border-radius: 8px; font-size: 1.02rem;
}
.mobile-nav a:hover { color: var(--ink); background: rgba(148,178,220,0.07); }
.mobile-nav-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 20px; }
.mobile-nav-actions .btn { flex: 1; justify-content: center; }
.mobile-nav-actions .btn-ghost { border: 1px solid var(--hairline-strong); }
.mobile-nav-actions .btn-primary { color: #05080e; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 90px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
.hero-glow {
  position: absolute; left: 50%; bottom: -32vh; transform: translateX(-50%);
  width: 130vw; height: 60vh; pointer-events: none;
  background: radial-gradient(ellipse 55% 90% at 50% 100%,
    rgba(94, 168, 255, 0.22) 0%,
    rgba(94, 168, 255, 0.07) 45%,
    transparent 75%);
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero-sub {
  color: var(--ink-2); font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 640px; margin: 26px auto 0;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; margin-top: 38px;
  flex-wrap: wrap;
}
.hero-status {
  margin: 46px auto 0;
  display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-2);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 10px 22px;
  background: rgba(8, 13, 22, 0.55);
  backdrop-filter: blur(6px);
}
.hs-item { display: inline-flex; align-items: center; gap: 7px; }
.hs-item span { color: var(--ink-2); }
.hs-sep { width: 1px; height: 14px; background: var(--hairline-strong); }
.hs-dot { width: 6px; height: 6px; border-radius: 50%; }
.hs-dot-blue { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.hs-dot-green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.hs-dot-amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--faint); z-index: 2; transition: color 0.2s;
}
.scroll-cue:hover { color: var(--ink-2); }
.cue-dot { animation: cue 2s infinite var(--ease-out); }
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- logos marquee ---------- */
.logos {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 44px 0 38px;
  background: var(--bg-2);
}
.logos-label {
  text-align: center; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
  margin-bottom: 30px;
}
.marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 72px;
  list-style: none; width: max-content;
  padding-right: 72px;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-track img {
  height: 22px; width: auto;
  filter: invert(0.72) saturate(0);
  opacity: 0.75;
  transition: opacity 0.2s, filter 0.2s;
}
.marquee-track li:hover img { opacity: 1; filter: invert(1) saturate(0); }

/* ---------- generic section ---------- */
.section { padding: 130px 24px; max-width: var(--maxw); margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 20px; }

/* ---------- models ---------- */
.model-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
}
.model-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
  outline-offset: 4px;
}
.model-card:hover, .model-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--hairline-strong);
}
.model-blue:hover, .model-blue:focus-visible { box-shadow: 0 24px 70px -20px rgba(94, 168, 255, 0.28); }
.model-red:hover, .model-red:focus-visible { box-shadow: 0 24px 70px -20px rgba(255, 106, 77, 0.28); }
.model-art { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.model-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.model-card:hover .model-art img, .model-card:focus-visible .model-art img { transform: scale(1.045); }
.model-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--panel) 100%);
}
.model-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(5, 8, 14, 0.6); backdrop-filter: blur(6px);
  border: 1px solid var(--hairline-strong);
}
.model-blue .model-tag { color: var(--blue-bright); }
.model-red .model-tag { color: var(--red-bright); }
.model-body { padding: 6px 30px 30px; }
.model-body h3 { font-size: 1.6rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.model-line { color: var(--ink-2); font-size: 0.98rem; }
.model-list {
  list-style: none; margin: 20px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.model-list li {
  position: relative; padding-left: 24px;
  color: var(--muted); font-size: 0.92rem;
}
.model-list li::before {
  content: ""; position: absolute; left: 2px; top: 0.52em;
  width: 9px; height: 5px;
  border-left: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}
.model-blue { --accent: var(--blue); }
.model-red { --accent: var(--red); }
.model-blue .text-link { color: var(--blue-bright); }
.model-red .text-link { color: var(--red-bright); }
.model-blue .text-link:hover, .model-red .text-link:hover { color: #fff; }
.models-note {
  text-align: center; margin-top: 34px;
  color: var(--faint); font-size: 0.86rem; font-family: var(--font-mono);
}

/* ---------- stats ---------- */
.stats { border-top: 1px solid var(--hairline); }
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  text-align: center;
}
.stat {
  padding: 40px 24px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, transparent 100%);
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
}
.stat:hover { border-color: var(--hairline-strong); transform: translateY(-3px); }
.stat dt {
  order: 2; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-top: 14px;
}
.stat dd {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(120deg, #fff 30%, var(--blue-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-note { color: var(--faint); font-size: 0.84rem; margin-top: 14px; }
.stat { display: flex; flex-direction: column; }

/* ---------- demo / terminal ---------- */
.demo-shell {
  max-width: 860px; margin: 0 auto;
}
.demo-stages {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  list-style: none; margin-bottom: 22px;
}
.demo-stages li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--hairline);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.stage-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--faint);
  transition: background 0.3s, box-shadow 0.3s;
}
.demo-stages li.active {
  color: var(--blue-bright); border-color: rgba(94, 168, 255, 0.45);
  background: rgba(94, 168, 255, 0.07);
}
.demo-stages li.active .stage-dot { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.demo-stages li.done { color: var(--green); border-color: rgba(74, 222, 128, 0.3); }
.demo-stages li.done .stage-dot { background: var(--green); box-shadow: 0 0 6px rgba(74,222,128,.7); }

.terminal {
  position: relative;
  background: #070b13;
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(94,168,255,0.05);
}
.terminal-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: rgba(148, 178, 220, 0.05);
  border-bottom: 1px solid var(--hairline);
}
.t-light { width: 10px; height: 10px; border-radius: 50%; background: rgba(148,178,220,0.25); }
.t-light:first-child { background: rgba(255, 106, 77, 0.5); }
.t-light:nth-child(2) { background: rgba(251, 191, 36, 0.45); }
.t-light:nth-child(3) { background: rgba(74, 222, 128, 0.45); }
.t-title {
  margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint);
}
.terminal-body {
  font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.75;
  padding: 20px 22px;
  min-height: 380px;
  white-space: pre-wrap; word-break: break-word;
  color: var(--ink-2);
}
.terminal-idle {
  position: absolute; inset: 46px 0 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: rgba(7, 11, 19, 0.88);
  color: var(--muted); font-family: var(--font-mono); font-size: 0.85rem;
  transition: opacity 0.3s;
}
.terminal-idle.hidden { opacity: 0; pointer-events: none; }
.demo-controls {
  display: flex; justify-content: center; gap: 10px; margin-top: 20px;
}

/* terminal line colors */
.tl-cmd { color: #fff; }
.tl-dim { color: var(--faint); }
.tl-ok { color: var(--green); }
.tl-warn { color: var(--amber); }
.tl-crit { color: var(--red-bright); }
.tl-info { color: var(--blue-bright); }
.tl-diff-add { color: var(--green); background: rgba(74, 222, 128, 0.07); }
.tl-diff-del { color: var(--red-bright); background: rgba(255, 106, 77, 0.07); }
.t-caret {
  display: inline-block; width: 8px; height: 15px;
  background: var(--blue-bright); vertical-align: -2px;
  animation: caret 1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

/* ---------- deploy ---------- */
.deploy { border-top: 1px solid var(--hairline); }
.deploy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.deploy-card {
  position: relative;
  background: var(--panel); border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 13px;
  transition: transform 0.3s var(--ease-out), border-color 0.25s, box-shadow 0.3s;
}
.deploy-card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: 0 20px 50px -22px rgba(94, 168, 255, 0.22);
}
.deploy-num { width: 30px; height: 30px; opacity: 0.9; filter: invert(0.9); }
.deploy-card h3 { font-size: 1.18rem; }
.deploy-card p { color: var(--muted); font-size: 0.92rem; }
.deploy-best { font-family: var(--font-mono); font-size: 0.74rem !important; color: var(--faint) !important; letter-spacing: 0.02em; }
.deploy-card .btn { margin-top: auto; align-self: flex-start; }
.cli-copy {
  margin-top: auto;
  display: flex; align-items: center; gap: 8px;
  background: #070b13; border: 1px solid var(--hairline);
  border-radius: 9px; padding: 9px 10px 9px 13px;
}
.cli-copy code {
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-2);
  overflow-x: auto; white-space: nowrap; flex: 1;
  scrollbar-width: none;
}
.cli-copy code::-webkit-scrollbar { display: none; }
.copy-btn {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(148,178,220,0.08); color: var(--ink-2);
  border: 1px solid var(--hairline); border-radius: 7px;
  font-family: var(--font-mono); font-size: 0.7rem;
  padding: 6px 10px; cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.copy-btn:hover { color: var(--ink); border-color: var(--hairline-strong); }
.copy-btn .icon-check { display: none; color: var(--green); }
.copy-btn.copied .icon-check { display: block; }
.copy-btn.copied .icon-copy { display: none; }
.copy-btn.copied { color: var(--green); border-color: rgba(74,222,128,0.4); }

/* ---------- workflows ---------- */
.workflows { border-top: 1px solid var(--hairline); }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wf-card {
  background: var(--panel); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s var(--ease-out), border-color 0.25s, background 0.3s;
  cursor: default;
}
.wf-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 168, 255, 0.4);
  background: var(--panel-2);
}
.wf-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(94, 168, 255, 0.08);
  border: 1px solid rgba(94, 168, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  transition: transform 0.3s var(--ease-out), background 0.25s;
}
.wf-card:hover .wf-icon { transform: translateY(-2px) rotate(-3deg); background: rgba(94,168,255,0.14); }
.wf-icon img { width: 22px; height: 22px; }
.wf-card h3 { font-size: 1.08rem; }
.wf-meta {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint);
}
.wf-card > p:not(.wf-meta) { color: var(--muted); font-size: 0.9rem; flex: 1; }
.wf-link {
  font-size: 0.87rem; font-weight: 550; color: var(--blue-bright);
  display: inline-flex; align-items: center; gap: 6px;
}
.wf-link::after {
  content: "→"; transition: transform 0.2s var(--ease-out);
}
.wf-card:hover .wf-link::after { transform: translateX(4px); }

/* ---------- trusted / quote ---------- */
.trusted {
  border-top: 1px solid var(--hairline);
  max-width: none;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(94, 168, 255, 0.06), transparent 70%),
    var(--bg-2);
  padding-left: 24px; padding-right: 24px;
}
.trusted-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.trusted-inner .eyebrow { margin-bottom: 20px; }
.quote { margin-top: 48px; }
.quote-mark { color: var(--blue); margin: 0 auto 22px; }
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.42; font-weight: 500; letter-spacing: -0.015em;
  color: var(--ink);
}
.quote footer { margin-top: 26px; display: flex; flex-direction: column; gap: 3px; }
.quote-name { font-weight: 600; }
.quote-role { color: var(--muted); font-size: 0.9rem; font-family: var(--font-mono); }

/* ---------- get started ---------- */
.gs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gs-card {
  position: relative;
  background: var(--panel); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 30px 26px 26px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s var(--ease-out), border-color 0.25s, box-shadow 0.3s;
  overflow: hidden;
}
.gs-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  opacity: 0; transition: opacity 0.3s;
}
.gs-card:hover, .gs-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: 0 22px 60px -24px rgba(94, 168, 255, 0.25);
}
.gs-card:hover::before, .gs-card:focus-visible::before { opacity: 1; }
.gs-kicker {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue-bright);
}
.gs-card h3 { font-size: 1.25rem; }
.gs-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.gs-arrow {
  color: var(--faint); align-self: flex-end;
  transition: color 0.2s, transform 0.25s var(--ease-out);
}
.gs-card:hover .gs-arrow, .gs-card:focus-visible .gs-arrow {
  color: var(--blue-bright); transform: translateX(5px);
}

/* ---------- faq ---------- */
.faq { max-width: 800px; }
.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item h3 { font-size: 1rem; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: none; cursor: pointer;
  color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; font-weight: 550;
  text-align: left; padding: 22px 4px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--blue-bright); }
.faq-chev { flex: none; color: var(--faint); transition: transform 0.3s var(--ease-out), color 0.2s; }
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); color: var(--blue-bright); }
.faq-a { overflow: hidden; }
.faq-a p {
  color: var(--muted); font-size: 0.95rem; padding: 0 4px 24px;
  max-width: 640px;
}

/* ---------- final CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  text-align: center;
  padding: 160px 24px 150px;
  border-top: 1px solid var(--hairline);
}
.cta-horizon {
  position: absolute; left: 50%; bottom: -38vh; transform: translateX(-50%);
  width: 150vw; height: 85vh; pointer-events: none;
  background: radial-gradient(ellipse 46% 80% at 50% 100%,
    rgba(94, 168, 255, 0.3) 0%,
    rgba(255, 106, 77, 0.1) 42%,
    transparent 72%);
}
.cta-horizon::after {
  content: ""; position: absolute; left: 10%; right: 10%; bottom: 37.9vh; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,196,255,0.55) 50%, transparent);
}
.cta-inner { position: relative; z-index: 2; }
.cta p { color: var(--muted); margin-top: 20px; font-size: 1.05rem; }
.cta .hero-ctas { margin-top: 36px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg-2);
  padding: 70px 24px 34px;
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
}
.footer-tag { color: var(--faint); font-size: 0.88rem; margin-top: 16px; max-width: 260px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h3 {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color 0.15s;
  width: fit-content;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: var(--maxw); margin: 54px auto 0;
  padding-top: 24px; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  color: var(--faint); font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--faint); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: var(--ink-2); }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .deploy-grid, .workflow-grid, .gs-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .model-grid { grid-template-columns: 1fr; }
  .deploy-grid, .workflow-grid, .gs-grid { grid-template-columns: 1fr; }
  .section { padding: 90px 20px; }
  .hero { padding: 120px 20px 80px; }
  .hero-status { gap: 10px; padding: 10px 16px; }
  .hs-sep { display: none; }
  .terminal-body { font-size: 0.72rem; min-height: 340px; padding: 16px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .marquee-track { gap: 48px; padding-right: 48px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}
