/* ==========================================================================
   JingleDeck — marketing design system
   Public pages only. The signed-in portal uses styles.css / account.css.
   Fonts are system-native (no external requests, no GDPR exposure).
   ========================================================================== */

:root {
  /* surfaces */
  --bg: #08090c;
  --bg-soft: #0b0d12;
  --surface: #101319;
  --surface-2: #151922;
  --surface-3: #1b2030;

  /* ink */
  --text: #f2f4f8;
  --muted: #99a1b0;
  --dim: #7d8492;

  /* lines */
  --line: rgba(255, 255, 255, .085);
  --line-strong: rgba(255, 255, 255, .17);

  /* brand */
  --jd: #2f8fff;
  --jd-soft: #6fc3ff;
  --go: #8b6bff;
  --go-soft: #b79bff;
  --cyan: #3fd8e0;
  --green: #4fd68c;
  --amber: #f0b643;
  --red: #ff5d67;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-sm: 0 12px 30px rgba(0, 0, 0, .32);
  --shadow: 0 26px 64px rgba(0, 0, 0, .42);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, .55);

  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --body: "Aptos", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "Consolas", "SFMono-Regular", monospace;

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Slow-drifting aurora, entirely in CSS so no markup is required. */
body::before {
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(38rem 38rem at 12% 6%, rgba(47, 143, 255, .16), transparent 62%),
    radial-gradient(34rem 34rem at 88% 14%, rgba(139, 107, 255, .15), transparent 62%),
    radial-gradient(32rem 32rem at 62% 92%, rgba(63, 216, 224, .07), transparent 62%);
  filter: blur(30px);
  animation: aurora 34s ease-in-out infinite alternate;
}

@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2.5%, 1.8%, 0) scale(1.06); }
  100% { transform: translate3d(-2%, -1.5%, 0) scale(1.03); }
}

/* Fine technical grid, fading out down the page. */
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .05;
  background-image:
    linear-gradient(rgba(127, 184, 255, .5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 184, 255, .5) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, #000 58%, transparent 88%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--jd-soft); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(47, 143, 255, .32); }

/* --------------------------------------------------------------------------
   Motion layer (elements are injected by site.js)
   -------------------------------------------------------------------------- */

.site-scroll-progress {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  height: 2px;
  background: linear-gradient(90deg, var(--jd), var(--go) 55%, var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.site-cursor-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--glow-x) var(--glow-y), rgba(139, 107, 255, .09), transparent 66%);
  transition: opacity .35s ease;
}
.site-cursor-glow.is-active { opacity: 1; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(.99);
  filter: blur(5px);
  transition:
    opacity .62s ease var(--reveal-delay, 0ms),
    transform .62s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0ms),
    filter .62s ease var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

/* --------------------------------------------------------------------------
   Layout & typography
   -------------------------------------------------------------------------- */

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); }

.section { position: relative; padding: 104px 0; }
.section.compact { padding: 64px 0; }
.section.surface { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .018); }
.section.soft { background: linear-gradient(180deg, rgba(255, 255, 255, .022), rgba(255, 255, 255, .006)); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.06; letter-spacing: -.02em; }
h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 4.6vw, 4.5rem); font-weight: 740; letter-spacing: -.03em; }
h2 { margin-bottom: 18px; font-size: clamp(1.9rem, 3.4vw, 3rem); font-weight: 720; }
h3 { margin-bottom: 11px; font-size: 1.35rem; font-weight: 700; }
p { color: var(--muted); }

.lead { max-width: 560px; font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.6; }
.muted { color: var(--muted); }
.kicker { margin: 0 0 18px; color: var(--muted); font-size: 14px; font-weight: 700; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #cfd5e0;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 7px; height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--jd);
  box-shadow: 0 0 12px var(--jd);
  content: "";
  animation: beacon 2s ease-in-out infinite;
}
@keyframes beacon { 0%, 100% { opacity: 1; } 50% { opacity: .32; } }

.gradient-text {
  background: linear-gradient(96deg, #fff 8%, var(--go-soft) 44%, var(--cyan) 70%, var(--jd-soft) 100%);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 8s ease-in-out infinite;
}
@keyframes sheen { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* --------------------------------------------------------------------------
   Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 12, .78);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .3);
  backdrop-filter: blur(20px);
}

.nav-shell { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  width: 32px; height: 32px;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(150deg, #ffffff, #cfd6e6 42%, var(--go));
  box-shadow: inset 0 1px rgba(255, 255, 255, .8), 0 8px 22px rgba(139, 107, 255, .3);
  color: #101a2c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -.05em;
}
.brand small { margin-left: 6px; color: var(--go-soft); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 26px; color: #c3c9d4; font-size: 13.5px; font-weight: 620; }
.site-nav > a:not(.button) { position: relative; padding: 26px 0 24px; transition: color .16s ease; }
.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0; bottom: 18px; left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jd), var(--go));
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .18s ease, transform .18s ease;
}
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: #fff; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.site-nav[data-auth-pending] [data-nav-auth] { visibility: hidden; }
.site-nav [hidden] { display: none !important; }

.nav-toggle { display: none; border: 0; background: transparent; color: #fff; font-size: 25px; line-height: 1; cursor: pointer; }

/* Signed-in account menu (injected by site.js) */
.nav-account { position: relative; }
.nav-account-toggle {
  display: flex; min-height: 44px; align-items: center; gap: 9px;
  padding: 4px 10px 4px 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: #fff;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.nav-account-toggle:hover { border-color: var(--line-strong); background: var(--surface-2); }
.nav-account-avatar {
  display: grid; width: 32px; height: 32px; place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--jd), var(--go));
  font-size: 10px; font-weight: 850;
}
.nav-account-copy { display: grid; min-width: 70px; text-align: left; line-height: 1.15; }
.nav-account-copy strong { max-width: 95px; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.nav-account-copy small { margin-top: 2px; color: var(--dim); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; }
.nav-account-chevron { color: var(--dim); }
.nav-account-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 232px; padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #131722;
  box-shadow: var(--shadow);
}
.nav-account-summary { display: grid; padding: 8px 9px 12px; border-bottom: 1px solid var(--line); }
.nav-account-summary small { color: var(--dim); font-size: 11px; }
.nav-account-menu a, .nav-account-menu button {
  display: block; width: 100%; padding: 10px 9px;
  border: 0; border-radius: 9px;
  background: transparent; color: var(--muted);
  text-align: left; cursor: pointer;
}
.nav-account-menu a:hover, .nav-account-menu button:hover { background: rgba(255, 255, 255, .06); color: #fff; }

/* --------------------------------------------------------------------------
   Buttons & links
   -------------------------------------------------------------------------- */

.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { border-color: rgba(255, 255, 255, .34); background: rgba(255, 255, 255, .075); transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button.primary {
  border-color: transparent;
  background: linear-gradient(118deg, var(--jd), var(--go) 92%);
  box-shadow: 0 12px 30px rgba(47, 143, 255, .28);
}
.button.primary:hover { box-shadow: 0 16px 40px rgba(139, 107, 255, .42); }
.button.small { min-height: 42px; padding-inline: 17px; border-radius: 11px; font-size: 13.5px; }
.button.go-button { background: linear-gradient(118deg, var(--go), #a481ff); box-shadow: 0 12px 30px rgba(139, 107, 255, .3); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin: 20px 0 0; color: var(--dim); font-size: 13px; }

.text-link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 20px;
  color: #fff; font-size: 14px; font-weight: 700;
}
.text-link::after { content: "\2192"; transition: transform .18s ease; }
.text-link:hover { color: var(--jd-soft); }
.text-link:hover::after { transform: translateX(5px); }

/* .hero is a behaviour hook, not a style: site.js looks for it to enable the
   pointer tilt on the element marked [data-hero-tilt]. Kept empty on purpose. */
.hero { position: relative; }

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */

.home-hero { display: grid; align-items: center; padding: 64px 0 40px; }
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 56px;
}
.home-hero-grid.text-only { grid-template-columns: minmax(0, 760px); }
.home-hero h1 { max-width: 540px; }
.home-hero .lead { max-width: 560px; }

.promise-strip { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; color: #c4cad4; font-size: 13px; font-weight: 650; }
.promise-strip span { display: inline-flex; align-items: center; gap: 8px; }
.promise-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(79, 214, 140, .7); }

/* Product stage — supports both the real screenshot and the drawn mockups. */
.product-stage { position: relative; min-height: 480px; perspective: 1600px; }
.product-stage::before {
  position: absolute;
  inset: -60px 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 62% 26%, rgba(47, 143, 255, .2), transparent 58%),
    radial-gradient(circle at 26% 82%, rgba(139, 107, 255, .16), transparent 54%);
  filter: blur(10px);
}

.product-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #0c0f16;
  box-shadow: var(--shadow-lg);
}
.product-window.jd-window { top: 18px; right: 54px; left: 0; z-index: 2; transform: perspective(1500px) rotateY(calc(4deg + var(--tilt-y, 0deg))) rotateX(calc(1deg + var(--tilt-x, 0deg))); transition: transform .3s ease-out; }
.product-window.go-window { right: 0; bottom: 14px; left: 86px; z-index: 3; transform: perspective(1500px) rotateY(calc(-4deg + var(--tilt-y, 0deg))) rotateX(calc(1deg + var(--tilt-x, 0deg))); transition: transform .3s ease-out; }

.window-bar {
  display: flex; min-height: 46px; align-items: center; justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 14, .92);
}
.window-brand { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 850; }
.window-brand b { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 7px; background: #e7eaf2; color: #17202e; font-size: 8px; }
.window-brand.go b { background: linear-gradient(135deg, var(--go-soft), var(--go)); color: #fff; }
.window-status { display: flex; gap: 5px; }
.window-status i { width: 6px; height: 6px; border-radius: 50%; background: #333a4a; }
.window-status i:first-child { background: var(--green); box-shadow: 0 0 8px rgba(79, 214, 140, .8); }

.cart-toolbar { display: flex; gap: 6px; padding: 9px 10px; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.cart-toolbar span { height: 15px; border-radius: 5px; background: #1d2333; }
.cart-toolbar span:nth-child(1) { width: 88px; }
.cart-toolbar span:nth-child(2) { width: 45px; }
.cart-toolbar span:nth-child(3) { margin-left: auto; width: 58px; background: #2b3560; }

.cart-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  min-height: 208px;
  padding: 11px;
  background: linear-gradient(135deg, #090c14, #0e1626);
}
.cart-tile {
  position: relative;
  min-height: 69px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 9px;
  background: linear-gradient(150deg, #1f5fa8, #102c4c);
  box-shadow: inset 0 1px rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 8px;
  font-weight: 750;
  line-height: 1.25;
}
.cart-tile.blue { background: linear-gradient(150deg, #2578bd, #12314f); }
.cart-tile.yellow { background: linear-gradient(150deg, #2f7fa8, #16303f); }
.cart-tile.purple { background: linear-gradient(150deg, #6f55c4, #2c2258); }
.cart-tile small { position: absolute; bottom: 6px; left: 7px; color: rgba(255, 255, 255, .78); font-size: 6px; }

.cart-player { display: flex; height: 36px; align-items: center; gap: 9px; padding: 0 11px; border-top: 1px solid var(--line); color: var(--dim); font-size: 7px; }
.cart-player i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.cart-player span { height: 3px; flex: 1; border-radius: 99px; background: linear-gradient(90deg, var(--cyan) 46%, #262c3c 46%); }

.go-body { display: grid; grid-template-columns: 36% 1fr; min-height: 248px; background: linear-gradient(148deg, #0e1018, #141223); }
.go-runlist { padding: 12px; border-right: 1px solid var(--line); }
.go-runlist > span, .go-live > span { display: block; margin-bottom: 10px; color: var(--go-soft); font-size: 7px; font-weight: 850; letter-spacing: .12em; }
.go-cue {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 7px; padding: 7px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  color: #d7dae3; font-size: 7px;
}
.go-cue b { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 6px; background: #272044; color: var(--go-soft); font-size: 6px; }
.go-cue.active { border-color: rgba(139, 107, 255, .45); background: rgba(139, 107, 255, .12); }
.go-live { padding: 12px; }
.go-now { display: grid; grid-template-columns: 1fr 1.25fr; gap: 7px; }
.go-now article { min-height: 65px; padding: 9px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255, 255, 255, .03); }
.go-now small { color: var(--dim); font-size: 6px; letter-spacing: .1em; }
.go-now strong { display: block; margin-top: 7px; font-size: 9px; }
.go-controls { display: grid; grid-template-columns: .75fr 1.5fr .75fr; gap: 7px; margin-top: 8px; }
.go-controls button { min-height: 47px; border: 1px solid var(--line); border-radius: 9px; background: #191d28; color: #8b92a2; font-size: 6px; font-weight: 850; }
.go-controls .go-main {
  border-color: rgba(139, 107, 255, .5);
  background: linear-gradient(145deg, #7550e0, #a06cff);
  box-shadow: 0 0 24px rgba(139, 107, 255, .4);
  color: #fff;
  font-size: 16px;
}

.stage-label {
  position: absolute;
  z-index: 5;
  display: flex; align-items: center; gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(13, 16, 24, .92);
  box-shadow: var(--shadow-sm);
  color: #fff; font-size: 11px; font-weight: 700;
  backdrop-filter: blur(10px);
}
.stage-label.jd-label { top: 2px; left: -26px; }
.stage-label.go-label { right: -18px; bottom: -2px; }
.stage-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--jd); box-shadow: 0 0 14px currentColor; animation: beacon 1.8s ease-in-out infinite; }
.stage-label.go-label i { background: var(--go); }

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */

.trust-bar { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .016); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 24px 26px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; margin-bottom: 3px; color: #fff; font-size: 13px; letter-spacing: .01em; }
.trust-grid span { color: var(--dim); font-size: 12.5px; }

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}
.section-heading > p { margin: 0 0 8px; font-size: 17px; }
.section-heading.centered { display: block; max-width: 800px; margin: 0 auto 54px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

/* --------------------------------------------------------------------------
   Workspace cards (JingleDeck / GO)
   -------------------------------------------------------------------------- */

.workspace-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.workspace-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.workspace-card.jd { background: linear-gradient(158deg, #0f1a2c, #0b0d13 62%); }
.workspace-card.go { background: linear-gradient(158deg, #16132a, #0b0c13 62%); }
.workspace-card:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--shadow); }
.workspace-card::after {
  position: absolute;
  right: -140px; bottom: -170px;
  width: 330px; height: 330px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .3;
  content: "";
}
.workspace-card.jd::after { background: var(--jd); }
.workspace-card.go::after { background: var(--go); }
.workspace-card > * { position: relative; z-index: 1; }

.workspace-index { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; color: var(--dim); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; }
.workspace-index b {
  display: grid; width: 44px; height: 44px; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, .05);
  color: #fff; font-size: 12px;
}
.workspace-card.jd .workspace-index b { background: linear-gradient(150deg, var(--jd-soft), var(--jd)); color: #04213a; }
.workspace-card.go .workspace-index b { background: linear-gradient(150deg, var(--go-soft), var(--go)); color: #160e33; }
.workspace-card h3 { max-width: 500px; font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
.workspace-card p { max-width: 520px; font-size: 15px; }
.workspace-card .text-link { margin-top: auto; padding-top: 18px; }

/* --------------------------------------------------------------------------
   Feature cards
   -------------------------------------------------------------------------- */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 19, 25, .8);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  border-color: rgba(47, 143, 255, .4);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .34);
}
.feature-card .feature-icon {
  display: grid; width: 44px; height: 44px; margin-bottom: 40px; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(47, 143, 255, .18), rgba(139, 107, 255, .14));
  color: var(--jd-soft);
  font-family: var(--mono);
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
}
.feature-card p { margin-bottom: 0; font-size: 14.5px; }

/* --------------------------------------------------------------------------
   Proof / routing panel
   -------------------------------------------------------------------------- */

.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 72px; }
.proof-grid.text-only, .split.text-only { grid-template-columns: minmax(0, 760px); }
.proof-list { display: grid; gap: 4px; }
.proof-item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.proof-item b { color: var(--dim); font-family: var(--mono); font-size: 12px; }
.proof-item h3 { margin-bottom: 6px; font-size: 19px; letter-spacing: -.02em; }
.proof-item p { margin: 0; font-size: 14px; }

.signal-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #131829, #0a0d15);
}
.signal-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 26%, rgba(47, 143, 255, .22), transparent 36%),
    radial-gradient(circle at 24% 78%, rgba(139, 107, 255, .16), transparent 32%);
}
.route-card {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 9, 15, .74);
  backdrop-filter: blur(12px);
}
.route-card small { color: var(--dim); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.route-line { display: grid; grid-template-columns: 1fr 44px 1fr; align-items: center; gap: 11px; margin-top: 14px; }
.route-line span { padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255, 255, 255, .04); color: #fff; font-size: 11px; font-weight: 700; }
.route-line i { height: 2px; background: linear-gradient(90deg, var(--jd), var(--cyan)); box-shadow: 0 0 10px rgba(63, 216, 224, .5); }
.route-safe { display: flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--green); font-size: 11px; font-weight: 700; }
.route-safe i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }

/* --------------------------------------------------------------------------
   Audience cards
   -------------------------------------------------------------------------- */

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .2s ease, border-color .2s ease;
}
.audience-card:hover { border-color: rgba(139, 107, 255, .42); transform: translateY(-4px); }
.audience-card span { color: var(--dim); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; }
.audience-card h3 { margin-top: 40px; font-size: 22px; }
.audience-card a { color: #fff; }

/* --------------------------------------------------------------------------
   Price banner (home / demo)
   -------------------------------------------------------------------------- */

.price-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(126deg, rgba(47, 143, 255, .1), rgba(139, 107, 255, .16) 56%, rgba(63, 216, 224, .06));
  box-shadow: var(--shadow), 0 0 90px rgba(139, 107, 255, .08);
}
.price-banner::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(139, 107, 255, .34);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.price-banner > * { position: relative; z-index: 1; }
.price-banner p { margin-bottom: 0; }

.price-lockup { text-align: right; }
.price-lockup small { display: block; color: var(--dim); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.price-lockup strong { display: block; font-family: var(--display); font-size: 56px; line-height: 1; letter-spacing: -.055em; }
.price-lockup span { color: var(--muted); font-size: 12.5px; }

/* --------------------------------------------------------------------------
   Inner page hero
   -------------------------------------------------------------------------- */

.page-hero { padding: 96px 0 74px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 66px; }
.page-hero h1 { max-width: 940px; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.page-hero .lead { margin-bottom: 0; }

.page-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px; font-weight: 650;
}
.page-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--go); box-shadow: 0 0 10px var(--go); }

.product-hero-visual {
  margin-top: 56px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(148deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  box-shadow: var(--shadow-lg);
}
.product-hero-visual { transform: perspective(1600px) rotateY(var(--tilt-y, 0deg)) rotateX(var(--tilt-x, 0deg)); transition: transform .3s ease-out; }
.product-hero-visual .product-window { position: relative; inset: auto; width: 100%; transform: none; }
.product-hero-visual .cart-grid { grid-template-columns: repeat(8, 1fr); min-height: 340px; }
.product-hero-visual .cart-tile { min-height: 100px; padding: 12px; font-size: 12px; }
.product-hero-visual .cart-tile small { bottom: 10px; left: 12px; font-size: 9px; }
.product-hero-visual .cart-player { height: 52px; font-size: 11px; }
.product-hero-visual .go-body { grid-template-columns: 34% 1fr; min-height: 420px; }
.product-hero-visual .go-runlist > span, .product-hero-visual .go-live > span { font-size: 10px; }
.product-hero-visual .go-cue { min-height: 46px; font-size: 11px; }
.product-hero-visual .go-cue b { width: 26px; height: 26px; font-size: 9px; }
.product-hero-visual .go-now article { min-height: 124px; padding: 20px; }
.product-hero-visual .go-now small { font-size: 9px; }
.product-hero-visual .go-now strong { margin-top: 16px; font-size: 18px; }
.product-hero-visual .go-controls button { min-height: 96px; font-size: 10px; }
.product-hero-visual .go-controls .go-main { font-size: 34px; }

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.step { min-height: 244px; padding: 28px; background: var(--surface); transition: background .2s ease; }
.step:hover { background: var(--surface-2); }
.step span { color: var(--dim); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .13em; }
.step h3 { margin-top: 66px; }
.step p { margin-bottom: 0; font-size: 14.5px; }

/* --------------------------------------------------------------------------
   Split, lists, callouts
   -------------------------------------------------------------------------- */

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

.check-list { display: grid; gap: 11px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .022);
  color: #d3d7df;
  transition: border-color .18s ease, background .18s ease;
}
.check-list li:hover { border-color: rgba(79, 214, 140, .3); background: rgba(79, 214, 140, .05); }
.check-list li::before { position: absolute; top: 13px; left: 16px; color: var(--green); content: "\2713"; font-weight: 900; }

.callout {
  padding: 34px;
  border: 1px solid rgba(139, 107, 255, .28);
  border-radius: var(--radius);
  background: linear-gradient(148deg, rgba(139, 107, 255, .1), rgba(255, 255, 255, .022));
}
.callout strong { display: block; margin-bottom: 12px; color: #fff; font-family: var(--display); font-size: 21px; letter-spacing: -.02em; }

.notice {
  padding: 18px 20px;
  border: 1px solid rgba(240, 182, 67, .28);
  border-radius: 12px;
  background: rgba(240, 182, 67, .06);
  color: #ddd3bd;
}

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

.faq { display: grid; gap: 10px; max-width: 900px; margin-inline: auto; }
.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color .18s ease, background .18s ease;
}
.faq details:hover { border-color: var(--line-strong); }
.faq details[open] { border-color: rgba(47, 143, 255, .34); background: var(--surface-2); }
.faq summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  position: absolute; top: 50%; right: 22px;
  color: var(--jd-soft);
  content: "+";
  font-size: 20px;
  transform: translateY(-50%);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 22px 20px; margin: 0; }

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

.pricing-hero { text-align: center; }
.pricing-hero .lead { margin-inline: auto; }

.intro-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(63, 216, 224, .32);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(63, 216, 224, .08), rgba(47, 143, 255, .06));
}
.intro-offer p { margin: 3px 0 0; }
.intro-offer strong { font-family: var(--display); font-size: 23px; letter-spacing: -.02em; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; text-align: left; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.price-card:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: rgba(139, 107, 255, .55);
  background: linear-gradient(158deg, rgba(139, 107, 255, .14), #12151f 52%);
  box-shadow: 0 22px 60px rgba(80, 52, 160, .22);
}
.price-card .price-label { color: var(--dim); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .13em; }
.price-card h2 { margin: 24px 0 8px; font-size: 30px; }
.price-card > p { font-size: 14.5px; }
.price { display: flex; align-items: flex-end; gap: 8px; margin: 24px 0; }
.price strong { font-family: var(--display); font-size: 54px; line-height: .9; letter-spacing: -.055em; }
.price span { color: var(--dim); font-size: 12px; }
.price-card ul { display: grid; gap: 9px; margin: 22px 0 28px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.price-card li::before { margin-right: 9px; color: var(--green); content: "\2713"; font-weight: 900; }
.price-card .button { margin-top: auto; }
.pricing-note { margin-top: 20px; color: var(--dim); font-size: 12.5px; text-align: center; }

/* --------------------------------------------------------------------------
   Requirements table
   -------------------------------------------------------------------------- */

.requirements-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  background: var(--surface);
}
.requirements-table th, .requirements-table td { padding: 20px 24px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.requirements-table tr:last-child th, .requirements-table tr:last-child td { border-bottom: 0; }
.requirements-table tbody tr { transition: background .16s ease; }
.requirements-table tbody tr:hover { background: rgba(255, 255, 255, .022); }
.requirements-table th { width: 28%; color: #fff; font-size: 13.5px; }
.requirements-table td { color: var(--muted); }

/* --------------------------------------------------------------------------
   Story / prose (about)
   -------------------------------------------------------------------------- */

.story-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; }
.story-aside {
  position: sticky; top: 106px;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.story-aside span { color: var(--dim); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .13em; }
.story-aside h2 { margin-top: 52px; font-size: 32px; }

.prose h2 { margin-top: 0; font-size: 36px; }
.prose h3 { margin-top: 40px; }
.prose p { font-size: 17px; line-height: 1.78; }

.quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--go);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(139, 107, 255, .1), rgba(139, 107, 255, .02));
  color: #fff;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.48;
  letter-spacing: -.02em;
}

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

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; }
.contact-details { display: grid; gap: 14px; align-content: start; }
.contact-card, .contact-form-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-card { transition: border-color .18s ease; }
.contact-card:hover { border-color: var(--line-strong); }
.contact-card small { color: var(--dim); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.contact-card strong { display: block; margin: 16px 0 7px; font-family: var(--display); font-size: 18px; letter-spacing: -.02em; }

.contact-form-card form { display: grid; gap: 18px; margin-top: 26px; }
.contact-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.field { display: grid; gap: 7px; }
.field label { color: #dee1e7; font-size: 12.5px; font-weight: 700; }
.field label small { color: var(--dim); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0c0f16;
  color: #fff;
  outline: 0;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #5d6472; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(47, 143, 255, .7); box-shadow: 0 0 0 3px rgba(47, 143, 255, .14); }
.field textarea { min-height: 150px; resize: vertical; }
.field-help { color: var(--dim); font-size: 11.5px; }

.contact-honeypot { position: absolute; left: -10000px; }
.contact-submit-row { display: flex; align-items: center; gap: 18px; }
.contact-submit-row p { margin: 0; font-size: 11.5px; }
.contact-form-status { margin-top: 20px; padding: 13px; border: 1px solid var(--line); border-radius: 11px; }
.contact-form-status.is-success { border-color: rgba(79, 214, 140, .4); background: rgba(79, 214, 140, .07); color: var(--green); }
.contact-form-status.is-error { border-color: rgba(255, 93, 103, .4); background: rgba(255, 93, 103, .07); color: var(--red); }

/* --------------------------------------------------------------------------
   Demo page
   -------------------------------------------------------------------------- */

.demo-panel { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
.demo-status {
  padding: 32px;
  border: 1px solid rgba(139, 107, 255, .35);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(139, 107, 255, .14), var(--surface));
}
.demo-status span { color: var(--go-soft); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .13em; }
.demo-status strong { display: block; margin: 30px 0 22px; font-family: var(--display); font-size: 54px; line-height: 1; letter-spacing: -.055em; }
.demo-status ul { display: grid; gap: 9px; padding-left: 18px; color: var(--muted); font-size: 14.5px; }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-hero { padding: 88px 0 42px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 16px; font-size: clamp(2.4rem, 4.6vw, 3.8rem); }
.legal-hero p { max-width: 760px; font-size: 17.5px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.legal-meta span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 650;
}

.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 66px; padding-top: 60px; padding-bottom: 96px; }
.legal-nav { position: sticky; top: 106px; display: grid; align-self: start; gap: 6px; }
.legal-nav strong { margin-bottom: 8px; color: #fff; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
.legal-nav a { padding: 10px 12px; border-radius: 9px; color: var(--muted); font-size: 13.5px; transition: background .16s ease, color .16s ease; }
.legal-nav a:hover, .legal-nav a[aria-current="page"] { background: rgba(255, 255, 255, .055); color: #fff; }

.legal-copy { max-width: 850px; }
.legal-copy section { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-copy section:last-child { border-bottom: 0; }
.legal-copy h2 { font-size: 26px; letter-spacing: -.025em; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy li { margin-bottom: 8px; }
.legal-contact { color: var(--jd-soft); text-decoration: underline; text-underline-offset: 3px; }
.legal-callout {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(139, 107, 255, .3);
  border-radius: 12px;
  background: rgba(139, 107, 255, .07);
  color: var(--muted);
}
.legal-callout strong { display: block; margin-bottom: 6px; color: #fff; }

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

.site-footer { padding: 66px 0 24px; border-top: 1px solid var(--line); background: #07080b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer-brand p { max-width: 300px; margin-top: 18px; font-size: 13.5px; }
.footer-title { margin-bottom: 14px; color: #fff; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; color: var(--muted); font-size: 13.5px; }
.footer-links a { transition: color .16s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--dim); font-size: 11.5px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 7px 14px; }
.footer-legal a:hover { color: #fff; }

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

@media (max-width: 1060px) {
  .site-nav { gap: 16px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 800px; }
  .product-stage { width: min(780px, 100%); min-height: 480px; }
  .proof-grid, .story-grid { gap: 46px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .demo-panel { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 66px; right: 20px; left: 20px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #12151e;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav > a:not(.button) { padding: 13px; border-radius: 10px; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav > a:not(.button):hover { background: rgba(255, 255, 255, .05); }
  .site-nav .button { margin-top: 6px; }
  .nav-account { order: 20; }
  .nav-account-toggle { width: 100%; }
  .nav-account-menu { position: static; width: 100%; margin-top: 6px; }

  .workspace-grid, .proof-grid, .page-hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .legal-nav strong { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 220px; }
  .audience-card h3 { margin-top: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1180px); }
  .section { padding: 64px 0; }
  .section.compact { padding: 56px 0; }
  h1 { font-size: clamp(2.35rem, 9vw, 2.5rem); }
  .home-hero { padding-top: 40px; }
  .page-hero { padding: 66px 0 56px; }

  .product-stage { min-height: 340px; }
  .product-window.jd-window { right: 18px; }
  .product-window.go-window { left: 36px; }
  .cart-grid { grid-template-columns: repeat(4, 1fr); min-height: 170px; }
  .cart-grid .cart-tile:nth-child(n+9) { display: none; }
  .cart-tile { min-height: 54px; }
  .go-body { min-height: 190px; }
  .go-cue:nth-child(n+4) { display: none; }
  .stage-label { display: none; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:last-child { border-bottom: 0; }
  .workspace-grid, .feature-grid { grid-template-columns: 1fr; }
  .workspace-card { min-height: 360px; padding: 28px; }
  .workspace-index { margin-bottom: 18px; }
  .price-banner { grid-template-columns: 1fr; padding: 30px; }
  .price-lockup { text-align: left; }
  .intro-offer { grid-template-columns: 1fr; }

  .product-hero-visual { padding: 8px; margin-top: 40px; }
  .product-hero-visual .cart-grid { grid-template-columns: repeat(4, 1fr); min-height: 250px; }
  .product-hero-visual .cart-tile { min-height: 76px; font-size: 9px; }
  .product-hero-visual .go-body { grid-template-columns: 1fr; min-height: 300px; }
  .product-hero-visual .go-runlist { display: none; }
  .product-hero-visual .go-controls button { min-height: 72px; }
  .product-hero-visual .go-controls .go-main { font-size: 28px; }

  .steps { grid-template-columns: 1fr; }
  .step { min-height: 180px; }
  .step h3 { margin-top: 42px; }

  .contact-field-row { grid-template-columns: 1fr; }
  .contact-submit-row, .footer-bottom { align-items: flex-start; flex-direction: column; }

  .requirements-table, .requirements-table tbody, .requirements-table tr, .requirements-table th, .requirements-table td { display: block; width: 100%; }
  .requirements-table th { padding-bottom: 6px; border-bottom: 0; }
  .requirements-table td { padding-top: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .legal-nav { grid-template-columns: 1fr; }
  .quote { padding: 22px 24px; font-size: 18px; }
}

/* --------------------------------------------------------------------------
   Reduced motion & print
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .site-cursor-glow, .site-scroll-progress { display: none; }
}

@media print {
  body::before, body::after, .site-cursor-glow, .site-scroll-progress { display: none; }
  body { background: #fff; color: #000; }
  .site-header, .site-footer { display: none; }
}

/* ==========================================================================
   LAYOUT COMPONENTS — added for the restructured pages
   These extend the system above; nothing here replaces an existing class.
   ========================================================================== */

/* --- Capability ticker ---------------------------------------------------- */

.cap-ticker { overflow: hidden; border-block: 1px solid var(--line); background: #090a0e; }
.cap-track { display: flex; width: max-content; white-space: nowrap; animation: capScroll 42s linear infinite; }
.cap-ticker:hover .cap-track { animation-play-state: paused; }
.cap-track span {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 15px 26px;
  color: var(--jd-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cap-track span::after { color: #3a4152; content: "\25C6"; font-size: 8px; }
@keyframes capScroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* --- Bento grid ----------------------------------------------------------- */

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  grid-column: span 2;
  min-height: 232px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.bento-card:hover { border-color: rgba(47, 143, 255, .4); transform: translateY(-4px); box-shadow: 0 22px 48px rgba(0, 0, 0, .38); }
.bento-card.wide { grid-column: span 3; }
.bento-card.half { grid-column: span 3; }
.bento-card.full { grid-column: span 6; min-height: auto; }
.bento-card.tall { grid-row: span 2; }
.bento-card.accent { background: linear-gradient(158deg, rgba(47, 143, 255, .13), var(--surface) 62%); border-color: rgba(47, 143, 255, .3); }
.bento-card.accent-go { background: linear-gradient(158deg, rgba(139, 107, 255, .14), var(--surface) 62%); border-color: rgba(139, 107, 255, .3); }
.bento-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.bento-card p { margin: 0; font-size: 14.5px; }
.bento-card .bento-foot { margin-top: auto; padding-top: 20px; }

.bento-tag { margin-bottom: 16px; color: var(--dim); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

/* Animated level-meter glyph used instead of flat icons */
.meter-glyph { display: flex; align-items: flex-end; gap: 3px; height: 22px; margin-bottom: 18px; }
.meter-glyph i {
  width: 3.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--jd));
  transform-origin: bottom;
  animation: meterBounce 1.7s ease-in-out infinite;
}
.meter-glyph i:nth-child(1) { height: 10px; animation-delay: 0s; }
.meter-glyph i:nth-child(2) { height: 20px; animation-delay: .18s; }
.meter-glyph i:nth-child(3) { height: 14px; animation-delay: .36s; }
.meter-glyph i:nth-child(4) { height: 22px; animation-delay: .54s; }
.meter-glyph i:nth-child(5) { height: 12px; animation-delay: .72s; }
@keyframes meterBounce { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }
.meter-glyph.go i { background: linear-gradient(180deg, var(--go-soft), var(--go)); }

/* --- Full-width showcase -------------------------------------------------- */

.showcase-band { border-block: 1px solid var(--line); background: #090a0e; }
.showcase-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 48px; margin-bottom: 40px; }
.showcase-head p { margin: 0 0 6px; font-size: 16.5px; }
.showcase-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #0b0e15;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(47, 143, 255, .07);
}
.showcase-frame img { width: 100%; }
.showcase-foot { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: 28px; }
.showcase-foot p { margin: 0; max-width: 520px; }

/* --- Stat strip ----------------------------------------------------------- */

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.stat strong { display: block; font-family: var(--display); font-size: 34px; line-height: 1.05; letter-spacing: -.04em; }
.stat small { display: block; margin-bottom: 12px; color: var(--dim); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.stat span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }

/* --- Alternating feature rows --------------------------------------------- */

.feature-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.feature-row + .feature-row { margin-top: 96px; }
.feature-row.reverse .feature-row-media { order: -1; }
.feature-row-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(158deg, #121727, #0a0d14);
  box-shadow: var(--shadow);
}
.feature-row-media img { width: 100%; }
.feature-row-body h2 { font-size: clamp(1.8rem, 2.9vw, 2.6rem); }
.feature-row-body .check-list { margin-top: 22px; }

/* --- Numbered timeline ---------------------------------------------------- */

.timeline { display: grid; gap: 0; }
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-step:last-child { border-bottom: 1px solid var(--line); }
.timeline-step b {
  display: block;
  color: transparent;
  background: linear-gradient(160deg, var(--jd-soft), var(--go));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.05em;
}
.timeline-step h3 { margin-bottom: 7px; font-size: 20px; }
.timeline-step p { margin: 0; max-width: 640px; font-size: 14.5px; }

/* --- Quote card (ready for real customer quotes) -------------------------- */

.quote-card {
  padding: 36px;
  border: 1px solid rgba(139, 107, 255, .28);
  border-radius: var(--radius-lg);
  background: linear-gradient(146deg, rgba(139, 107, 255, .11), rgba(255, 255, 255, .02));
}
.quote-card blockquote { margin: 0; color: #fff; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.45; letter-spacing: -.02em; }
.quote-attrib { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--muted); font-size: 13.5px; }
.quote-attrib span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: linear-gradient(145deg, var(--jd), var(--go)); color: #fff; font-size: 12px; font-weight: 800; }

/* --- Comparison table ----------------------------------------------------- */

.compare {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 14px;
}
.compare th, .compare td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.compare thead th { color: #fff; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.compare tbody th { color: #e7eaf0; font-weight: 650; }
.compare td { color: var(--muted); text-align: center; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: rgba(255, 255, 255, .022); }
.compare .yes { color: var(--green); font-weight: 800; }
.compare .no { color: #4c5361; }

/* --- Legal table of contents --------------------------------------------- */

.toc { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.toc strong { display: block; margin-bottom: 12px; color: #fff; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.toc ol { display: grid; gap: 7px; margin: 0; padding-left: 18px; color: var(--muted); font-size: 13.5px; }
.toc a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* --- Small helpers -------------------------------------------------------- */

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}
.center-actions { display: flex; justify-content: center; margin-top: 36px; }
.section-rule { height: 1px; border: 0; margin: 0; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }

@media (max-width: 1060px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-card, .bento-card.wide, .bento-card.half { grid-column: span 2; }
  .bento-card.full { grid-column: span 4; }
  .bento-card.tall { grid-row: span 1; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .showcase-head { grid-template-columns: 1fr; gap: 16px; }
  .feature-row { grid-template-columns: 1fr; gap: 34px; }
  .feature-row + .feature-row { margin-top: 64px; }
  .feature-row.reverse .feature-row-media { order: 0; }
}

@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento-card, .bento-card.wide, .bento-card.half, .bento-card.full { grid-column: span 1; }
  .bento-card { min-height: auto; padding: 24px; }
  .stat-strip { grid-template-columns: 1fr; }
  .timeline-step { grid-template-columns: 60px 1fr; gap: 18px; }
  .timeline-step b { font-size: 30px; }
  .quote-card { padding: 26px; }
  .compare { display: block; overflow-x: auto; white-space: nowrap; }
}
