/* ============================================================
   styles.css, marketing-site styles.
   ALL design tokens (colors, spacing, type, radius, shadows,
   motion, z-index) live in theme.css, the single source of
   truth, imported below. Reference everything via var(--token);
   never hardcode a color or magic number in this file.
   ============================================================ */
@import url("theme.css?v=2");

/* Reduced-motion: collapse animations. Duration tokens are
   zeroed in theme.css under this same media query. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; }

/* Use the original site's display font (Atkinson Hyperlegible Next) for all headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
button, input, select, textarea { font-family: inherit; }

/* ---------- Hero background (uses the original Framer image baked with lighting) ---------- */
/* The original site uses a single PNG that already contains:
   - the cyan grid lines (right side, fading to dark on the left)
   - the bright cyan glow rising from the bottom-left corner
   We render that PNG full-bleed across the hero band and let the natural
   image gradient do the work, exactly like the source site. */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1365px;
  background-image: url("assets/hero-grid-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  /* Soft fade at the very bottom so it blends into the navy below */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
}
/* Additional cyan glow boost on the lower-left to match the original brightness */
.bg-glow {
  position: absolute;
  top: 480px;
  left: -480px;
  width: 1500px;
  height: 1400px;
  background:
    radial-gradient(closest-side, rgba(110, 195, 255, 0.55) 0%, rgba(70, 150, 240, 0.25) 35%, rgba(40, 100, 200, 0.0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  mix-blend-mode: screen;
}
.bg-glow-2 { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  /* Match the original Framer site: IBM Plex Mono 15px / 400 / -0.04em */
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn .chev { font-size: 14px; line-height: 1; }
.btn-primary {
  background: linear-gradient(180deg, #2e9bff 0%, #1d7ee2 100%);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(46,155,255,.6), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: var(--pill-bg);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); }

/* ---------- Navigation ---------- */
/* Top navigation matches the original Framer site:
   two separate translucent dark pills sitting at the top of the hero. */
.nav-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 30px 0;
}
/* Shared pill container styling */
.nav-pill {
  background: rgba(56, 56, 56, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--pill-bg);
  border-radius: 999px;
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.03);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 40px 10px 20px;
  min-height: 62px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo { width: 32px; height: 32px; display: block; object-fit: contain; }
/* CADABRA wordmark: Inter Display 25px / 700 / -0.25px (= -0.01em), white */
.brand-text {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 25px;
  line-height: 1;
  color: #ffffff;
}
.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.16);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  opacity: 0.92;
  transition: opacity .15s ease;
}
.nav-links a:hover { opacity: 1; }

/* ---------- Solutions dropdown ---------- */
.nav-dd { position: relative; }
.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  opacity: 0.92;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity .15s ease;
}
.nav-dd-trigger:hover { opacity: 1; }
.nav-dd-chev {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: transform .2s ease;
}
.nav-dd-chev svg { width: 15px; height: 15px; display: block; }
.nav-dd:hover .nav-dd-chev,
.nav-dd:focus-within .nav-dd-chev { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 200px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(16, 26, 56, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}
/* invisible bridge so hover survives the gap to the menu */
.nav-dd-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex !important;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 13px;
  text-decoration: none;
  opacity: 1 !important;
  transition: background .15s ease;
}
.nav-dd-item:hover { background: var(--line-soft); }
.nav-dd-item-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.nav-dd-item-desc {
  font-size: 12.5px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.55);
}
.nav-cta {
  display: flex;
  gap: 8px;
  padding: 10px 10px;
  min-height: 62px;
  align-items: center;
}
/* Nav buttons use a slightly smaller pill inside the container */
.nav-cta .btn { padding: 9px 18px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 40px 36px 60px;
  min-height: 72vh;
}
.hero-content { position: relative; z-index: 3; }
/* "CAD LIKE MAGIC" pill, matches the original Framer site exactly:
   translucent gray bg, full pill radius, IBM Plex Mono 16px / 400 white,
   bright cyan/blue glow underneath. */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 120px;
  background: rgba(110, 110, 110, 0.5);
  border: 1px solid var(--pill-bg);
  color: #ffffff;
  box-shadow: 0 0 40px 0 rgba(50, 184, 255, 0.5);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pill-icon { color: var(--accent-light); font-size: 14px; line-height: 1; }
.hero-title {
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 1240px) {
  .hero-title { white-space: normal; }
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 30px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}
.hero-glow-img {
  /* The hero background image already carries the lighting/glow;
     this overlay is no longer needed and was darkening the scene. */
  display: none;
}
.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,.55));
}
.nvidia-badge {
  position: absolute;
  right: 6%;
  bottom: 6%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: rgba(12, 22, 38, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(140, 170, 210, 0.14);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  color: #ffffff;
}
.nvidia-badge-tag {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: rgba(220, 235, 255, 0.6);
  text-transform: uppercase;
  font-weight: 500;
}
.nvidia-badge-logo {
  display: block;
  width: 92px;
  height: 46px;
  flex-shrink: 0;
}

/* ---------- Big section heading (gradient text) ---------- */
.big-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  text-align: left;
}
.big-heading.center { text-align: center; }
.grad-bright {
  background: linear-gradient(180deg, #ffffff 30%, #cfdcef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-dim {
  background: linear-gradient(180deg, #8aa1c4 0%, #5d7299 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Prompts section ---------- */
.prompts {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 36px 80px;
  text-align: center;
}
.prompts .big-heading { text-align: center; margin-bottom: 36px; font-size: clamp(36px, 4.6vw, 60px); }

.prompt-input {
  margin: 0 auto 64px;
  max-width: 600px;
  display: flex;
  align-items: center;
  background: rgba(8, 20, 44, 0.55);
  border: 1px solid rgba(140, 180, 230, 0.14);
  border-radius: var(--radius-pill);
  padding: 7px 7px 7px 26px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px -10px rgba(0,0,0,0.5);
}
.prompt-input input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  padding: 12px 0;
}
.prompt-input input::placeholder { color: #ffffff; opacity: 0.92; }
.prompt-input input::-webkit-input-placeholder { color: #ffffff; opacity: 0.92; }
.prompt-input input::-moz-placeholder { color: #ffffff; opacity: 0.92; }
.prompt-input button {
  background: linear-gradient(180deg, #4aa9ff, #1d7ee2);
  color: #fff;
  border: 0;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 4px 16px -4px rgba(46, 155, 255, 0.5);
}

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  overflow: hidden;
  /* let cards spill past the centered container width */
  margin: 0 -36px;
  padding: 0 36px;
}
.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.feature-card {
  flex: 0 0 calc(100% - 80px);
  /* Exact gradient from the original Framer site:
     radial corner highlight from top-right, dark navy on the rest. */
  background: radial-gradient(87% 100% at 86.2% 28.4%, rgb(2, 3, 5) 0%, rgb(36, 54, 90) 100%);
  border: 1px solid rgba(140, 180, 230, 0.10);
  border-radius: var(--radius-lg);
  padding: 30px 30px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
}
.feature-img {
  border-radius: 14px;
  overflow: hidden;
  background: #03102a;
  margin-bottom: 32px;
  border: 1px solid rgba(140, 180, 230, 0.06);
  aspect-ratio: 16 / 7.2;
}
.feature-img img,
.feature-img video { width: 100%; height: 100%; display: block; object-fit: cover; }
.feature-card h3 {
  font-size: 38px;
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  color: #fff;
}
.feature-card p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
}

.carousel-arrow {
  position: absolute;
  top: 42%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ink-ghost);
  background: rgba(8, 22, 50, 0.7);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .15s ease, transform .15s ease;
  z-index: 3;
}
.carousel-arrow:hover { background: rgba(46,155,255,0.5); }
.carousel-arrow.left { left: 12px; }
.carousel-arrow.right { right: 12px; }

/* ---------- Integrates section ---------- */
.integrates {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 36px 80px;
}
.integration-card {
  margin-top: 64px;
  background: transparent;
  border: none;
  border-radius: 24px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow: none;
}
.integration-card::before {
  content: "";
  position: absolute;
  inset: 5% 8%;
  background: radial-gradient(60% 70% at 50% 50%, rgba(46,155,255,0.28), transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.integration-card img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* ---------- Workflow section ---------- */
.workflow {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 36px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.workflow-title {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 30%, #b9c8e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-top: 12px;
}
.steps { position: relative; }
.steps::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(46,155,255,0.6) 0%,
    rgba(46,155,255,0.2) 50%,
    rgba(46,155,255,0.05) 100%);
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
  position: relative;
}
.step:last-child { margin-bottom: 0; }
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0e2148 0%, #081633 100%);
  border: 1px solid rgba(120, 170, 240, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.5);
}
.step-icon img { width: 100%; height: 100%; object-fit: contain; }
.step-text h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 6px 0 8px;
  color: #fff;
  letter-spacing: -0.01em;
}
.step-text p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}

/* ---------- Benefits ---------- */
.benefits {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 36px 100px;
}
.benefits .big-heading { margin-bottom: 70px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  /* Dark navy base */
  background: #0a1a36;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Bright cyan glow rising from bottom-center, exact gradient from original Framer site */
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 100%, rgba(42, 174, 244, 0.30) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.benefit-card > * { position: relative; z-index: 1; }
.benefit-ico {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-bottom: 22px;
}
.benefit-ico svg { width: 100%; height: 100%; display: block; }
.benefit-card h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.benefit-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 36px 90px;
  isolation: isolate;
}
/* Soft diffuse cyan glow behind the FAQ section (matches original Framer blur filter) */
.faq::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 900px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(42, 174, 244, 0.85) 0%, rgba(42, 174, 244, 0) 100%);
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}
.faq .big-heading { margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 22px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15.5px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  font-size: 18px;
  color: var(--ink-soft);
  transition: transform .25s ease;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 20px;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.6;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  margin-top: -2px;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 60px 50px 0;
  background:
    linear-gradient(180deg, rgba(20, 50, 110, 0.55) 0%, rgba(8, 25, 60, 0.85) 60%, rgba(4, 16, 40, 0.95) 100%);
  border: 1px solid rgba(140, 180, 230, 0.14);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  min-height: 280px;
  padding-bottom: 50px;
}
.footer::before {
  /* grid pattern on top half */
  content: "";
  position: absolute;
  inset: 0 0 50% 0;
  background-image:
    linear-gradient(to right, rgba(170, 210, 255, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(170, 210, 255, 0.10) 1px, transparent 1px);
  background-size: 70px 70px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  z-index: 2;
}
.footer-headline {
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  color: #fff;
}
.footer-address {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-top: 8px;
  justify-content: end;
  justify-items: start;
}
.footer-col h3 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }

/* footer wordmark + cube removed per design */

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 40px 24px 60px; min-height: auto; }
  .hero-visual { order: -1; }
  .nav-wrap { padding: 18px 18px 0; flex-wrap: wrap; }
  .nav-links { gap: 16px; }
  .workflow-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { flex: 0 0 calc(100% - 40px); padding: 22px 22px 28px; }
  .feature-card h3 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(4, 7, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 14px;
    gap: 10px;
  }
  .nav { padding: 6px 14px; gap: 12px; }
  .nav-links { display: none; }
  .nav-divider { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .hero-title { font-size: 44px; }
  .big-heading { font-size: 30px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .integration-card { padding: 30px 18px; }
  .workflow { padding: 60px 22px; }
  .prompts, .integrates, .benefits, .faq { padding-left: 22px; padding-right: 22px; }
  .footer { padding: 40px 22px 0; border-radius: 20px 20px 0 0; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #2e9bff;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-family: var(--font-mono);
  font-size: 13px;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons as <button> tags need to look identical to <a> ---------- */
button.btn {
  font-family: var(--font-mono);
  appearance: none;
  -webkit-appearance: none;
}
button.btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

/* ---------- Active nav link ---------- */
.nav-links a.is-active {
  opacity: 1;
  color: var(--accent-light);
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .22s ease;
}
.modal.is-open { opacity: 1; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 30, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #0c1f44 0%, #06142f 100%);
  border: 1px solid rgba(120,170,240,0.22);
  border-radius: 18px;
  padding: 32px 30px 28px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7),
              0 0 60px -10px rgba(46,155,255,0.25);
  transform: translateY(8px) scale(.98);
  transition: transform .22s ease;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.modal.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  right: 14px; top: 12px;
  background: transparent;
  border: 0;
  color: var(--ink-dim);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.modal-close:hover { background: var(--line-soft); color: #fff; }
.modal-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  text-align: center;
}
.modal-sub {
  margin: 0 0 22px;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Clean "Book a demo" modal (single, injected component) */
.demo-card {
  max-width: 500px;
  text-align: center;
  padding: 32px 32px 28px;
}
.demo-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 4px auto 18px;
  border-radius: var(--r-md);
  background: var(--accent-tint);
  color: var(--accent-light);
}
.demo-card-icon svg { width: 26px; height: 26px; }
.demo-card h3 { font-size: 24px; }
.demo-card-sub {
  margin: 6px auto 18px;
  max-width: 360px;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
}
.demo-card-btn { width: 100%; height: 50px; font-size: 16px; }
.demo-card-alt {
  display: inline-block;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 13.5px;
  text-decoration: none;
}
.demo-card-alt:hover { color: var(--ink); text-decoration: underline; }
.modal-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.modal-form label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.modal-form input,
.modal-form textarea {
  width: 100%;
  background: var(--pill-bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.modal-form input::placeholder,
.modal-form textarea::placeholder { color: var(--ink-soft); }
.modal-form input:focus,
.modal-form textarea:focus {
  border-color: rgba(46, 155, 255, 0.6);
  background: rgba(46, 155, 255, 0.05);
}
.modal-form textarea { resize: vertical; min-height: 88px; }
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.modal-success {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--accent-light);
}

@media (max-width: 520px) {
  .modal { padding: 12px; }
  .modal-card { padding: 24px 20px 20px; border-radius: 14px; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

/* Pricing-page background (replaces hero grid; subtle glow blobs) */
.pricing-bg {
  position: absolute;
  inset: 0;
  height: 1400px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pricing-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.pricing-blob-1 {
  width: 900px; height: 900px;
  left: -300px; top: -200px;
  background: radial-gradient(closest-side, rgba(46,155,255,0.55), rgba(46,155,255,0) 70%);
}
.pricing-blob-2 {
  width: 700px; height: 700px;
  right: -250px; top: 200px;
  background: radial-gradient(closest-side, rgba(80,180,255,0.30), rgba(80,180,255,0) 70%);
}

/* Pricing hero */
.pricing-hero {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 36px 30px;
  text-align: center;
}
.pricing-hero .pill {
  margin: 0 auto 20px;
}
.pricing-title {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.pricing-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 32px;
}

/* Billing monthly/yearly toggle */
.billing-toggle {
  display: inline-flex;
  background: var(--pill-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 4px;
}
.billing-tab {
  background: transparent;
  border: 0;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s ease, color .15s ease;
}
.billing-tab:hover { color: #fff; }
.billing-tab.is-active {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(46,155,255,0.7);
}
.billing-save {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--ink-ghost);
  padding: 3px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Tier cards */
.tiers {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 36px 80px;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 30px 28px;
  background: linear-gradient(180deg, rgba(14, 30, 60, 0.55) 0%, rgba(6, 18, 40, 0.85) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tier-featured {
  background: linear-gradient(180deg, rgba(30, 90, 180, 0.35) 0%, rgba(10, 40, 110, 0.65) 60%, rgba(6, 18, 40, 0.85) 100%);
  border-color: rgba(120, 195, 255, 0.45);
  box-shadow:
    0 30px 70px -20px rgba(46,155,255,0.35),
    inset 0 1px 0 var(--line);
  transform: translateY(-8px);
}
.tier-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #02132f;
  background: linear-gradient(180deg, #a5d8ff 0%, #5ec3ff 100%);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(94,195,255,0.6);
}
.tier-header { margin-bottom: 22px; }
.tier-name {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  color: #fff;
}
.tier-tag {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 0;
}
.tier-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-2);
}
.tier-price-amt {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.tier-price-period {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-dim);
}
.tier-price-sub {
  flex-basis: 100%;
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}
.tier-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.tier-features .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 155, 255, 0.18);
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 700;
}
.tier-featured .tier-features .check {
  background: rgba(120, 200, 255, 0.30);
  color: #fff;
}
.tier-cta {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 500;
}
.btn-tier-primary {
  background: linear-gradient(180deg, #5ec3ff 0%, #2e9bff 60%, #1a7ee0 100%);
  color: #02132f;
  border: 1px solid var(--ink-ghost);
  box-shadow: 0 10px 28px -10px rgba(46,155,255,0.8);
}
.btn-tier-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-tier-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(180, 215, 255, 0.25);
}
.btn-tier-secondary:hover {
  background: rgba(120, 180, 255, 0.12);
  border-color: rgba(180, 215, 255, 0.45);
}
.tier-fineprint {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-soft);
  text-align: center;
  margin: 14px 0 0;
  letter-spacing: 0.02em;
}

/* Compare table */
.compare {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 36px;
}
.compare .big-heading { margin-bottom: 36px; }
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(8, 22, 48, 0.55);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.compare-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(10, 28, 60, 0.5);
}
.compare-table tbody th {
  font-weight: 400;
  color: var(--ink-dim);
  width: 35%;
}
.compare-table td {
  color: var(--ink);
  font-weight: 500;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: none; }

/* Wider modal for demo form */
.modal-card-wide {
  max-width: 760px;
  padding: 36px 36px 30px;
}
.modal-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.modal-form-2col .field { margin-bottom: 14px; }
.modal-form-2col .field-full { grid-column: 1 / -1; }
.modal-form select {
  width: 100%;
  background: var(--pill-bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23aebed8' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  transition: border-color .15s ease, background-color .15s ease;
  cursor: pointer;
}
.modal-form select:focus {
  border-color: rgba(46, 155, 255, 0.6);
  background-color: rgba(46, 155, 255, 0.05);
}
.modal-form select option {
  background: #0a1f44;
  color: var(--ink);
}
.req { color: var(--accent-light); }
.field-hint {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 4px;
}
.radio {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0;
}
.radio input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}
.modal-error {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: #ff7e88;
  background: rgba(255, 80, 100, 0.08);
  border: 1px solid rgba(255, 80, 100, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
}

/* Responsive */
@media (max-width: 1100px) and (min-width: 900px) {
  .tiers-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 899px) {
  .tiers-grid { grid-template-columns: 1fr; gap: 20px; }
  .tier-featured { transform: none; }
  .modal-form-2col { grid-template-columns: 1fr; }
  .modal-card-wide { padding: 28px 24px 24px; }
}
@media (max-width: 720px) {
  .pricing-hero { padding: 30px 22px 20px; }
  .tiers { padding: 20px 22px 60px; }
  .compare { padding: 40px 22px; }
  .tier { padding: 28px 22px 22px; }
  .billing-toggle { width: 100%; justify-content: center; }
}


/* =========================================================
   ============== CADABRA vs AURA, V2 DESIGN ==============
   Fresh layout: split hero, head-to-head columns, value cards
   Namespace: .vsx-*
   ========================================================= */

/* --vsx-* comparison-section tokens now live in theme.css. */

/* ---------- HERO (split layout) ---------- */
.vsx-hero {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 48px;
}
.vsx-hero::before {
  content: "";
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(42, 130, 220, 0.20) 0%, rgba(42, 130, 220, 0) 100%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.vsx-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.vsx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 215, 235, 0.78);
  padding: 6px 12px;
  border: 1px solid var(--vsx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 22px;
}
.vsx-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vsx-cad);
  box-shadow: 0 0 8px var(--vsx-cad);
}

.vsx-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vsx-title-row { display: flex; align-items: center; gap: 12px; }
.vsx-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 10px;
  font-size: 0.92em;
  letter-spacing: -0.02em;
  border: 1px solid var(--vsx-line-strong);
}
.vsx-tag-cad {
  background: linear-gradient(135deg, rgba(42, 174, 244, 0.22), rgba(42, 130, 220, 0.10));
  border-color: rgba(42, 174, 244, 0.45);
  color: #fff;
}
.vsx-tag-aura {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 244, 255, 0.85);
}
.vsx-vs {
  font-family: var(--font-mono);
  font-size: 0.32em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 215, 235, 0.55);
  margin-left: 4px;
  align-self: flex-start;
  margin-top: 4px;
}

.vsx-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--vsx-dim);
  margin: 0 0 36px;
  max-width: 540px;
}

.vsx-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.vsx-stat {
  padding: 16px 14px;
  border: 1px solid var(--vsx-line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
}
.vsx-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #a9c8ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vsx-stat-lbl {
  font-size: 12px;
  line-height: 1.4;
  color: var(--vsx-dim);
}

/* Hero visual, browser-chrome card around the SolidWorks + Cadabra image */
.vsx-hero-visual {
  position: relative;
}
.vsx-visual-card {
  border: 1px solid var(--vsx-line-strong);
  border-radius: 14px;
  background: linear-gradient(180deg, #0c1830, #06101f);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 60px -10px rgba(42, 174, 244, 0.20);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}
.vsx-visual-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(8, 14, 28, 0.9);
  border-bottom: 1px solid var(--vsx-line);
}
.vsx-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.vsx-dot-r { background: #ff5f57; }
.vsx-dot-y { background: #febc2e; }
.vsx-dot-g { background: #28c840; }
.vsx-visual-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(200, 215, 235, 0.72);
  text-transform: uppercase;
}
.vsx-visual-card img {
  width: 100%; height: auto; display: block;
}

/* ---------- Section heads ---------- */
.vsx-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.vsx-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 215, 235, 0.6);
  margin-bottom: 10px;
}
.vsx-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

/* ---------- HEAD-TO-HEAD COLUMNS ---------- */
.vsx-h2h {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}
.vsx-h2h-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
}
.vsx-col {
  position: relative;
  border: 1px solid var(--vsx-line);
  border-radius: 16px;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.85), rgba(8, 14, 28, 0.9));
}
.vsx-col-cad {
  border-color: rgba(42, 174, 244, 0.30);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(42, 174, 244, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(15, 22, 38, 0.92), rgba(8, 14, 28, 0.92));
  box-shadow: 0 0 0 1px rgba(42, 174, 244, 0.05) inset;
}
.vsx-col-head {
  border-bottom: 1px solid var(--vsx-line);
  padding-bottom: 18px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.vsx-col-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.vsx-col-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 215, 235, 0.6);
}
.vsx-col-tag em {
  font-style: normal;
  color: #fff;
}
.vsx-col-cad .vsx-col-tag em { color: var(--vsx-cad); }

.vsx-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vsx-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--vsx-ink);
}
.vsx-col-aura .vsx-list li:has(.vsx-mark-no) {
  color: rgba(200, 215, 235, 0.55);
}

/* Yes / No marks */
.vsx-mark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}
.vsx-mark-yes {
  background: rgba(58, 196, 113, 0.14);
  border: 1.4px solid var(--vsx-yes);
  box-shadow: 0 0 10px rgba(58, 196, 113, 0.30);
}
.vsx-mark-yes::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 9px;
  width: 4px; height: 7px;
  border-right: 1.6px solid var(--vsx-yes);
  border-bottom: 1.6px solid var(--vsx-yes);
  transform: rotate(45deg);
}
.vsx-mark-no {
  background: rgba(244, 71, 71, 0.10);
  border: 1.4px solid var(--vsx-no);
  box-shadow: 0 0 10px rgba(244, 71, 71, 0.25);
}
.vsx-mark-no::before,
.vsx-mark-no::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 9px; height: 1.4px;
  background: var(--vsx-no);
  border-radius: 1px;
}
.vsx-mark-no::before { transform: translate(-50%, -50%) rotate(45deg); }
.vsx-mark-no::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Divider with vs pill */
.vsx-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsx-divider::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--vsx-line-strong) 25%, var(--vsx-line-strong) 75%, transparent);
}
.vsx-divider-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #0a1428;
  border: 1px solid var(--vsx-line-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 215, 235, 0.82);
  z-index: 1;
}

/* ---------- VALUE CARDS ---------- */
.vsx-values {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 32px 80px;
}
.vsx-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.vsx-value {
  position: relative;
  border: 1px solid var(--vsx-line);
  border-radius: 16px;
  padding: 32px 28px 28px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(42, 174, 244, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(15, 22, 38, 0.85), rgba(8, 14, 28, 0.92));
  overflow: hidden;
}
.vsx-value::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 174, 244, 0.04));
  pointer-events: none;
}
.vsx-value-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(42, 174, 244, 0.18), rgba(42, 174, 244, 0.04));
  border: 1px solid rgba(42, 174, 244, 0.30);
  color: var(--vsx-cad);
}
.vsx-value-icon svg { width: 28px; height: 28px; }
.vsx-value-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.vsx-value-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--vsx-dim);
  margin: 0;
}

/* ---------- CTA ---------- */
.vsx-cta {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 0 32px;
}
.vsx-cta-card {
  position: relative;
  border: 1px solid var(--vsx-line-strong);
  border-radius: 18px;
  padding: 52px 32px 44px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(42, 174, 244, 0.22) 0%, rgba(10, 26, 54, 0.6) 60%, rgba(8, 22, 50, 0.7) 100%);
}
.vsx-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 110%, rgba(42, 174, 244, 0.25), transparent 70%);
  pointer-events: none;
}
.vsx-cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 10px;
  position: relative;
}
.vsx-cta-sub {
  color: var(--vsx-dim);
  font-size: 15px;
  margin: 0 0 26px;
  position: relative;
}
.vsx-cta-actions {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .vsx-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .vsx-visual-card { transform: none; }
  .vsx-h2h-grid { grid-template-columns: 1fr; gap: 16px; }
  .vsx-divider { height: 28px; }
  .vsx-divider::before { width: 60%; height: 1px; left: 20%; right: 20%; top: 50%; bottom: auto; background: linear-gradient(90deg, transparent, var(--vsx-line-strong) 25%, var(--vsx-line-strong) 75%, transparent); }
  .vsx-value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .vsx-hero { padding: 40px 20px 32px; }
  .vsx-h2h { padding: 50px 20px 40px; }
  .vsx-values { padding: 20px 20px 60px; }
  .vsx-cta { padding: 0 20px; margin-bottom: 50px; }
  .vsx-hero-stats { grid-template-columns: 1fr; }
  .vsx-stat { display: flex; align-items: baseline; gap: 14px; }
  .vsx-stat-num { margin-bottom: 0; }
}

/* ============================================================
   v3, Newsletter, Calendly modal, social links, a11y helpers
   ============================================================ */

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

/* ---------- Newsletter ---------- */
.newsletter {
  max-width: 1200px;
  margin: 96px auto 64px;
  padding: 0 32px;
}
.newsletter-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 56px 56px;
  border-radius: 28px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(42, 174, 244, 0.18), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(42, 174, 244, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(14, 31, 60, 0.85), rgba(8, 21, 46, 0.85));
  border: 1px solid rgba(120, 180, 230, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 30px 60px rgba(0, 12, 32, 0.35);
}
.newsletter-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 12px 0 12px;
}
.newsletter-sub {
  color: rgba(220, 232, 246, 0.78);
  font-size: 16px;
  line-height: 1.55;
  max-width: 46ch;
  margin: 0;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.newsletter-form input[type="email"] {
  grid-column: 1;
  height: 56px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(7, 18, 38, 0.85);
  border: 1px solid rgba(120, 180, 230, 0.22);
  color: #ffffff;
  font-size: 15.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(220, 232, 246, 0.55); }
.newsletter-form input[type="email"]:focus {
  border-color: rgba(42, 174, 244, 0.85);
  box-shadow: 0 0 0 4px rgba(42, 174, 244, 0.18);
}
.newsletter-form .btn { grid-column: 2; height: 56px; }
.newsletter-status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 14px;
  min-height: 1.2em;
  color: rgba(220, 232, 246, 0.75);
}
.newsletter-status.is-success { color: #6bdc8e; }
.newsletter-status.is-error   { color: #ff8b8b; }
@media (max-width: 900px) {
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 24px;
  }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form .btn { grid-column: 1; }
}

/* ---------- Footer socials ---------- */
.footer-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(220, 232, 246, 0.78);
  text-decoration: none;
  font-size: 15px;
  transition: color 140ms ease;
}
.footer-socials a:hover { color: #ffffff; }
.footer-socials .social-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
}

/* ---------- Calendly modal card (legacy single-column) ---------- */
.modal-card-calendly {
  width: min(900px, 96vw);
  max-width: 96vw;
  max-height: 92vh;
  padding: 28px 28px 24px;
  overflow: hidden;
}
.modal-card-calendly h3 { margin: 0 0 6px; }
.modal-card-calendly .modal-sub { margin: 0 0 18px; }
.modal-card-calendly .calendly-inline-widget {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1428;
  border: 1px solid rgba(120, 180, 230, 0.18);
}
@media (max-width: 720px) {
  .modal-card-calendly { padding: 18px 14px; }
  .modal-card-calendly .calendly-inline-widget { height: 600px !important; }
}

/* ---------- Split modal: form + Calendly side-by-side ---------- */
.modal-card-split {
  width: min(1080px, 96vw);
  max-width: 96vw;
  max-height: 92vh;
  padding: 28px 30px 26px;
  overflow-y: auto;
}
.modal-card-split-wide {
  width: min(1180px, 96vw);
}
.modal-card-split .split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}
.modal-card-split-wide .split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.modal-card-split .split-form h3 { margin: 0 0 6px; }
.modal-card-split .split-form .modal-sub { margin: 0 0 18px; }
.modal-card-split .split-cal {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(46,155,255,0.08) 0%, rgba(46,155,255,0.02) 100%);
  border: 1px solid rgba(120, 180, 230, 0.18);
  border-radius: 16px;
  padding: 18px 18px 18px;
}
.modal-card-split .split-cal-head {
  margin: 0 0 12px;
}
.modal-card-split .split-cal-head h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.modal-card-split .split-cal-head p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.modal-card-split .calendly-inline-widget {
  width: 100%;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #0a1428;
  border: 1px solid rgba(120, 180, 230, 0.12);
}
.modal-card-split .modal-submit { margin-top: 8px; }
.modal-card-split .modal-success {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: #7ce0a1;
  background: rgba(80, 220, 140, 0.08);
  border: 1px solid rgba(80, 220, 140, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
}
@media (max-width: 980px) {
  .modal-card-split .split-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .modal-card-split .calendly-inline-widget { height: 560px !important; }
}
@media (max-width: 720px) {
  .modal-card-split { padding: 20px 16px 18px; }
  .modal-card-split .split-cal { padding: 14px; }
  .modal-card-split .calendly-inline-widget { height: 520px !important; }
}

/* ---------- Wizard modal (two-step: form -> calendar) ---------- */
.modal-card-wizard {
  width: min(620px, 96vw);
  max-width: 96vw;
  max-height: 92vh;
  padding: 26px 30px 24px;
  overflow-y: auto;
}
.modal-card-wizard-wide {
  width: min(760px, 96vw);
}
.wizard-stepper {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.wizard-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(140, 170, 210, 0.12);
  border: 1px solid rgba(140, 170, 210, 0.22);
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.wizard-step-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wizard-step.is-active .wizard-step-num {
  background: linear-gradient(180deg, #5ab7ff 0%, #2aaef4 100%);
  border-color: rgba(120, 200, 255, 0.55);
  color: #051428;
  box-shadow: 0 0 0 4px rgba(46, 155, 255, 0.18);
}
.wizard-step.is-active { color: var(--ink); }
.wizard-step.is-active .wizard-step-label { color: var(--ink); }
.wizard-step.is-complete .wizard-step-num {
  background: rgba(80, 220, 140, 0.18);
  border-color: rgba(80, 220, 140, 0.45);
  color: transparent;
  position: relative;
}
.wizard-step.is-complete .wizard-step-num::before {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ce0a1;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}
.wizard-step.is-complete .wizard-step-label { color: #7ce0a1; }
.wizard-step-sep {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(140,170,210,0.22) 0%, rgba(140,170,210,0.06) 100%);
  min-width: 24px;
}
.wizard-pane[hidden] { display: none !important; }
.wizard-pane h3 { margin: 0 0 6px; }
.wizard-pane .modal-sub { margin: 0 0 18px; }
.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(120, 180, 230, 0.12);
}
@media (max-width: 720px) {
  .modal-card-wizard { padding: 20px 18px 18px; }
  .wizard-stepper { gap: 8px; margin-bottom: 18px; }
  .wizard-step-label { display: none; }
  .wizard-step.is-active .wizard-step-label { display: inline; }
}

/* ---------- Google Calendar scheduler card ---------- */
.gcal-card[hidden] { display: none !important; }
.gcal-card-locked {
  background: linear-gradient(180deg, rgba(140,160,200,0.06) 0%, rgba(10,30,68,0.4) 100%);
  border-color: rgba(140, 170, 210, 0.16);
  opacity: 0.92;
}
.gcal-card-locked .gcal-card-body strong { color: var(--ink-dim); }
.gcal-card-icon-muted {
  background: rgba(140, 170, 210, 0.10) !important;
  color: rgba(180, 200, 230, 0.55) !important;
  border-color: rgba(140, 170, 210, 0.16) !important;
}
.gcal-card .btn[disabled],
.gcal-card .btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.modal-submit.is-success {
  background: linear-gradient(180deg, #4dc88a 0%, #2fb175 100%) !important;
  border-color: rgba(80, 220, 140, 0.5) !important;
  color: #051a10 !important;
  cursor: default;
}
.gcal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px 22px;
  background: linear-gradient(180deg, rgba(46,155,255,0.10) 0%, rgba(10,30,68,0.4) 100%);
  border: 1px solid rgba(120, 180, 230, 0.22);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 var(--pill-bg);
}
.gcal-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(46,155,255,0.16);
  color: #6fc4ff;
  border: 1px solid rgba(120, 180, 230, 0.22);
}
.gcal-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gcal-card-body strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.gcal-card-body span {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
}
.gcal-card-btn {
  margin-top: 6px;
  align-self: stretch;
  justify-content: center;
  text-align: center;
}
.gcal-card-note {
  margin: 2px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- NVIDIA badge repositioned to clear the chrome gear ---------- */
.nvidia-badge {
  right: 0% !important;
  bottom: -2% !important;
}
@media (max-width: 1200px) {
  .nvidia-badge {
    right: -2% !important;
    bottom: -4% !important;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
}
@media (max-width: 900px) {
  .nvidia-badge {
    right: 4% !important;
    bottom: -8% !important;
    transform: scale(0.85);
  }
}

/* ---------- Carousel arrow disabled state ---------- */
.carousel-arrow.is-disabled,
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: auto;
}

/* ───────────────────────────────────────────────────────────────
   Auth-aware nav button (Sign in / Dashboard)
   ─────────────────────────────────────────────────────────────── */
.btn-auth { padding-inline: 14px; }
.btn-secondary {
  background: rgba(0, 170, 255, 0.12);
  color: #cfeaff;
  border: 1px solid rgba(0, 170, 255, 0.4);
  font-weight: 500;
}
.btn-secondary:hover {
  background: rgba(0, 170, 255, 0.18);
  color: #ffffff;
  border-color: rgba(0, 170, 255, 0.6);
}

/* ============================================================
   LEGAL PAGES (terms, privacy, trademarks)
   ============================================================ */
.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 28px 96px;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.legal-page .legal-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 12px;
  border: 1px solid rgba(46, 155, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(46, 155, 255, 0.06);
  margin-bottom: 18px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.legal-page .legal-meta {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 40px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 48px 0 14px;
  letter-spacing: -0.01em;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
.legal-page h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal-page p, .legal-page li {
  color: var(--ink-dim);
  font-size: 15.5px;
}
.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin: 10px 0 16px;
}
.legal-page li { margin: 6px 0; }
.legal-page a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(46,155,255,0.4); }
.legal-page a:hover { text-decoration-color: var(--primary); }
.legal-page strong { color: var(--ink); }
.legal-page .legal-caps {
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.legal-page .legal-callout {
  background: rgba(46, 155, 255, 0.05);
  border: 1px solid rgba(46, 155, 255, 0.18);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 18px 0;
}
.legal-page .legal-warn {
  background: rgba(255, 180, 80, 0.04);
  border: 1px solid rgba(255, 180, 80, 0.18);
  border-left: 3px solid #f1b04a;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 18px 0;
}
.legal-page .legal-toc {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 0 0 48px;
}
.legal-page .legal-toc .legal-toc-heading {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-weight: 500;
}
.legal-page .legal-toc ol {
  columns: 2;
  column-gap: 28px;
  list-style: decimal;
  padding-left: 18px;
  margin: 0;
}
.legal-page .legal-toc li { margin: 4px 0; break-inside: avoid; }
.legal-page .legal-toc a { text-decoration: none; }
.legal-page .legal-toc a:hover { text-decoration: underline; }
.legal-page .legal-contact {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
}
.legal-page .legal-contact p { margin: 4px 0; }

/* Footer legal row */
.footer-legal {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--font-sans);
}
.footer-legal ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  padding: 0;
  margin: 0;
}
.footer-legal a { color: var(--ink-soft); text-decoration: none; }
.footer-legal a:hover { color: var(--ink); }
.footer-legal .footer-disclaimer {
  flex: 1 1 100%;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.78;
  line-height: 1.6;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .legal-page { padding: 96px 20px 64px; }
  .legal-page .legal-toc ol { columns: 1; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   BLOG, index + article styles
   ============================================================= */

.blog-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 132px 28px 96px;
  color: var(--ink);
}

.blog-hero { max-width: 760px; margin-bottom: 56px; }
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
  color: var(--ink);
}
.blog-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 60ch;
}

.blog-section { margin-top: 56px; }
.blog-section-head { margin-bottom: 24px; }
.blog-section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.blog-section-sub { color: var(--ink-soft); font-size: 14px; margin: 0; }

.blog-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}
.blog-card:hover {
  border-color: rgba(46, 155, 255, 0.45);
  background: rgba(46, 155, 255, 0.04);
  transform: translateY(-2px);
}
.blog-card-link {
  display: block;
  padding: 22px 22px 20px;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  margin: 12px 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.blog-card p {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.blog-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(46, 155, 255, 0.35);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.blog-meta {
  display: block;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Press section */
.press-empty {
  background: var(--card);
  border: 1px dashed var(--card-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.55;
}
.press-empty a { color: var(--primary); }
.press-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.press-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}
.press-item a {
  display: block;
  padding: 18px 22px;
  color: inherit;
  text-decoration: none;
}
.press-item:hover { border-color: rgba(46, 155, 255, 0.45); }
.press-outlet {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.press-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 6px 0 6px;
  color: var(--ink);
}
.press-item p { color: var(--ink-dim); font-size: 14px; margin: 0 0 10px; }

/* Blog index CTA */
.blog-cta {
  margin-top: 72px;
  background: linear-gradient(180deg, rgba(46, 155, 255, 0.08), rgba(46, 155, 255, 0.02));
  border: 1px solid rgba(46, 155, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.blog-cta-inner { max-width: 720px; }
.blog-cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.blog-cta p { color: var(--ink-dim); margin: 0 0 18px; }
.blog-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================= */
/* BLOG, individual article                                     */
/* ============================================================= */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 132px 28px 96px;
  color: var(--ink);
}

.article-header { margin-bottom: 36px; }
.article-crumbs { margin: 0 0 18px; font-size: 13px; }
.article-crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.article-crumbs a:hover { color: var(--ink); }
.article-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(46, 155, 255, 0.35);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.blog-article h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.article-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0;
}

.article-body { font-size: 17px; line-height: 1.7; color: var(--ink-dim); }
.article-body .article-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 28px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 44px 0 14px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  margin: 28px 0 10px;
}
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 18px; }
.article-body li { margin: 6px 0; }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--ink); }
.article-body strong { color: var(--ink); }
.article-body code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: rgba(46, 155, 255, 0.10);
  border: 1px solid rgba(46, 155, 255, 0.20);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}
.article-body em { color: var(--ink); font-style: italic; }
.article-body .article-quote {
  border-left: 3px solid var(--primary);
  background: rgba(46, 155, 255, 0.05);
  margin: 22px 0;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
}
.article-body .article-quote p { margin: 6px 0; color: var(--ink); font-size: 16px; }
.article-body .article-quote strong { color: var(--primary); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Article CTA */
.article-cta {
  margin: 56px 0 32px;
  background: linear-gradient(180deg, rgba(46, 155, 255, 0.08), rgba(46, 155, 255, 0.02));
  border: 1px solid rgba(46, 155, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 8px;
}
.article-cta p { color: var(--ink-dim); margin: 0 0 16px; font-size: 15px; }
.article-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Related posts */
.related-posts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease;
}
.related-card:hover { border-color: rgba(46, 155, 255, 0.45); }
.related-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: uppercase;
}
.related-title { color: var(--ink); font-weight: 500; line-height: 1.35; }

@media (max-width: 720px) {
  .blog-page { padding: 110px 18px 64px; }
  .blog-article { padding: 110px 20px 64px; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-posts { grid-template-columns: 1fr; }
  .blog-cta { padding: 26px 22px; }
  .article-body { font-size: 16px; }
}

/* Cleanup: neutralize template flourishes left over in legacy markup. */
.chev,
.faq-chev,
.pill,
.pill-icon,
.bg-glow,
.bg-glow-2,
.bg-grid,
.pricing-bg,
.pricing-blob,
.vsx-eyebrow,
.vsx-divider,
.vsx-visual-bar { display: none !important; }

.grad-bright,
.grad-dim {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
}
.grad-bright { color: #ffffff !important; }
.grad-dim { color: #8aa1c4 !important; }

/* ============================================================
   COMPONENT LIBRARY, every page builds from these.
   Each component uses tokens only; no raw pixel values.
   ============================================================ */

/* ---------- Global focus ring (keyboard only) ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: inherit;
}
:focus:not(:focus-visible) { outline: none; }

/* ---------- Surface utilities ---------- */
.surface-0 { background: var(--surface-0); color: var(--ink); }
.surface-1 { background: var(--surface-1); color: var(--ink); }
.surface-2 { background: var(--surface-2); color: var(--ink); }
.surface-3 { background: var(--surface-3); color: var(--ink-dark); }

/* ---------- Container widths ---------- */
.container       { max-width: var(--w-wide);  margin: 0 auto; padding: 0 var(--s-6); }
.container-text  { max-width: var(--w-text);  margin: 0 auto; padding: 0 var(--s-6); }
.container-prose { max-width: var(--w-prose); margin: 0 auto; padding: 0 var(--s-6); }

/* ---------- Typography helpers ---------- */
.t-mega {
  font-size: var(--t-mega);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-mega);
  font-weight: 600;
}
.t-display {
  font-size: var(--t-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 600;
  text-wrap: balance;
}
.t-headline {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  text-wrap: balance;
}
.t-title {
  font-size: var(--t-title);
  line-height: var(--lh-title);
  letter-spacing: var(--ls-title);
  font-weight: 600;
}
.t-lede {
  font-size: var(--t-lede);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 400;
  color: var(--ink-dim);
}
.t-body {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 400;
}
.t-caption {
  font-size: var(--t-caption);
  line-height: var(--lh-tight);
  font-weight: 500;
  color: var(--ink-soft);
}
.t-kicker {
  font-size: var(--t-kicker);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Buttons (unified, three sizes, three variants) ---------- */
.btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
  user-select: none;
}
.btn-v2:active { transform: scale(0.97); }

.btn-v2.btn-sm { height: 36px; padding: 0 var(--s-4); font-size: 14px; }
.btn-v2.btn-md { height: 44px; padding: 0 var(--s-5); font-size: 15px; }
.btn-v2.btn-lg { height: 56px; padding: 0 var(--s-6); font-size: 17px; }

.btn-v2.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn-v2.btn-primary:hover { background: var(--accent-pressed); border-color: var(--accent-pressed); }

.btn-v2.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-v2.btn-ghost:hover { background: var(--line-soft); border-color: rgba(255,255,255,0.22); }

.btn-v2.btn-secondary {
  background: var(--line);
  color: var(--ink);
  border-color: transparent;
}
.btn-v2.btn-secondary:hover { background: var(--line-strong); }

.btn-v2:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- Card primitives ---------- */
.card-v2 {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--card-pad);
  transition:
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.card-v2.card-hover:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-v2.card-lg     { padding: var(--card-pad-lg); }
.card-v2.card-feature { border-radius: var(--r-feature); padding: var(--card-pad-lg); }

/* ---------- Input primitives ---------- */
.input-v2 {
  width: 100%;
  height: 48px;
  padding: 0 var(--s-4);
  background: var(--line-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-input);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}
.input-v2:hover { border-color: rgba(255,255,255,0.22); }
.input-v2:focus {
  outline: none;
  background: var(--line);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.input-v2.input-lg { height: 56px; padding: 0 var(--s-5); font-size: 17px; }
.input-v2::placeholder { color: var(--ink-mute); }

textarea.input-v2 {
  height: auto;
  min-height: 120px;
  padding: var(--s-3) var(--s-4);
  line-height: var(--lh-body);
  resize: vertical;
}

.input-v2.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 69, 58, 0.16);
}

/* ---------- Label primitive (sentence case, not all caps) ---------- */
.label-v2 {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
  margin-bottom: var(--s-2);
  letter-spacing: -0.005em;
}

/* ---------- Section spacing helpers ---------- */
.section       { padding: var(--s-9)  0; }
.section-tight { padding: var(--s-8)  0; }
.section-hero  { padding: var(--s-10) 0; }

/* ---------- Reveal-on-scroll utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-stagger="1"] { transition-delay: 0ms; }
.reveal[data-stagger="2"] { transition-delay: 60ms; }
.reveal[data-stagger="3"] { transition-delay: 120ms; }
.reveal[data-stagger="4"] { transition-delay: 180ms; }
.reveal[data-stagger="5"] { transition-delay: 240ms; }
.reveal[data-stagger="6"] { transition-delay: 300ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Skeleton loader ---------- */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.skeleton {
  display: inline-block;
  background: linear-gradient(90deg,
    var(--line-soft) 0%,
    var(--line-12) 50%,
    var(--line-soft) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--r-input);
  color: transparent;
  user-select: none;
}

/* ---------- Visually hidden (accessibility) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   MOBILE NAV (hamburger + full-screen sheet)
   ============================================================ */

/* Hamburger toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: calc(var(--z-nav) + 1);
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms var(--ease-out),
              opacity 220ms var(--ease-out),
              top 220ms var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-active span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* Full-screen sheet */
.nav-sheet {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 20, 0.97);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  z-index: var(--z-nav);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 240ms var(--ease-out),
              visibility 240ms var(--ease-out),
              transform 240ms var(--ease-out);
}
.nav-sheet.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Sheet header row — mirrors the nav bar */
.nav-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  flex-shrink: 0;
}
.nav-sheet-head .nav-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-sheet-head .nav-logo { width: 32px; height: 32px; object-fit: contain; }
.nav-sheet-head .brand-text { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; }

/* Close button */
.nav-sheet-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  transition: background 160ms;
}
.nav-sheet-close:hover { background: rgba(255,255,255,0.14); }
.nav-sheet-close svg { width: 18px; height: 18px; }

/* Scrollable nav body */
.nav-sheet-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 8px 24px 24px;
  gap: 2px;
}

/* Group label */
.nav-sheet-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 16px 0 6px;
}

/* All links */
.nav-sheet-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 160ms, color 160ms;
}
.nav-sheet-link:hover,
.nav-sheet-link:focus-visible { background: rgba(255,255,255,0.07); }
.nav-sheet-link-sub { color: var(--ink-dim); font-size: 16px; }
.nav-sheet-link-sub:hover,
.nav-sheet-link-sub:focus-visible { color: var(--ink); background: rgba(255,255,255,0.07); }

/* Divider */
.nav-sheet-divider {
  height: 1px;
  background: var(--line);
  margin: 10px 12px 8px;
}

/* Footer CTAs */
.nav-sheet-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px max(24px, env(safe-area-inset-bottom));
  flex-shrink: 0;
  border-top: 1px solid var(--line);
}
.nav-sheet-footer .btn {
  width: 100%;
  justify-content: center;
  height: 52px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-divider { display: none !important; }
}

/* ============================================================
   NAV GLASS-ON-SCROLL
   ============================================================ */
.nav-wrap.is-scrolled .nav-pill {
  background: rgba(4, 7, 16, 0.72) !important;
  border-color: var(--line-12) !important;
}

/* ============================================================
   SMOOTH DETAILS (FAQ open/close)
   ============================================================ */
.faq-item .faq-answer {
  transition: max-height var(--dur-mid) var(--ease-out),
              opacity var(--dur-mid) var(--ease-out);
}
@media (prefers-reduced-motion: no-preference) {
  .faq-item:not([open]) .faq-answer { max-height: 0; opacity: 0; }
  .faq-item[open]      .faq-answer { max-height: 800px; opacity: 1; }
}

/* ============================================================
   HERO V2 (full-bleed video + centered display title)
   ============================================================ */
.hero-v2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--surface-0);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  margin-top: -88px; /* pull hero under transparent nav */
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.75) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0.75) 100%);
}
.hero-v2-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--s-6);
  max-width: var(--w-text);
}
.hero-v2-kicker {
  display: inline-block;
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: var(--s-5);
}
.hero-v2-title {
  font-size: var(--t-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.hero-v2-sub {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink-dim);
  margin: 0 auto var(--s-7);
  max-width: 640px;
  text-wrap: balance;
}
.hero-v2-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-v2-chevron {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-soft);
  z-index: 2;
  animation: heroChevronBob 2.4s var(--ease-in-out) infinite;
  padding: var(--s-3);
  border-radius: var(--r-pill);
  transition: color var(--dur-fast);
}
.hero-v2-chevron:hover { color: var(--ink); }
@keyframes heroChevronBob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2-chevron { animation: none; }
}
@media (max-width: 720px) {
  .hero-v2-title { font-size: clamp(40px, 16vw, 80px); }
  .hero-v2-sub   { font-size: 18px; }
  .hero-v2-actions { flex-direction: column; align-items: stretch; padding: 0 var(--s-3); }
  .hero-v2-actions .btn-v2 { width: 100%; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--surface-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) 0;
}
.trust-strip-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.trust-item .trust-logo { width: 60px; height: auto; opacity: 0.8; filter: grayscale(0.3); }
@media (max-width: 720px) {
  .trust-strip-inner { gap: var(--s-3); justify-content: center; }
  .trust-item { font-size: 12px; }
}

/* ============================================================
   HOME PAGE, token-driven cleanup of existing sections
   ============================================================ */

/* Hide the old hero (we replaced it with .hero-v2) */
.hero { display: none !important; }

/* Tighter section padding */
.prompts {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6) var(--s-8);
  text-align: center;
}
.prompts .big-heading {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto var(--s-6);
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}
.integrates {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
.integrates .big-heading {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--s-7);
  color: var(--ink);
}
.workflow {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
.workflow-title {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  color: var(--ink);
}
.benefits {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
.benefits .big-heading {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--s-7);
  color: var(--ink);
}
.faq {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
.faq .big-heading {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  text-align: center;
  margin: 0 auto var(--s-7);
  color: var(--ink);
}

/* Feature card refinement, h3 down from 38px to 24px (token) */
.feature-card h3 {
  font-size: var(--t-title);
  line-height: var(--lh-title);
  letter-spacing: var(--ls-title);
  font-weight: 600;
}
.feature-card {
  border-radius: var(--r-card);
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

/* Benefit card refinement */
.benefit-card {
  border-radius: var(--r-card);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: var(--s-6);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.benefit-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.benefit-ico {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

/* Workflow step refinement */
.step-icon {
  border-radius: var(--r-card);
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: none;
}
.step-text h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.step-text p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* FAQ refinement */
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-3) var(--s-5);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item summary {
  font-size: 16px;
  font-weight: 500;
  padding: var(--s-3) 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast);
  margin-left: var(--s-3);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--ink);
}
.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  padding: 0 0 var(--s-4);
}

/* Newsletter card refinement */
.newsletter {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-7) var(--s-6) var(--s-9);
}
.newsletter-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-feature);
  padding: var(--card-pad-lg);
  box-shadow: none;
}
.newsletter-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.newsletter-sub {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.55;
}
.newsletter-form input {
  background: var(--line-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-input);
  height: 52px;
  font-size: 16px;
  padding: 0 var(--s-4);
  color: var(--ink);
  transition: border-color var(--dur-fast), background-color var(--dur-fast);
}
.newsletter-form input:focus {
  outline: none;
  background: var(--line);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
}

/* Carousel arrow refinement */
.carousel-arrow {
  background: var(--line);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}
.carousel-arrow:hover {
  background: var(--line-strong);
  border-color: rgba(255,255,255,0.22);
}
.carousel-arrow:active { transform: scale(0.95); }

/* Prompt input refinement */
.prompt-input {
  background: var(--line-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  height: 56px;
  padding: var(--s-1);
  transition: border-color var(--dur-fast), background-color var(--dur-fast);
}
.prompt-input:focus-within {
  background: var(--line);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.prompt-input input {
  background: transparent;
  border: 0;
  font-size: 16px;
  color: var(--ink);
  padding: 0 var(--s-4);
  height: 100%;
  width: 100%;
}
.prompt-input input:focus { outline: none; }
.prompt-input button {
  height: 44px;
  padding: 0 var(--s-5);
  border-radius: var(--r-pill);
  background: var(--accent);
  color: white;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color var(--dur-fast), transform var(--dur-fast);
}
.prompt-input button:hover { background: var(--accent-pressed); }
.prompt-input button:active { transform: scale(0.97); }

/* Hero V2 button overrides, they use new .btn-v2 class, no .btn legacy collision */

/* Nav refinement for the new hero context */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--s-4) var(--s-6);
  background: transparent;
  transition: background-color var(--dur-mid) var(--ease-out);
}
.nav-wrap.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-wrap.is-scrolled .nav-pill,
.nav-wrap.is-scrolled .nav-cta {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Make main content respect fixed nav (when not hero-v2 leading) */
body:not(:has(.hero-v2)) main { padding-top: 88px; }
@supports not selector(:has(.hero-v2)) {
  /* Browsers without :has, accept that hero pulls itself up via negative margin */
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  max-width: var(--w-text);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6) var(--s-6);
  text-align: center;
}
.pricing-title {
  font-size: var(--t-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 600;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.pricing-sub {
  font-size: var(--t-lede);
  line-height: 1.45;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto var(--s-6);
  text-wrap: balance;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  background: var(--line-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 0;
}
.billing-tab {
  background: transparent;
  border: 0;
  padding: 0 var(--s-4);
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: background-color var(--dur-fast), color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.billing-tab:hover { color: var(--ink); }
.billing-tab.is-active {
  background: var(--ink);
  color: var(--surface-0);
}
.billing-save {
  background: rgba(52,199,89,0.18);
  color: #4CD964;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--r-pill);
}
.billing-tab.is-active .billing-save { background: rgba(52,199,89,0.22); color: #2BAB4A; }

/* Tier cards */
.tiers {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-6) var(--s-6) var(--s-9);
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-6);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.tier:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.tier-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(10,132,255,0.06) 0%, var(--surface-2) 40%);
}
.tier-featured:hover { border-color: var(--accent); }
.tier-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px var(--s-3);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.tier-header { margin-bottom: var(--s-5); }
.tier-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-1);
  color: var(--ink);
}
.tier-tag {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}
.tier-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}
.tier-price-amt {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.tier-price-period { font-size: 16px; color: var(--ink-soft); }
.tier-price-orig {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.tier-price-sub {
  width: 100%;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.tier-launch {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-dim);
}
.tier-launch-pct {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--accent-light);
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

/* Launch pricing banner (replaces the old billing toggle) */
.launch-wrap { text-align: center; margin-top: 8px; }
.launch-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  background: var(--accent-tint);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.launch-banner b { color: var(--accent-light); font-weight: 700; }
.launch-banner-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 1px var(--accent);
}
.tier-features {
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-dim);
}
.tier-features .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.tier-cta {
  width: 100%;
  height: 44px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
}
.tier-cta:active { transform: scale(0.97); }
.btn-tier-secondary {
  background: var(--line);
  color: var(--ink);
}
.btn-tier-secondary:hover { background: var(--line-strong); }
.tier-featured .tier-cta,
.btn-tier-primary {
  background: var(--accent);
  color: #fff;
}
.tier-featured .tier-cta:hover,
.btn-tier-primary:hover { background: var(--accent-pressed); }
.tier-fineprint {
  font-size: 12px;
  color: var(--ink-mute);
  margin: var(--s-3) 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .tier-featured { order: -1; }
}

/* Compare table */
.compare {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
.compare .big-heading {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  text-align: center;
  margin: 0 auto var(--s-7);
  color: var(--ink);
}
.compare-table-wrap {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  background: rgba(255,255,255,0.03);
}
.compare-table tbody th {
  font-weight: 500;
  color: var(--ink);
}
.compare-table tbody td {
  color: var(--ink-dim);
  text-align: center;
}
.compare-table tbody td:first-child { text-align: left; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* Pricing FAQ */
#pricing-faq {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
#pricing-faq .big-heading {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  text-align: center;
  margin: 0 auto var(--s-7);
  color: var(--ink);
}

/* ============================================================
   BLOG INDEX & ARTICLES
   ============================================================ */
.blog-page {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6) var(--s-9);
}
.blog-hero {
  text-align: center;
  margin-bottom: var(--s-9);
}
.blog-hero h1 {
  font-size: var(--t-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 600;
  text-wrap: balance;
  margin: var(--s-3) auto var(--s-4);
  color: var(--ink);
  max-width: 760px;
}
.blog-lede {
  font-size: var(--t-lede);
  line-height: 1.45;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto;
  text-wrap: balance;
}
.legal-eyebrow {
  display: inline-block;
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ink-soft);
}
.blog-section { margin-bottom: var(--s-9); }
.blog-section-head { margin-bottom: var(--s-5); }
.blog-section-head h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.blog-section-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-5);
  list-style: none;
  padding: 0;
}
.blog-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.blog-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.blog-card-link {
  display: block;
  padding: var(--s-5);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-card .blog-tag {
  display: inline-block;
  background: var(--accent-tint);
  color: #6FB3FF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.blog-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 var(--s-4);
}
.blog-meta {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.press-empty {
  background: var(--surface-2);
  border: 1px dashed var(--line);
  border-radius: var(--r-card);
  padding: var(--s-7) var(--s-6);
  text-align: center;
  color: var(--ink-dim);
  font-size: 15px;
}
.press-empty a { color: var(--accent); }

.blog-cta {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-feature);
  padding: var(--card-pad-lg);
  text-align: center;
  margin-top: var(--s-9);
}
.blog-cta h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.blog-cta p {
  font-size: 17px;
  color: var(--ink-dim);
  margin: 0 auto var(--s-5);
  max-width: 520px;
  line-height: 1.5;
}
.blog-cta-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Blog article ── */
.blog-article {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6) var(--s-9);
}
.article-header {
  max-width: var(--w-prose);
  margin: 0 auto var(--s-7);
  text-align: left;
}
.article-crumbs { margin-bottom: var(--s-5); }
.article-crumbs a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.article-crumbs a:hover { color: var(--ink); }
.article-eyebrow {
  display: inline-block;
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.article-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 var(--s-4);
  color: var(--ink);
  text-wrap: balance;
}
.article-meta {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.article-body {
  max-width: var(--w-prose);
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.article-body .article-lede {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 var(--s-6);
}
.article-body h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: var(--s-7) 0 var(--s-3);
}
.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  margin: var(--s-6) 0 var(--s-3);
}
.article-body p { margin: 0 0 var(--s-4); }
.article-body ul, .article-body ol {
  margin: 0 0 var(--s-4) var(--s-5);
  padding: 0;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: var(--s-2); padding-left: var(--s-2); }
.article-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast);
}
.article-body a:hover { border-bottom-color: var(--accent); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body code {
  font-family: var(--font-sans);
  background: var(--line-soft);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.92em;
}

.article-cta {
  max-width: var(--w-prose);
  margin: var(--s-9) auto 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--card-pad-lg);
}
.article-cta h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.article-cta p {
  font-size: 15px;
  color: var(--ink-dim);
  margin: 0 0 var(--s-5);
  line-height: 1.5;
}
.article-cta-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.related-posts {
  max-width: var(--w-prose);
  margin: var(--s-7) auto 0;
}
.related-card {
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-5) var(--s-6);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.related-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.related-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.related-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

/* ============================================================
   LEGAL PAGES (terms / privacy / trademarks)
   ============================================================ */
.legal-page {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6) var(--s-9);
}
.legal-page h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
  margin: var(--s-3) 0 var(--s-5);
}
.legal-page h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--s-7) 0 var(--s-3);
}
.legal-page h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-3);
}
.legal-page p,
.legal-page ul,
.legal-page ol {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
  margin-bottom: var(--s-4);
}
.legal-page ul, .legal-page ol { margin-left: var(--s-5); }
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { margin-bottom: var(--s-2); padding-left: var(--s-2); }
.legal-page a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--dur-fast); }
.legal-page a:hover { border-bottom-color: var(--accent); }
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page .legal-eyebrow { color: var(--accent); }
.legal-meta {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: var(--s-7);
}
.legal-callout, .legal-warn {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-card);
  padding: var(--s-5);
  margin: var(--s-5) 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.legal-warn { border-left-color: var(--warning); }
.legal-toc {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-5) var(--s-6);
  margin-bottom: var(--s-6);
  list-style: none;
}
.legal-toc li { margin-bottom: var(--s-2); padding-left: 0; }
.legal-toc li:last-child { margin-bottom: 0; }
.legal-toc a {
  display: inline-block;
  padding: 2px 0;
  font-size: 14px;
  color: var(--ink-dim);
  border-bottom: 0;
  transition: color var(--dur-fast);
}
.legal-toc a:hover { color: var(--ink); }
.legal-caps {
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--ink-dim);
}
.legal-contact {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-5);
  margin-top: var(--s-7);
  font-size: 14px;
  color: var(--ink-dim);
}

@media print {
  .nav-wrap, .footer, .nav-sheet, .nav-toggle { display: none !important; }
  body, .legal-page { background: #fff !important; color: #000 !important; }
  .legal-page * { color: #000 !important; border-color: #ccc !important; background: transparent !important; }
  .legal-page a { color: #0066CC !important; }
}

/* ============================================================
   COMPARISON PAGE (cadabra-vs-aura)
   ============================================================ */
.vsx-hero {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6) var(--s-7);
}
.vsx-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.vsx-title {
  font-size: var(--t-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.vsx-tag { display: block; }
.vsx-tag-cad { color: var(--ink); }
.vsx-tag-aura { color: var(--ink-soft); }
.vsx-vs { display: block; font-size: 24px; color: var(--ink-mute); margin: var(--s-2) 0; font-weight: 500; }
.vsx-sub { font-size: var(--t-lede); color: var(--ink-dim); line-height: 1.5; }
.vsx-visual-card {
  border-radius: var(--r-feature);
  overflow: hidden;
  border: 1px solid var(--line);
}
.vsx-h2h {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-7) var(--s-6);
}
.vsx-section-head { text-align: center; margin-bottom: var(--s-7); }
.vsx-kicker {
  display: inline-block;
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--s-3);
}
.vsx-section-title {
  font-size: var(--t-headline);
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-headline);
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.vsx-col {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-6);
}
.vsx-col-cad { border-color: rgba(10,132,255,0.30); }
.vsx-col-aura { opacity: 0.85; }
.vsx-col-head { margin-bottom: var(--s-5); }
.vsx-col-name { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
.vsx-col-tag { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.vsx-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.vsx-list li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.vsx-mark { width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; margin-top: 2px; }
.vsx-mark-yes { background: rgba(52,199,89,0.18); }
.vsx-mark-yes::before { content: '✓'; display: block; text-align: center; line-height: 18px; color: var(--success); font-size: 12px; font-weight: 700; }
.vsx-mark-no { background: var(--line); }
.vsx-mark-no::before { content: ', '; display: block; text-align: center; line-height: 18px; color: var(--ink-mute); font-size: 12px; }

.vsx-values {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
.vsx-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.vsx-value {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--card-pad-lg);
}
.vsx-value-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--accent-tint);
  border-radius: var(--r-input);
  margin-bottom: var(--s-4);
  color: var(--accent);
}
.vsx-value-icon svg { width: 24px; height: 24px; }
.vsx-value-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.vsx-value-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.vsx-cta {
  max-width: var(--w-text);
  margin: var(--s-7) auto 0;
  padding: var(--s-7) var(--s-6) var(--s-9);
}
.vsx-cta-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-feature);
  padding: var(--card-pad-lg);
  text-align: center;
}
.vsx-cta-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.vsx-cta-sub {
  font-size: 17px;
  color: var(--ink-dim);
  margin: 0 auto var(--s-5);
  max-width: 480px;
  line-height: 1.5;
}
.vsx-cta-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .vsx-hero-inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .vsx-value-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER, flat, quiet, Apple-style
   ============================================================ */
.footer {
  background: var(--surface-0);
  border-top: 1px solid var(--line);
  border-radius: 0 !important;
  max-width: none !important;
  margin: var(--s-9) 0 0 !important;
  padding: var(--s-8) 0 var(--s-5) !important;
  position: relative;
}
.footer::before, .footer::after { display: none !important; }

.footer-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: grid;
  grid-template-columns: 1.4fr 2.5fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
.footer-left { padding-right: 0; }
.footer-headline {
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  margin: 0 0 var(--s-4) !important;
  max-width: 280px;
}
.footer-left .btn,
.footer-left .btn-primary {
  display: inline-flex !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  height: 40px;
  padding: 0 var(--s-4);
  font-size: 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}
.footer-left .btn:hover,
.footer-left .btn-primary:hover { background: var(--accent-pressed) !important; }
.footer-address {
  font-size: 13px;
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.footer-col h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink) !important;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.005em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--s-2); }
.footer-col a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--ink); }

.footer-socials { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-socials li { margin-bottom: 0; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--ink-soft);
  transition: color var(--dur-fast);
}
.footer-socials a:hover { color: var(--ink); }
.footer-socials .social-ico { width: 16px; height: 16px; }

.footer-legal {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-5) var(--s-6) 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  font-size: 12px;
  color: var(--ink-mute);
}
.footer-legal > div:first-child { letter-spacing: -0.005em; }
.footer-legal ul { display: flex; gap: var(--s-4); margin: 0; padding: 0; list-style: none; }
.footer-legal ul a { color: var(--ink-mute); text-decoration: none; transition: color var(--dur-fast); }
.footer-legal ul a:hover { color: var(--ink-soft); }
.footer-disclaimer {
  flex-basis: 100%;
  font-size: 11px;
  color: var(--ink-mute);
  margin: var(--s-3) 0 0 !important;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--surface-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-9) var(--s-6);
}
.stats-band-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  align-items: start;
}
.stat { text-align: left; }
.stat-num {
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.stat-lbl {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.5;
  max-width: 280px;
}
.stat-src {
  display: block;
  margin-top: var(--s-2);
  color: var(--ink-mute);
  font-size: 13px;
}
@media (max-width: 900px) {
  .stats-band-inner { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ============================================================
   FINAL CTA / CLOSE
   ============================================================ */
.final-cta {
  background: var(--surface-0);
  padding: var(--s-10) var(--s-6);
}
.final-cta-inner {
  max-width: var(--w-text);
  margin: 0 auto;
  text-align: center;
}
.final-cta-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.final-cta-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-dim);
  line-height: 1.45;
  margin: 0 auto var(--s-6);
  max-width: 540px;
  text-wrap: balance;
}
.final-cta-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn-v2 { width: 100%; }
}

/* ============================================================
   HERO CURTAIN RAISE (load animation)
   ============================================================ */
html.is-loading .hero-v2-kicker,
html.is-loading .hero-v2-title,
html.is-loading .hero-v2-sub,
html.is-loading .hero-v2-actions {
  opacity: 0;
  transform: translateY(16px);
}
html.is-loaded .hero-v2-kicker,
html.is-loaded .hero-v2-title,
html.is-loaded .hero-v2-sub,
html.is-loaded .hero-v2-actions {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}
html.is-loaded .hero-v2-kicker { transition-delay: 200ms; }
html.is-loaded .hero-v2-title  { transition-delay: 300ms; }
html.is-loaded .hero-v2-sub    { transition-delay: 500ms; }
html.is-loaded .hero-v2-actions { transition-delay: 700ms; }
@media (prefers-reduced-motion: reduce) {
  html.is-loading .hero-v2-kicker,
  html.is-loading .hero-v2-title,
  html.is-loading .hero-v2-sub,
  html.is-loading .hero-v2-actions {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Universal cursor smoothing for sticky elements
   ============================================================ */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ════════════════════════════════════════════════════════════════
   HOME V3, DEPRECATED, replaced by home-v4 below.
   Kept only for the suppress-legacy rules at the bottom.
   ════════════════════════════════════════════════════════════════ */
/* DEPRECATED-V3-MARKER */

/* ════════════════════════════════════════════════════════════════
   HOME V4, overhaul with gradients, scroll effects, single theme,
   fewer font sizes, no decorative lines, no eyebrow labels.
   ════════════════════════════════════════════════════════════════ */

/* Type scale, simplified, three sizes only on the homepage */
.home-v3 {
  --h1: clamp(48px, 6vw, 84px);    /* hero + close */
  --h2: clamp(32px, 3.6vw, 52px);  /* every section head */
  --h3: clamp(24px, 2.6vw, 36px);  /* capability heads */
  --p:  17px;                       /* all body */
  --gradient-1: linear-gradient(135deg, var(--accent) 0%, #6E5BFF 50%, #BC4FFF 100%);
  --gradient-2: linear-gradient(135deg, #00C2FF 0%, var(--accent) 100%);
  --gradient-3: linear-gradient(180deg, var(--accent) 0%, #6E5BFF 100%);
}

.home-v3 { background: var(--surface-deep); color: var(--ink); overflow-x: hidden; }
.home-v3 * { box-sizing: border-box; }

body:has(.home-v3) main { padding-top: 0 !important; }

/* Section heads, single h2 size site-wide on home */
.home-v3 h2 {
  font-size: var(--h2);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.home-v3 p { font-size: var(--p); line-height: 1.55; color: var(--ink-dim); letter-spacing: -0.005em; }

/* CTAs */
.home-v3 .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 200ms;
  user-select: none;
}
.home-v3 .cta:active { transform: scale(0.97); }
.home-v3 .cta-lg { height: 54px; padding: 0 30px; font-size: 16px; }
.home-v3 .cta-xl { height: 64px; padding: 0 40px; font-size: 18px; }

.home-v3 .cta-primary {
  background: var(--gradient-1);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 32px -8px rgba(110, 91, 255, 0.55);
}
.home-v3 .cta-primary:hover { box-shadow: 0 12px 40px -8px rgba(110, 91, 255, 0.7); transform: translateY(-1px); }
.home-v3 .cta-primary:active { transform: scale(0.97) translateY(0); }
.home-v3 .cta-ghost {
  background: var(--line-soft);
  color: var(--ink);
  border-color: var(--ink-ghost);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.home-v3 .cta-ghost:hover { background: var(--line-12); border-color: var(--ink-mute); }
.home-v3 .cta-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--ink-ghost);
  border-radius: 50%;
}

/* ──── HERO CLEAN (restored: text + chrome knob, Inter) ────── */
.hero-clean {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 64px 80px;
  background: var(--surface-deep);
  overflow: hidden;
}
.hero-clean::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 50%, rgba(10, 132, 255, 0.10), transparent 60%),
    radial-gradient(50% 80% at 20% 100%, rgba(110, 91, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-clean-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero-clean-copy { z-index: 1; }
.hero-clean-title {
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
}
.hero-clean-sub {
  font-size: 19px !important;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-strong) !important;
  margin: 0 0 36px !important;
  max-width: 460px;
}
.hero-clean-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-clean-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-clean-glow {
  position: absolute;
  inset: 5%;
  background: radial-gradient(closest-side, rgba(10, 132, 255, 0.35), rgba(110, 91, 255, 0.18) 50%, transparent 80%);
  filter: blur(60px);
  z-index: 0;
}
.hero-clean-knob {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}
.hero-clean-badge {
  position: absolute;
  bottom: 8%; right: 8%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(17, 23, 38, 0.78);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--line-12);
  border-radius: 14px;
}
.hero-clean-badge-text {
  display: flex; flex-direction: column;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--ink-strong);
  line-height: 1.3;
}
.hero-clean-badge img { display: block; height: 22px; width: auto; }
@media (max-width: 900px) {
  .hero-clean { padding: 100px 24px 60px; min-height: auto; }
  .hero-clean-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-clean-sub { margin-left: auto !important; margin-right: auto !important; }
  .hero-clean-actions { justify-content: center; }
  .hero-clean-visual { max-width: 420px; margin: 0 auto; }
}

/* ──── S1, HERO (legacy, now unused but kept for safety) ──── */
.s1-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.s1-aurora {
  position: absolute; inset: -10%;
  z-index: -3;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.55;
}
.s1-aurora-a, .s1-aurora-b, .s1-aurora-c {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.s1-aurora-a {
  width: 60vw; height: 60vw;
  left: -10vw; top: -10vw;
  background: radial-gradient(closest-side, var(--accent), transparent 70%);
  animation: aurora 18s ease-in-out infinite alternate;
}
.s1-aurora-b {
  width: 55vw; height: 55vw;
  right: -10vw; top: 10vw;
  background: radial-gradient(closest-side, #BC4FFF, transparent 70%);
  animation: aurora 22s ease-in-out infinite alternate -6s;
}
.s1-aurora-c {
  width: 65vw; height: 65vw;
  left: 20vw; bottom: -20vw;
  background: radial-gradient(closest-side, #00C2FF, transparent 70%);
  animation: aurora 26s ease-in-out infinite alternate -12s;
}
@keyframes aurora {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5vw, -5vw) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .s1-aurora-a, .s1-aurora-b, .s1-aurora-c { animation: none; }
}
.s1-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.55;
  filter: contrast(1.05) brightness(0.7);
  will-change: transform;
}
.s1-veil {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 60% at 50% 55%, transparent 0%, rgba(5,7,13,0.5) 70%, rgba(5,7,13,0.95) 100%),
    linear-gradient(180deg, rgba(5,7,13,0.4) 0%, rgba(5,7,13,0) 30%, rgba(5,7,13,0) 70%, rgba(5,7,13,0.8) 100%);
}
.s1-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 980px;
}
.s1-title {
  font-size: var(--h1);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 0 0 28px;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #d8dffa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s1-sub {
  font-size: clamp(20px, 2.4vw, 28px) !important;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255,255,255,0.82) !important;
  margin: 0 auto 48px !important;
  max-width: 580px;
}
.s1-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
@media (max-width: 720px) {
  .s1-actions { flex-direction: column; align-items: stretch; width: 100%; padding: 0 24px; }
  .s1-actions .cta { width: 100%; }
}

/* ──── S2, SENTENCE ────────────────────────────────────────── */
.s2-sentence {
  background: var(--surface-deep);
  padding: 200px 64px;
  position: relative;
}
.s2-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.s2-head {
  font-size: var(--h2);
  max-width: 22ch;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #b6c4e0 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s2-foot {
  margin-top: 32px !important;
  color: var(--ink-soft) !important;
  font-size: 17px !important;
}
@media (max-width: 720px) { .s2-sentence { padding: 120px 24px; } }

/* ──── S3, SHOWCASE (scroll-zoom on frame) ────────────────── */
.s3-showcase {
  background: var(--surface-deep);
  padding: 0 32px 200px;
  position: relative;
}
.s3-text {
  max-width: 980px;
  margin: 0 auto 80px;
  text-align: center;
}
.s3-head { margin-bottom: 24px; }
.s3-body { margin: 0 auto; max-width: 640px; }
.s3-stage {
  max-width: 1280px;
  margin: 0 auto;
  transform-origin: center top;
  will-change: transform;
}
.s3-frame {
  position: relative;
  background: #0a0c14;
  border: 1px solid var(--line-2);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 1px 0 var(--line-soft) inset,
    0 60px 160px -40px rgba(10, 132, 255, 0.35),
    0 40px 100px -30px rgba(188, 79, 255, 0.20);
}
.s3-chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(180deg, var(--line-soft), rgba(255,255,255,0.02));
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.s3-chip { font-size: 11px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.06em; }
.s3-video {
  position: absolute;
  top: 40px; left: 0;
  width: 100%; height: calc(100% - 40px);
  object-fit: cover; z-index: 1;
}
.s3-prompt-overlay {
  position: absolute;
  left: 32px; bottom: 32px;
  z-index: 3;
  background: rgba(10, 12, 22, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--line-12);
  border-radius: 999px;
  padding: 12px 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: 16px;
}
.s3-prompt-caret {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
@media (max-width: 720px) {
  .s3-showcase { padding: 0 20px 100px; }
  .s3-prompt-overlay { left: 16px; bottom: 16px; right: 16px; font-size: 13px; padding: 10px 14px; }
}

/* ──── S4, CAPABILITIES (asymmetric, colored glow per block) ─ */
.s4-caps {
  background: var(--surface-deep);
  padding: 80px 64px 200px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}
.cap {
  display: grid;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.cap-left  { grid-template-columns: 1fr 1.2fr; }
.cap-right { grid-template-columns: 1.2fr 1fr; }
.cap-copy { max-width: 480px; }
.cap-head {
  font-size: var(--h3);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 24px;
}
.cap-body { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0; }
.cap-visual {
  position: relative;
  background: #0a0c14;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.cap-visual video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cap-glow {
  position: absolute;
  inset: -40%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(10, 132, 255, 0.55), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cap-glow-violet {
  background: radial-gradient(closest-side, rgba(188, 79, 255, 0.5), transparent 70%);
}
.cap-glow-cyan {
  background: radial-gradient(closest-side, rgba(0, 194, 255, 0.5), transparent 70%);
}
@media (max-width: 900px) {
  .s4-caps { padding: 60px 24px 120px; gap: 80px; }
  .cap, .cap-left, .cap-right { grid-template-columns: 1fr; gap: 32px; }
  .cap-right .cap-visual { order: -1; }
}

/* ──── S5, STATS (single row, simple) ──────────────────────── */
.s5-stats {
  background: var(--surface-deep);
  padding: 120px 64px;
  position: relative;
}
.s5-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 20% 50%, rgba(10, 132, 255, 0.10), transparent 70%),
    radial-gradient(40% 60% at 80% 50%, rgba(188, 79, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.s5-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  position: relative;
}
.s5-stat { text-align: left; }
.s5-num {
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.s5-lbl {
  font-size: 17px !important;
  line-height: 1.45;
  color: var(--ink-dim) !important;
  max-width: 280px;
}
@media (max-width: 900px) {
  .s5-stats { padding: 80px 24px; }
  .s5-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ──── S6, FIT (orbit diagram) ──────────────────────────────── */
.s6-fit {
  background: var(--surface-deep);
  padding: 160px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.s6-head { margin: 0 0 32px; }
.s6-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.s6-list li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.s6-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient-2);
}
.s6-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.s6-orbit { position: absolute; inset: 0; }
.s6-glow {
  position: absolute;
  inset: 15%;
  background: radial-gradient(closest-side, rgba(10, 132, 255, 0.4), rgba(188, 79, 255, 0.2) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(40px);
}
.s6-orbit::before,
.s6-orbit::after {
  content: '';
  position: absolute;
  inset: 14%;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
}
.s6-orbit::after { inset: 0; }
.s6-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  background: linear-gradient(135deg, #111726, #0a0c14);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  display: grid; place-items: center;
  z-index: 3;
  box-shadow: 0 16px 40px -8px rgba(10, 132, 255, 0.4);
}
.s6-node {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: -0.005em;
  padding: 8px 14px;
  background: rgba(17, 23, 38, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.s6-n1 { top: 4%;  left: 50%; }
.s6-n2 { top: 22%; left: 90%; }
.s6-n3 { top: 50%; left: 100%; }
.s6-n4 { top: 78%; left: 90%; }
.s6-n5 { top: 96%; left: 50%; }
.s6-n6 { top: 78%; left: 10%; }
.s6-n7 { top: 50%; left: 0%; }
.s6-n8 { top: 22%; left: 10%; }
@media (max-width: 900px) {
  .s6-fit { grid-template-columns: 1fr; gap: 60px; padding: 100px 24px; }
  .s6-art { max-width: 360px; }
  .s6-node { font-size: 11px; padding: 6px 10px; }
}

/* ──── S7, VOICE ────────────────────────────────────────────── */
.s7-voice {
  background: var(--surface-deep);
  padding: 200px 64px;
  display: flex; justify-content: center;
  position: relative;
  overflow: hidden;
}
.s7-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 30% 50%, rgba(10, 132, 255, 0.18), transparent 70%),
    radial-gradient(40% 60% at 70% 50%, rgba(188, 79, 255, 0.16), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.s7-quote {
  position: relative;
  max-width: 880px;
  text-align: center;
  margin: 0;
  z-index: 1;
}
.s7-body {
  font-size: clamp(24px, 3.2vw, 36px) !important;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink) !important;
  margin: 0 0 40px;
  letter-spacing: -0.015em;
}
.s7-foot {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.s7-attrib { font-size: 15px; font-weight: 600; color: var(--ink); }
.s7-where { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 720px) { .s7-voice { padding: 120px 24px; } }

/* ──── S8, TRY ──────────────────────────────────────────────── */
.s8-try {
  background: var(--surface-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 160px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.s8-text { text-align: center; max-width: 680px; }
.s8-head { margin-bottom: 12px; }
.s8-body { font-size: 19px !important; color: rgba(255,255,255,0.6) !important; }
.s8-input {
  width: 100%;
  max-width: 720px;
  display: flex;
  background: var(--line-soft);
  border: 1px solid var(--line-12);
  border-radius: 999px;
  padding: 6px;
  transition: border-color 200ms, background-color 200ms, box-shadow 200ms;
}
.s8-input:focus-within {
  background: var(--line-2);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.16);
}
.s8-input input {
  flex: 1;
  background: transparent;
  border: 0; outline: none;
  color: var(--ink);
  font-size: 17px;
  padding: 0 22px;
}
.s8-input input::placeholder { color: var(--ink-mute); }
.s8-input button {
  width: 48px; height: 48px;
  background: var(--gradient-1);
  border: 0; cursor: pointer;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 200ms;
  box-shadow: 0 4px 16px -4px rgba(110, 91, 255, 0.55);
}
.s8-input button:hover { transform: translateY(-1px); }
.s8-input button:active { transform: scale(0.94); }
@media (max-width: 720px) { .s8-try { padding: 100px 24px; } }

/* ──── S9, PRICING (dark, gradient cards) ──────────────────── */
.s9-pricing {
  background: var(--surface-deep);
  padding: 180px 64px;
  position: relative;
  overflow: hidden;
}
.s9-aurora {
  position: absolute; inset: -20% 0;
  background:
    radial-gradient(40% 30% at 50% 0%, rgba(10, 132, 255, 0.18), transparent 70%),
    radial-gradient(50% 40% at 50% 100%, rgba(188, 79, 255, 0.12), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.s9-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.s9-head { margin: 0 auto 16px; max-width: 14ch; }
.s9-sub {
  margin: 0 auto 64px !important;
  max-width: 560px;
  color: rgba(255,255,255,0.7) !important;
  font-size: 19px !important;
}
.s9-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.s9-plan {
  position: relative;
  display: block;
  padding: 36px 28px;
  background: rgba(17, 23, 38, 0.6);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  text-align: left;
  text-decoration: none;
  color: var(--ink);
  transition: transform 200ms, border-color 200ms, background-color 200ms;
  backdrop-filter: blur(12px);
}
.s9-plan:hover {
  transform: translateY(-4px);
  background: rgba(17, 23, 38, 0.85);
  border-color: var(--ink-ghost);
}
.s9-plan-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.s9-plan-price {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: #fff;
}
.s9-plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
}
.s9-plan-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.s9-plan-featured {
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.14) 0%, rgba(110, 91, 255, 0.10) 100%);
  border-color: rgba(110, 91, 255, 0.35);
  box-shadow: 0 30px 80px -20px rgba(110, 91, 255, 0.4);
}
.s9-plan-featured .s9-plan-price {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s9-plan-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: var(--gradient-1);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.s9-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 200ms;
}
.s9-link::after { content: ' →'; }
.s9-link:hover { color: var(--ink); }
@media (max-width: 900px) {
  .s9-pricing { padding: 120px 24px; }
  .s9-plans { grid-template-columns: 1fr; gap: 16px; }
}

/* ──── S10, FAQ ─────────────────────────────────────────────── */
.s10-faq {
  background: var(--surface-deep);
  padding: 160px 64px;
}
.s10-inner { max-width: 880px; margin: 0 auto; }
.s10-head { margin: 0 auto 64px; text-align: center; }
.s10-list { display: flex; flex-direction: column; }
.s10-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.s10-item:last-child { border-bottom: 1px solid var(--line); }
.s10-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.4;
}
.s10-item summary::-webkit-details-marker { display: none; }
.s10-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--line-soft);
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  font-weight: 400;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), background-color 200ms;
}
.s10-item:hover summary::after { background: var(--line-12); }
.s10-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--gradient-1);
  color: #fff;
}
.s10-answer {
  padding-top: 20px;
  font-size: 16px !important;
  line-height: 1.6;
  color: rgba(255,255,255,0.7) !important;
}
@media (max-width: 720px) { .s10-faq { padding: 100px 24px; } .s10-item summary { font-size: 17px; gap: 16px; } }

/* ──── S11, CLOSE ───────────────────────────────────────────── */
.s11-close {
  background: var(--surface-deep);
  padding: 200px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.s11-aurora {
  position: absolute; inset: -20% 0;
  background:
    radial-gradient(40% 60% at 50% 50%, rgba(10, 132, 255, 0.25), transparent 70%),
    radial-gradient(60% 80% at 50% 100%, rgba(188, 79, 255, 0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.s11-head {
  position: relative;
  font-size: var(--h1);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: #fff;
  margin: 0;
  max-width: 14ch;
  background: linear-gradient(180deg, #ffffff 0%, #d8dffa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s11-sub {
  position: relative;
  font-size: clamp(18px, 2vw, 22px) !important;
  color: var(--ink-strong) !important;
  max-width: 560px;
  margin: 0 !important;
}
.s11-actions { position: relative; margin-top: 8px; }
.s11-link {
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  margin-top: 12px;
  transition: color 200ms;
}
.s11-link:hover { color: rgba(255,255,255,0.85); }
@media (max-width: 720px) {
  .s11-close { padding: 120px 24px; }
  .s11-actions .cta { width: 100%; }
}

/* ──── Sleek-pass overrides, cleaner, less cluttered ──────── */

/* Bring all h2s into the 32–52px band */
.home-v3 .s2-head,
.home-v3 .s3-head,
.home-v3 .s6-head,
.home-v3 .s9-head,
.home-v3 .s10-head,
.home-v3 .s11-head,
.home-v3 .s8-head {
  font-size: var(--h2) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.08 !important;
}
.home-v3 .cap-head { font-size: var(--h3) !important; }
.home-v3 .s7-body { font-size: clamp(20px, 2.2vw, 28px) !important; line-height: 1.45 !important; }

/* S2, pull padding in tight */
.home-v3 .s2-sentence { padding: 120px 32px 140px; }
.home-v3 .s2-head { max-width: 24ch; }
.home-v3 .s2-foot { font-size: 16px !important; margin-top: 24px !important; }

/* S3, head + body sit tighter, frame size restrained */
.home-v3 .s3-showcase { padding: 0 32px 120px; }
.home-v3 .s3-text { margin-bottom: 56px; }
.home-v3 .s3-body { font-size: 17px !important; max-width: 580px; }
.home-v3 .s3-frame { box-shadow:
  0 1px 0 var(--line-soft) inset,
  0 40px 100px -40px rgba(10, 132, 255, 0.22),
  0 24px 64px -20px rgba(0,0,0,0.4) !important;
}

/* S4, calmer gaps, lighter glows */
.home-v3 .s4-caps { gap: 120px; padding: 60px 64px 140px; }
.home-v3 .cap { gap: 64px; }
.home-v3 .cap-glow { filter: blur(80px); opacity: 0.55; }
.home-v3 .cap-body { font-size: 17px; }

/* S5, smaller stat numbers, balanced row */
.home-v3 .s5-stats { padding: 100px 64px; }
.home-v3 .s5-num { font-size: clamp(56px, 7vw, 96px) !important; margin-bottom: 12px !important; }
.home-v3 .s5-lbl { font-size: 15px !important; max-width: 260px; }

/* S6, calmer orbit & list */
.home-v3 .s6-fit { padding: 120px 64px; gap: 80px; }
.home-v3 .s6-list li { font-size: 16px; }
.home-v3 .s6-glow { opacity: 0.55; }
.home-v3 .s6-orbit::before, .home-v3 .s6-orbit::after { border-color: rgba(255,255,255,0.05); }

/* S7, gentler aurora */
.home-v3 .s7-voice { padding: 140px 32px; }
.home-v3 .s7-aurora { opacity: 0.5; }

/* S8, restrained */
.home-v3 .s8-try { padding: 120px 32px; }
.home-v3 .s8-head { font-size: clamp(32px, 3.6vw, 48px) !important; }
.home-v3 .s8-body { font-size: 17px !important; }

/* S9, pricing cards quieter */
.home-v3 .s9-pricing { padding: 140px 32px; }
.home-v3 .s9-plan { padding: 28px 24px; }
.home-v3 .s9-plan-name { font-size: 15px; margin-bottom: 12px; }
.home-v3 .s9-plan-price { font-size: 40px; }
.home-v3 .s9-plan-tag { font-size: 13px; }
.home-v3 .s9-plan-featured { box-shadow: 0 20px 60px -24px rgba(110, 91, 255, 0.30); }
.home-v3 .s9-sub { font-size: 17px !important; margin-bottom: 48px !important; }

/* S10, leaner FAQ */
.home-v3 .s10-faq { padding: 120px 32px; }
.home-v3 .s10-item summary { font-size: 17px; }
.home-v3 .s10-item summary::after { width: 28px; height: 28px; font-size: 18px; }

/* S11, restrained close */
.home-v3 .s11-close { padding: 140px 32px; }
.home-v3 .s11-head { font-size: clamp(40px, 5.5vw, 76px) !important; letter-spacing: -0.035em !important; }
.home-v3 .s11-sub { font-size: 18px !important; }
.home-v3 .s11-aurora { opacity: 0.6; }

/* Calmer CTA */
.home-v3 .cta-primary {
  box-shadow: 0 6px 24px -8px rgba(110, 91, 255, 0.45) !important;
}
.home-v3 .cta-lg { height: 48px; padding: 0 24px; font-size: 15px; }
.home-v3 .cta-xl { height: 56px; padding: 0 32px; font-size: 16px; }

@media (max-width: 720px) {
  .home-v3 .s2-sentence { padding: 80px 24px; }
  .home-v3 .s3-showcase { padding: 0 20px 80px; }
  .home-v3 .s4-caps { padding: 40px 24px 80px; gap: 64px; }
  .home-v3 .s5-stats { padding: 80px 24px; }
  .home-v3 .s6-fit { padding: 80px 24px; }
  .home-v3 .s7-voice { padding: 80px 24px; }
  .home-v3 .s8-try { padding: 80px 24px; }
  .home-v3 .s9-pricing { padding: 80px 24px; }
  .home-v3 .s10-faq { padding: 80px 24px; }
  .home-v3 .s11-close { padding: 80px 24px; }
}

/* ──────────────────────────────────────────────────────────────
   Suppress legacy sections on the home-v3 page
   (kept as safety net, the new HTML doesn't use these classes anyway)
   ────────────────────────────────────────────────────────────── */
.home-v3 .hero,
.home-v3 .prompts,
.home-v3 .integrates,
.home-v3 .workflow,
.home-v3 .benefits,
.home-v3 .faq,
.home-v3 .newsletter,
.home-v3 .trust-strip,
.home-v3 .stats-band,
.home-v3 .final-cta { display: none !important; }

/* Footer on the home-v3 page, keep but rest on black */
body:has(.home-v3) .footer {
  background: #000;
  border-top: 1px solid var(--line-2);
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL POLISH, cleaner pricing/auth/legal/blog/admin/dashboard
   ════════════════════════════════════════════════════════════════ */

/* Pricing page, sleeker, less heavy */
body:not(:has(.home-v3)) .pricing-title {
  font-size: clamp(40px, 5vw, 72px) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
}
body:not(:has(.home-v3)) .pricing-sub {
  font-size: 18px !important;
  color: var(--ink-strong) !important;
  max-width: 560px;
  margin: 0 auto 32px !important;
}
.tier {
  box-shadow: none !important;
  background: rgba(17, 23, 38, 0.6) !important;
}
.tier-name {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.75) !important;
}
.tier-tag {
  font-size: 13px !important;
  color: var(--ink-soft) !important;
}
.tier-price-amt { font-size: 44px !important; letter-spacing: -0.035em !important; }
.tier-features li { font-size: 14px !important; }
.tier-ribbon {
  background: linear-gradient(135deg, var(--accent), #6E5BFF) !important;
  font-size: 10px !important;
  letter-spacing: 0.10em !important;
}
.tier-featured {
  border-color: rgba(110, 91, 255, 0.40) !important;
  box-shadow: 0 20px 60px -24px rgba(110, 91, 255, 0.30) !important;
}
.compare {
  padding: 80px 32px !important;
}
.compare .big-heading {
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
}
.compare-table { font-size: 14px !important; }
.compare-table thead th { font-size: 12px !important; letter-spacing: 0.04em !important; }
.billing-toggle {
  background: var(--pill-bg) !important;
  border-color: var(--line) !important;
}
.billing-tab.is-active {
  background: rgba(255,255,255,0.95) !important;
  color: var(--surface-deep) !important;
}

/* Blog & blog posts, calmer */
.blog-hero h1 {
  font-size: clamp(40px, 5vw, 72px) !important;
  letter-spacing: -0.03em !important;
}
.blog-lede {
  font-size: 18px !important;
  color: var(--ink-strong) !important;
}
.blog-card {
  background: rgba(17, 23, 38, 0.55) !important;
  box-shadow: none !important;
}
.blog-card h3 { font-size: 19px !important; }
.blog-card p { font-size: 14px !important; color: var(--ink-strong) !important; }
.blog-tag {
  background: rgba(10, 132, 255, 0.14) !important;
  color: #6FB3FF !important;
  font-size: 11px !important;
}
.blog-section-head h2 {
  font-size: 24px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}
.blog-cta {
  background: rgba(17, 23, 38, 0.55) !important;
  box-shadow: none !important;
}
.blog-cta h2 {
  font-size: clamp(26px, 3vw, 36px) !important;
  letter-spacing: -0.025em !important;
}
.article-header h1 {
  font-size: clamp(32px, 4.4vw, 56px) !important;
  letter-spacing: -0.03em !important;
}
.article-body { font-size: 17px; }
.article-body .article-lede { font-size: 19px !important; }
.article-body h2 { font-size: 24px !important; letter-spacing: -0.02em !important; }
.article-body h3 { font-size: 18px !important; }

/* Legal pages, sleeker, restrained */
.legal-page { max-width: 720px !important; padding: 100px 32px 120px !important; }
.legal-page h1 {
  font-size: clamp(32px, 4vw, 52px) !important;
  letter-spacing: -0.03em !important;
}
.legal-page h2 { font-size: 18px !important; }
.legal-page h3 { font-size: 16px !important; }
.legal-page p, .legal-page ul, .legal-page ol {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: var(--ink-dim) !important;
}
.legal-meta { font-size: 13px !important; }
.legal-callout, .legal-warn {
  background: rgba(17, 23, 38, 0.55) !important;
  border-left-width: 2px !important;
  font-size: 14px !important;
}
.legal-toc { font-size: 14px !important; padding: 20px 24px !important; }
.legal-toc a { font-size: 13px !important; }

/* Auth pages (login + welcome), already self-contained; just tighten if scope */

/* Comparison page (cadabra-vs-aura), restrained */
.vsx-title {
  font-size: clamp(36px, 5vw, 64px) !important;
  letter-spacing: -0.035em !important;
}
.vsx-sub { font-size: 17px !important; color: var(--ink-strong) !important; }
.vsx-section-title {
  font-size: clamp(28px, 3.4vw, 44px) !important;
  letter-spacing: -0.025em !important;
}
.vsx-col-name { font-size: 18px !important; }
.vsx-list li { font-size: 14px !important; }
.vsx-value-title { font-size: 20px !important; }
.vsx-value-body { font-size: 15px !important; }
.vsx-cta-title { font-size: clamp(28px, 3.2vw, 44px) !important; letter-spacing: -0.025em !important; }
.vsx-cta-sub { font-size: 16px !important; }

/* Dashboard, calmer headers and cards */
.dashboard .page-title, .dashboard h1 {
  font-size: 28px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}
.dashboard .plan-name { font-size: 22px !important; }
.dashboard .plan-price { font-size: 32px !important; letter-spacing: -0.025em !important; }
.dashboard .card { box-shadow: none !important; }
.dashboard .billing-card-title, .dashboard .chart-title {
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
}

/* Admin, slim it */
.admin-head h1 { font-size: clamp(26px, 3vw, 36px) !important; letter-spacing: -0.025em !important; }
.panel { box-shadow: none !important; }
.panel h2 { font-size: 16px !important; font-weight: 600 !important; letter-spacing: -0.015em !important; }

/* Calmer nav across all pages */
.nav-pill, .nav-cta.nav-pill {
  box-shadow: none !important;
  border-color: var(--line) !important;
}
.brand-text { font-size: 17px !important; letter-spacing: -0.015em !important; }
.nav-links a, .nav-cta .btn { font-size: 14px !important; letter-spacing: -0.005em !important; }

/* Calmer reveal, less translateY */
.reveal { transform: translateY(16px); }

/* ---------- Footer socials as circular icon buttons ----------
   Higher specificity (.footer …) so this wins over the earlier
   icon+text list rules. Icon centered in a pill-round circle;
   the text label is kept but visually hidden for accessibility. */
.footer .footer-socials { flex-direction: row; flex-wrap: wrap; gap: var(--s-3); }
.footer .footer-socials li { margin: 0; }
.footer .footer-socials a {
  width: 40px; height: 40px; padding: 0; gap: 0;
  justify-content: center;
  border-radius: var(--r-pill);
  background: var(--pill-bg);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  transition: color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.footer .footer-socials a:hover {
  color: var(--accent);
  background: var(--accent-tint);
  border-color: var(--accent);
  transform: translateY(-2px);
}
/* visually-hidden label (kept for screen readers / aria) */
.footer .footer-socials a > span {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.footer .footer-socials .social-ico { width: 18px; height: 18px; }

/* Demo modal email gate */
.demo-step { display: flex; flex-direction: column; align-items: center; }
.demo-step[hidden] { display: none !important; }
.demo-email-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  text-align: left;
}
.demo-email-input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 180ms, background 180ms;
  text-align: left;
  box-sizing: border-box;
}
.demo-email-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.demo-email-input::placeholder { color: rgba(255,255,255,0.3); font-size: 13.5px; }
.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.demo-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 32px;
}
.demo-select option { background: #182e64; color: var(--ink); }
.demo-email-err {
  width: 100%;
  margin: 4px 0 8px;
  font-size: 13.5px;
  color: var(--danger);
  text-align: center;
}

/* Footer logo (replaces the old headline + CTA) */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-logo-mark { display: block; width: 52px; height: 52px; border-radius: 16px; object-fit: contain; }
.footer-logo-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.footer-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
