/* ============================================================
   DojoGate Landing Page — CSS (2026 redesign, v2 "techy")
   Brand: Deep Navy #0A2540 | Flow Teal #00C4B4 | White
   Type:  Inter (display/body) + JetBrains Mono (labels/data)
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-deep: #071B30;
  --navy-panel: #0D2C4D;
  --teal: #00C4B4;
  --teal-bright: #2FE6D6;
  --teal-hover: #00AA9C;
  --teal-ink: #007D73;          /* accessible teal for text on white */
  --teal-tint: rgba(0, 196, 180, 0.10);
  --teal-glow: rgba(0, 196, 180, 0.35);
  --ink: #33475C;               /* body text, navy-biased */
  --ink-soft: #5E7183;
  --ground: #FFFFFF;
  --tint: #F4F8FA;
  --line: #DFE8EE;
  --line-navy: rgba(255, 255, 255, 0.12);
  --text-on-navy: #C9D8E6;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 2px 8px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 2px 6px rgba(10, 37, 64, 0.07), 0 12px 32px rgba(10, 37, 64, 0.09);
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 102px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
  background: var(--ground);
  overflow-x: clip;
}

img, svg { max-width: 100%; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; }

a { color: var(--teal-ink); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--teal);
  color: var(--navy-deep);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 12px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease,
              transform .18s ease, box-shadow .18s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 0 0 0 rgba(0, 196, 180, 0);
}
.btn-primary:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--teal-glow);
}

.btn-ghost { color: var(--text-on-navy); }
.btn-ghost:hover { color: #fff; }

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { border-color: var(--teal-ink); color: var(--teal-ink); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--teal); color: var(--teal-bright); }

.btn-sm { padding: 10px 18px; font-size: 14.5px; }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Nav (floating glass pill) ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  pointer-events: none;
}

.nav .container { max-width: 1140px; }

.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  background: rgba(7, 27, 48, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 38px rgba(2, 12, 24, 0.42),
    0 0 0 1px rgba(0, 196, 180, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-right: auto;
}

.nav-icon { width: 26px; height: 26px; color: var(--teal); flex: none; }

.nav-wordmark, .footer-wordmark {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.nav .wm-dojo, .footer .wm-dojo { color: #fff; }
.nav .wm-gate, .footer .wm-gate { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > a {
  color: var(--text-on-navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 999px;
  transition: color .15s ease, background-color .15s ease;
}
.nav-links > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: 6px; }
.nav-actions .btn-sm { border-radius: 999px; }
.nav-mobile-actions { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero (dark, glowing) ---------- */

.hero {
  position: relative;
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 78%, #0B2946 100%);
  overflow: hidden;
  padding: 168px 0 104px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(900px at 30% 10%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px at 30% 10%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 420px at 74% 22%, rgba(0, 196, 180, 0.16), transparent 70%),
    radial-gradient(520px 380px at 8% 88%, rgba(0, 196, 180, 0.07), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }

.hero-eyebrow, .section-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: "▸ ";
  color: var(--teal-bright);
}

/* Hero eyebrow is a pill badge with a live dot */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 196, 180, 0.3);
  border-radius: 999px;
  background: rgba(0, 196, 180, 0.07);
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: livePulse 2s ease-in-out infinite;
}

.hero-headline {
  color: #fff;
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 66px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
  margin-bottom: 24px;
}

.hero-headline .hl {
  background: linear-gradient(92deg, var(--teal) 0%, var(--teal-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 17.5px;
  color: var(--text-on-navy);
  max-width: 54ch;
  text-wrap: pretty;
  margin-bottom: 30px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-micro {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(201, 216, 230, 0.75);
}

/* Cursor-tracked glow (position driven by pointermove in script.js) */
.hero-cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 196, 180, 0.10), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: transform;
}
.hero:hover .hero-cursor-glow { opacity: 1; }

/* Product mock window — a scene: orbit ring behind, glass chips floating around */

.hero-visual { position: relative; }

.hero-scene { position: relative; }

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118%;
  aspect-ratio: 1;
  margin: 0;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 196, 180, 0.14);
  border-radius: 50%;
  animation: orbitSpin 46s linear infinite;
  pointer-events: none;
}
.orbit-dot {
  position: absolute;
  top: -3.5px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 12px var(--teal-glow), 0 0 4px var(--teal-bright);
}
.orbit-dot.d2 { top: auto; bottom: 6%; left: 8%; width: 5px; height: 5px; opacity: .8; }
.orbit-dot.d3 { top: 30%; left: auto; right: -2px; width: 4px; height: 4px; opacity: .6; }

@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 44, 77, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #DFF7F4;
  box-shadow: 0 10px 30px rgba(2, 12, 24, 0.45), 0 0 20px rgba(0, 196, 180, 0.08);
  white-space: nowrap;
}
.chip-dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 8px var(--teal-glow);
  animation: livePulse 2.4s ease-in-out infinite;
}
.fc1 { top: -30px; left: -30px; animation: chipFloat 6s ease-in-out .4s infinite; }
.fc2 { top: 58%; right: -30px; animation: chipFloat 7.5s ease-in-out 1.2s infinite; }
.fc3 { bottom: -16px; left: 10%; animation: chipFloat 6.8s ease-in-out 2s infinite; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.mock-window {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 44, 77, 0.92), rgba(10, 37, 64, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  box-shadow:
    0 40px 90px rgba(2, 12, 24, 0.55),
    0 0 0 1px rgba(0, 196, 180, 0.06),
    0 0 64px rgba(0, 196, 180, 0.10);
  overflow: hidden;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-navy);
}
.tb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.tb-url {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(201, 216, 230, 0.65);
}
.tb-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: livePulse 2s ease-in-out infinite;
}

.mock-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 16px 0;
  padding: 10px 14px;
  background: rgba(0, 196, 180, 0.10);
  border: 1px solid rgba(0, 196, 180, 0.35);
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #DFF7F4;
  animation: toastLoop 14s ease-in-out .7s infinite both;
}
.mock-toast b { color: var(--teal-bright); font-weight: 600; }
.toast-pulse {
  width: 8px; height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 0 var(--teal-glow);
  animation: ping 1.8s ease-out infinite .9s;
}

.mock-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 16px;
}

.mb-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(201, 216, 230, 0.6);
  margin-bottom: 9px;
}
.mb-head b { color: var(--teal-bright); }

.mb-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 9px 11px;
  margin-bottom: 8px;
  transition: transform .18s ease, border-color .18s ease;
}
.mb-card:hover { transform: translateY(-1px); border-color: rgba(0, 196, 180, 0.4); }
.mb-card strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}
.mb-card span { font-size: 11px; color: rgba(201, 216, 230, 0.65); }
.mb-card.hl {
  border-color: rgba(0, 196, 180, 0.55);
  background: rgba(0, 196, 180, 0.10);
  box-shadow: 0 0 18px rgba(0, 196, 180, 0.12);
}
.mb-card.arriving { animation: cardLoop 14s ease-in-out .7s infinite both; }

.mock-cmd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 16px 10px;
  padding: 11px 14px;
  background: rgba(2, 14, 27, 0.55);
  border: 1px solid var(--line-navy);
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(223, 247, 244, 0.9);
}
.cmd-tag {
  flex: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy-deep);
  background: var(--teal);
  border-radius: 5px;
  padding: 3px 7px;
}
.cmd-typing {
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
  border-right: 2px solid var(--teal-bright);
  max-width: 0;
  animation:
    typeLoop 14s linear .7s infinite both,
    caret 1s step-end infinite;
}

.mock-result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 16px;
  padding: 9px 14px;
  background: rgba(0, 196, 180, 0.08);
  border: 1px dashed rgba(0, 196, 180, 0.35);
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #DFF7F4;
  animation: resultLoop 14s ease-in-out .7s infinite both;
}
.result-check { color: var(--teal-bright); font-weight: 600; }

/* One 14s master timeline — toast in → lead card lands → AI line types →
   result chip confirms → everything resets and replays. */
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 var(--teal-glow); }
  70% { box-shadow: 0 0 0 9px rgba(0, 196, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 196, 180, 0); }
}
@keyframes toastLoop {
  0% { opacity: 0; transform: translateY(-10px) scale(.97); }
  4%, 86% { opacity: 1; transform: none; }
  92%, 100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes cardLoop {
  0%, 8% { opacity: 0; transform: translateY(-8px) scale(.95); }
  13%, 86% { opacity: 1; transform: none; }
  92%, 100% { opacity: 0; }
}
@keyframes typeLoop {
  0%, 16% { max-width: 0; animation-timing-function: steps(38, end); }
  38%, 88% { max-width: 100%; }
  94%, 100% { max-width: 0; }
}
@keyframes resultLoop {
  0%, 40% { opacity: 0; transform: translateY(4px); }
  46%, 86% { opacity: 1; transform: none; }
  92%, 100% { opacity: 0; }
}
@keyframes caret { 0%, 100% { border-color: var(--teal-bright); } 50% { border-color: transparent; } }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Hero entrance + ambient float (transform/opacity only) */
.hero-content > * { animation: riseIn .6s ease both; }
.hero-content .hero-eyebrow { animation-delay: .05s; }
.hero-content .hero-headline { animation-delay: .12s; }
.hero-content .hero-sub { animation-delay: .2s; }
.hero-content .hero-ctas { animation-delay: .3s; }
.hero-content .hero-micro { animation-delay: .38s; }
.hero-visual { animation: riseIn .7s ease .25s both; }
.hero-visual .mock-window { animation: floatY 7s ease-in-out 2.5s infinite; }

/* ---------- Editions ---------- */

.editions {
  position: relative;
  padding: 96px 0;
  background: var(--ground);
  overflow: hidden;
}
.editions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 420px at 88% -10%, rgba(0, 196, 180, 0.06), transparent 70%);
  pointer-events: none;
}
.editions .container { position: relative; }

.edition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.edition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 34px 34px 30px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.edition-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.edition-card:hover {
  border-color: rgba(0, 196, 180, 0.5);
  box-shadow: var(--shadow-md), 0 8px 40px rgba(0, 196, 180, 0.10);
  transform: translateY(-3px);
}
.edition-card:hover::before { transform: scaleX(1); }

.edition-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal-ink);
  margin-bottom: 6px;
  transition: box-shadow .2s ease;
}
.edition-card:hover .edition-icon { box-shadow: 0 0 0 5px rgba(0, 196, 180, 0.08); }
.edition-icon svg { width: 26px; height: 26px; }

.edition-kicker {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-ink);
}

.edition-card h2 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.edition-desc { color: var(--ink-soft); font-size: 15.5px; }

.edition-link {
  margin-top: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--teal-ink);
}
.edition-card:hover .edition-link { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Shared section scaffolding ---------- */

section { scroll-margin-top: 96px; }

.vertical, .platform, .pricing, .faq { padding: 96px 0; }

.vertical-head { max-width: 720px; margin-bottom: 56px; }

.section-title {
  font-weight: 700;
  font-size: clamp(27px, 3.8vw, 36px);
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin-bottom: 16px;
}

.section-sub { font-size: 17px; color: var(--ink-soft); }

.section-eyebrow.light { color: var(--teal-bright); }
.section-title.light { color: #fff; }
.light-sub { color: var(--text-on-navy); }

/* ---------- Vertical sections ---------- */

.vertical.re { background: var(--tint); }

.vertical.mfg {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.vertical.mfg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(800px at 85% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(800px at 85% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}
.vertical.mfg .container { position: relative; }

.vertical-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.vertical-features { display: flex; flex-direction: column; gap: 26px; }

.vfeature { padding-left: 18px; border-left: 2px solid var(--line); transition: border-color .2s ease; }
.vfeature:hover { border-left-color: var(--teal); }
.vfeature h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.vfeature p { color: var(--ink-soft); font-size: 15.5px; max-width: 54ch; }

.vfeature.light { border-left-color: var(--line-navy); }
.vfeature.light:hover { border-left-color: var(--teal); }
.vfeature.light h3 { color: #fff; }
.vfeature.light p { color: var(--text-on-navy); }

/* UI mocks (light sections) */

.ui-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.vertical.mfg .ui-mock {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(2, 12, 24, 0.5), 0 0 48px rgba(0, 196, 180, 0.08);
}

.ui-mock-bar {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--tint);
}

.ui-mock-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.ui-mock-foot {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--tint);
}
.ui-mock-foot strong { color: var(--teal-ink); }

.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}

.kanban-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.kanban-head b { color: var(--teal-ink); font-variant-numeric: tabular-nums; }

.kanban-card {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease;
}
.kanban-card:hover { transform: translateY(-1px); border-color: var(--teal); }
.kanban-card strong { display: block; font-size: 13.5px; color: var(--navy); }
.kanban-card span { font-size: 12px; color: var(--ink-soft); }
.kanban-card.hl { border-color: var(--teal); background: rgba(0, 196, 180, 0.04); }

.mock-rows { padding: 8px 0; }

.mock-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.mock-row:last-child { border-bottom: none; }
.mock-row .num { font-family: var(--font-mono); font-size: 13.5px; font-weight: 600; color: var(--navy); }
.mock-row.hl { background: var(--teal-tint); }
.mock-row.hl .num { color: var(--teal-ink); }

.roadmap-strip {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 32px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}
.roadmap-strip p { font-size: 15.5px; color: var(--ink-soft); max-width: 62ch; }
.roadmap-strip strong { color: var(--navy); }
.roadmap-strip .btn { flex: none; }

/* ---------- Platform ---------- */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pfeature {
  position: relative;
  padding: 26px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ground);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pfeature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.pfeature:hover {
  border-color: rgba(0, 196, 180, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pfeature:hover::before { transform: scaleX(1); }
.pfeature h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.pfeature p { font-size: 14.5px; color: var(--ink-soft); }

.why-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.why-item h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.why-item h3::before { content: "// "; color: var(--teal); font-family: var(--font-mono); font-weight: 600; font-size: 15px; }
.why-item p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Pricing ---------- */

.pricing { background: var(--tint); }
.pricing .vertical-head { text-align: center; margin-left: auto; margin-right: auto; }

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}

.toggle-label { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.toggle-label.active { color: var(--navy); }

.save-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-ink);
  background: var(--teal-tint);
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 4px;
}

.toggle { position: relative; display: inline-block; width: 46px; height: 26px; }
.toggle input { opacity: 0; width: 100%; height: 100%; position: absolute; cursor: pointer; z-index: 1; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 999px;
  transition: background-color .18s ease;
}
.toggle-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease;
}
.toggle input:checked + .toggle-track { background: var(--teal); }
.toggle input:checked + .toggle-track::after { transform: translateX(20px); }
.toggle input:focus-visible + .toggle-track { outline: 3px solid var(--teal); outline-offset: 2px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-md), 0 8px 40px rgba(0, 196, 180, 0.12);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--teal);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-tier {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-ink);
  margin-bottom: 2px;
}

.price-for { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }

.price-amount { display: flex; align-items: baseline; gap: 4px; }

.price-strike {
  font-size: 17px;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-right: 6px;
  font-variant-numeric: tabular-nums;
}

.price-dollar { font-size: 22px; font-weight: 700; color: var(--navy); }

.price-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.price-period { font-size: 15px; color: var(--ink-soft); }

.price-promo-note { font-size: 13px; color: var(--ink-soft); margin: 4px 0 20px; }

.price-features {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
}
.price-features li {
  padding: 7px 0 7px 26px;
  font-size: 14.5px;
  position: relative;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--teal-ink);
  border-bottom: 2.5px solid var(--teal-ink);
  transform: rotate(-45deg) translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */

.contact {
  position: relative;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 96px 0;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 400px at 18% 30%, rgba(0, 196, 180, 0.09), transparent 70%);
  pointer-events: none;
}
.contact .container { position: relative; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-copy .section-title { margin-bottom: 14px; }
.contact-copy .light-sub { font-size: 16.5px; }

.contact-points {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-points li {
  color: var(--text-on-navy);
  font-size: 15.5px;
  padding-left: 28px;
  position: relative;
}
.contact-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg) translateY(-2px);
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(2, 12, 24, 0.45);
  padding: 34px;
}

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.optional { font-weight: 400; color: var(--ink-soft); }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 196, 180, 0.14);
}
.contact-form textarea { resize: vertical; }

.form-fine { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }

.form-success { text-align: center; padding: 28px 6px; }
.form-success h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); font-size: 15px; }

/* ---------- FAQ ---------- */

.faq .vertical-head { margin-bottom: 40px; }

.faq-list { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 36px 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--teal-ink);
  border-bottom: 2px solid var(--teal-ink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .18s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item p {
  padding: 0 0 22px;
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  background: var(--navy-deep);
  text-align: center;
  padding: 96px 0;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 340px at 50% 0%, rgba(0, 196, 180, 0.12), transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
  text-wrap: balance;
}
.final-desc { color: var(--text-on-navy); font-size: 17px; margin-bottom: 34px; }
.final-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-navy);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 44px;
}

.footer-logo-row { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer-logo { width: 26px; height: 26px; color: var(--teal); }

.footer-tagline { color: var(--text-on-navy); font-size: 14px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--text-on-navy);
  text-decoration: none;
  font-size: 14.5px;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--teal-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line-navy);
}
.footer-bottom p { color: var(--text-on-navy); font-size: 13.5px; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--text-on-navy); font-size: 13.5px; text-decoration: none; }
.footer-legal a:hover { color: var(--teal-bright); }

/* ---------- Ticker ---------- */

.ticker {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-navy);
  border-bottom: 1px solid var(--line-navy);
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 38s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-half {
  display: flex;
  gap: 56px;
  padding-right: 56px;
}

.tk {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(201, 216, 230, 0.55);
  white-space: nowrap;
}
.tk b { color: var(--teal); font-weight: 600; margin-right: 7px; }

@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ---------- Creed ---------- */

.creed {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.creed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 340px at 50% 45%, rgba(0, 196, 180, 0.11), transparent 70%);
  pointer-events: none;
}
.creed-inner { position: relative; }

.creed-line {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: #fff;
}
.creed-accent {
  background: linear-gradient(92deg, var(--teal) 0%, var(--teal-bright) 45%, #7DF3E8 55%, var(--teal) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientDrift 7s ease-in-out infinite alternate;
}
@keyframes gradientDrift {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}
.creed-gloss {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(201, 216, 230, 0.7);
}

/* ---------- Scroll reveals (js-anim gates hiding to JS+IO browsers) ---------- */

.js-anim [data-anim] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.js-anim [data-anim].visible { opacity: 1; transform: none; }

.js-anim .edition-grid > [data-anim]:nth-child(2) { transition-delay: .1s; }
.js-anim .vertical-features > [data-anim]:nth-child(2) { transition-delay: .07s; }
.js-anim .vertical-features > [data-anim]:nth-child(3) { transition-delay: .14s; }
.js-anim .vertical-features > [data-anim]:nth-child(4) { transition-delay: .21s; }
.js-anim .vertical-features > [data-anim]:nth-child(5) { transition-delay: .28s; }
.js-anim .platform-grid > [data-anim]:nth-child(3n+2) { transition-delay: .08s; }
.js-anim .platform-grid > [data-anim]:nth-child(3n) { transition-delay: .16s; }
.js-anim .why-strip > [data-anim]:nth-child(2) { transition-delay: .1s; }
.js-anim .why-strip > [data-anim]:nth-child(3) { transition-delay: .2s; }
.js-anim .pricing-grid > [data-anim]:nth-child(2) { transition-delay: .1s; }
.js-anim .pricing-grid > [data-anim]:nth-child(3) { transition-delay: .2s; }
.js-anim .creed-line:nth-child(2) { transition-delay: .18s; }
.js-anim .creed-line:nth-child(3) { transition-delay: .36s; }
.js-anim .creed-gloss { transition-delay: .6s; }

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .edition-card, .pfeature, .price-card, .kanban-card, .mb-card { transition: none; }
  .live-dot, .toast-pulse, .mock-toast, .mb-card.arriving, .cmd-typing, .mock-result,
  .ticker-track, .hero-content > *, .hero-visual, .hero-visual .mock-window,
  .orbit-ring, .float-chip, .chip-dot, .eyebrow-dot, .creed-accent {
    animation: none;
  }
  .cmd-typing { max-width: 100%; border-right-color: transparent; }
  .mock-toast, .mb-card.arriving, .mock-result { opacity: 1; transform: none; }
  .js-anim [data-anim] { opacity: 1; transform: none; transition: none; }
  .hero-cursor-glow { display: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { max-width: 620px; margin: 0 auto; width: 100%; }
}

@media (max-width: 960px) {
  .vertical-grid,
  .vertical-grid.reverse { grid-template-columns: 1fr; gap: 44px; }
  .vertical-grid.reverse .vertical-visual { order: 2; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .why-strip { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: calc(100% - 2px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(6, 22, 39, 0.98);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(2, 12, 24, 0.5);
    padding: 12px 14px 16px;
    display: none;
    pointer-events: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px 14px; font-size: 15.5px; border-radius: 12px; }
  .nav-mobile-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  .nav-mobile-actions .btn { flex: 1; text-align: center; border-radius: 999px; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 8px 0 16px; height: 54px; }

  .hero { padding: 128px 0 64px; }
  .editions { padding: 64px 0; }
  .fc1 { left: 4px; top: -16px; }
  .fc2 { display: none; }
  .fc3 { left: 4px; bottom: -16px; }
  .edition-grid { grid-template-columns: 1fr; }
  .vertical, .platform, .pricing, .faq, .contact, .final-cta { padding: 64px 0; }
  .creed { padding: 72px 0; }
  .roadmap-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .platform-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .kanban { grid-template-columns: 1fr; }
  .mock-board { grid-template-columns: 1fr 1fr; }
  .mock-board .mb-col:last-child { display: none; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ==================== SEE IT IN ACTION ==================== */
.demos { background: var(--navy-deep); color: #fff; padding: 96px 0; }
.demos .section-eyebrow { color: var(--teal-bright); }
.demos .section-title { color: #fff; }
.demos-sub { color: var(--text-on-navy); margin-top: 10px; font-size: 1rem; }
.demo-stage { margin-top: 42px; }
.demo-player { position: relative; max-width: 1060px; margin: 0 auto 16px; border-radius: var(--radius-lg); overflow: hidden; background: #071b30; box-shadow: 0 30px 70px rgba(0,0,0,0.45); border: 1px solid var(--line-navy); }
.demo-player video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #071b30; }
.demo-player.is-vertical video { object-fit: contain; }
.demo-sound { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--teal); color: #04231f; font-weight: 700; border: none; border-radius: 999px; padding: 13px 22px; font-size: 0.95rem; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 30px var(--teal-glow); transition: transform 0.15s ease; }
.demo-sound:hover { transform: translate(-50%, -50%) scale(1.04); }
.demo-sound .ds-ic { font-size: 0.8rem; }
.demo-player.is-playing .demo-sound { display: none; }
.demo-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 1060px; margin: 0 auto; }
.demo-tab { display: flex; align-items: center; gap: 12px; text-align: left; background: rgba(255,255,255,0.03); border: 1px solid var(--line-navy); border-radius: 12px; padding: 12px 14px; color: #fff; cursor: pointer; font-family: inherit; transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease; }
.demo-tab:hover { background: rgba(255,255,255,0.06); transform: translateX(2px); }
.demo-tab.is-active { background: var(--teal-tint); border-color: var(--teal); }
.demo-tab .dt-n { font-family: var(--font-mono); font-size: 0.72rem; color: var(--teal-bright); flex: 0 0 auto; }
.demo-tab .dt-b { display: flex; flex-direction: column; gap: 1px; }
.demo-tab .dt-t { font-weight: 600; font-size: 0.9rem; }
.demo-tab .dt-d { font-size: 0.76rem; color: var(--text-on-navy); }
@media (max-width: 820px) {
  .demos { padding: 72px 0; }
  .demo-stage { gap: 18px; }
  .demo-list { grid-template-columns: 1fr 1fr; }
  .demo-tab { min-width: 0; }
}
