/* ===================================================================
   CueBot PTZ — Design tokens
=================================================================== */
:root {
  --bg-main: #00030E;
  --bg-alt: #020814;
  --bg-card: #06111F;
  --border: #0B2F5A;
  --border-soft: rgba(11, 47, 90, 0.55);
  --blue: #18BFFF;
  --blue-deep: #1E6BFF;
  --green: #22D36A;
  --orange: #F28C28;
  --red: #E54B4B;
  --text-main: #F5F7FA;
  --text-muted: #A7B0BE;
  --text-body: #D8DEE8;

  --font-display: "Segoe UI", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --section-pad: 96px;
}

@media (max-width: 720px) {
  :root { --section-pad: 64px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-main);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.accent { color: var(--blue); }
.accent-grad {
  background: linear-gradient(90deg, #F5F7FA 0%, var(--blue) 60%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Prevent CSS grid/flex children from forcing horizontal overflow via their
   default min-width:auto / min-height:auto behavior — critical for mobile. */
.hero-inner > *, .split > *, .switching-layout > *, .plans-grid > *,
.card-grid > *, .footer-inner > * {
  min-width: 0;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) { .section-inner { padding: 0 20px; } }

/* ===================================================================
   Buttons
=================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #2BCBFF, var(--blue) 60%);
  color: #00121F;
  box-shadow: 0 0 0 1px rgba(24,191,255,0.25), 0 8px 24px -8px rgba(24,191,255,0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(24,191,255,0.4), 0 12px 28px -8px rgba(24,191,255,0.7); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--blue);
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(24,191,255,0.06); }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 18px; }
.btn-nav { padding: 10px 18px; font-size: 14px; }

/* ===================================================================
   Nav
=================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,3,14,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--text-main); letter-spacing: -0.01em; }
.logo-mark { display: block; border-radius: 7px; flex-shrink: 0; }
.nav-links { display: flex; gap: 26px; flex: 1; }
.nav-links a {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-main); border-radius: 2px; transition: 0.2s; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
    margin-top: 12px;
  }
  body.nav-open .nav-links a { padding: 10px 4px; }
}

/* ===================================================================
   Hero
=================================================================== */
.hero {
  position: relative;
  padding: 72px 0 var(--section-pad);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(24,191,255,0.18), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,211,106,0.18);
}
.eyebrow--center { display: flex; justify-content: center; }

/* ---- Hero badge pills ---- */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em;
  padding: 7px 14px; border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.pill--blue { color: var(--blue); border-color: rgba(24,191,255,0.4); }
.pill--green { color: var(--green); border-color: rgba(34,211,106,0.4); }
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 640px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 590px;
  margin: 0 0 18px;
}
.hero--beta { text-align: center; padding-bottom: 60px; }
.hero--beta .section-inner { max-width: 760px; }
.badge-row--center { justify-content: center; }
.center-h1 { font-size: clamp(32px, 4.6vw, 50px); line-height: 1.1; margin-bottom: 16px; }
.hero-sub--center { text-align: center; margin: 0 auto 22px; }
.hero--beta .lede { margin-bottom: 30px; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 30px;
  max-width: 480px;
  letter-spacing: 0.01em;
}
.hero-sub--secondary {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: -6px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions--center { justify-content: center; }
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.fine-print {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 22px 0 0;
  max-width: 480px;
  line-height: 1.6;
}

/* ---- Hero artwork (integrated, bleed) ---- */
/* The supplied hero image already uses the site's dark-navy background, so
   instead of placing it in a rounded card beside the text, we let it bleed
   to the right edge of the viewport and fade its left edge into the page
   background via mask-image — text overlays the empty negative space. */
.hero--integrated {
  position: relative;
  padding: 96px 0 calc(var(--section-pad) + 12px);
}
.hero-visual--bleed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72%;
  pointer-events: none;
  z-index: 0;
}
.hero-visual--bleed picture,
.hero-visual--bleed img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  /* Fade the left edge of the image into the page background so it reads
     as integrated artwork, not a bordered card. */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.25) 28%, #000 55%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.25) 28%, #000 55%);
}
.hero-inner--overlay {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr);
}
.hero-inner--overlay .hero-copy {
  max-width: 500px;
}

@media (max-width: 1000px) {
  /* On smaller screens the artwork sits behind the copy at lower opacity
     and from the bottom — avoids cropping the devices off the side. */
  .hero--integrated { padding-top: 56px; }
  .hero-visual--bleed {
    width: 100%;
    top: auto;
    bottom: 0;
    height: 45%;
    opacity: 0.22;
  }
  .hero-visual--bleed picture,
  .hero-visual--bleed img {
    object-position: center bottom;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 70%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 70%);
  }
}

/* ---- Generic phone screenshot frame (used across split sections) ---- */
.phone-photo-frame {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.7), 0 0 0 1px rgba(24,191,255,0.06);
  background: #050B16;
  aspect-ratio: 863 / 1822;
}
.phone-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.phone-photo-frame--right { flex-shrink: 0; }

.landscape-photo-frame {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.7), 0 0 0 1px rgba(24,191,255,0.06);
  background: #050B16;
  aspect-ratio: 1822 / 863;
}
.landscape-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.landscape-stack-visual { margin-bottom: 44px; display: flex; justify-content: center; }
.landscape-photo-frame--wide { max-width: 820px; }

/* ---- Camera switching layout ---- */
.switching-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
@media (max-width: 880px) {
  .switching-layout { grid-template-columns: 1fr; gap: 36px; }
  .banner-block.banner-block--left { max-width: 640px; }
}
.banner-block--left { text-align: left; max-width: 520px; margin: 0; }
.banner-block--left h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.step-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.step-row { display: flex; gap: 16px; align-items: flex-start; }
.step-row h3 { font-size: 16px; margin-bottom: 4px; }
.step-row p { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }
.step-row .step-num {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(24,191,255,0.1); border: 1px solid var(--border);
  color: var(--blue); font-family: var(--font-display); font-weight: 800; font-size: 14px;
}

/* ===================================================================
   Generic sections
=================================================================== */
.section { padding: var(--section-pad) 0; }
.section--no-top { padding-top: 0; }
.section--tight { padding: calc(var(--section-pad) * 0.55) 0; }
.section--alt { background: var(--bg-alt); }
.h2-center { text-align: center; font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.lede {
  text-align: center; max-width: 680px; margin: 0 auto 52px;
  color: var(--text-muted); font-size: 16.5px; line-height: 1.7;
}
.lede--left { text-align: left; margin: 18px 0 26px; max-width: 480px; }
.lede--stacked { margin-top: -28px; }
.disclaimer-inline { text-align: center; max-width: 600px; margin: -28px auto 48px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.banner-block { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.banner-block--presets { text-align: left; max-width: 640px; margin: 0 auto; }
.banner-block--presets .eyebrow { justify-content: flex-start; }
.banner-block--presets .lede { text-align: left; margin: 0 0 26px; }
.banner-block--presets .check-list { display: inline-flex; flex-direction: column; }
.banner-block h2 { margin-bottom: 16px; font-size: clamp(26px, 3vw, 36px); }
.banner-block .eyebrow { display: flex; justify-content: center; }

/* .banner-block normally centers everything (text-align, eyebrow), and since
   it's declared after .banner-block--left with equal specificity, it would
   otherwise win the cascade and re-center the Multi-camera workflow section.
   This compound selector has higher specificity, so it wins regardless of
   declaration order and keeps that section's copy left-aligned next to its
   screenshot. */
.banner-block.banner-block--left {
  text-align: left;
  max-width: 520px;
  margin: 0;
}
.banner-block.banner-block--left .eyebrow {
  justify-content: flex-start;
}
.banner-block.banner-block--left h2 {
  text-align: left;
}
.banner-block.banner-block--left .lede {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.banner-block.banner-block--left .check-list {
  align-items: flex-start;
}

.card-grid { display: grid; gap: 22px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--6 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
@media (max-width: 1100px) {
  .card-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .card-grid--3, .card-grid--6, .card-grid--4, .card-grid--5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .card-grid--3, .card-grid--6, .card-grid--4, .card-grid--5, .card-grid--2 { grid-template-columns: 1fr; }
}

/* ---- Step cards (vertical, used in 4-step workflow) ---- */
.step-card-v {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.step-card-v:hover { border-color: var(--blue); transform: translateY(-3px); }
.step-card-v h3 { font-size: 16.5px; margin-bottom: 8px; }
.step-card-v p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.step-card-v .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(24,191,255,0.1); border: 1px solid var(--border);
  color: var(--blue); font-family: var(--font-display); font-weight: 800; font-size: 16px;
  margin-bottom: 16px;
}

/* ---- Tag cloud (built for real live environments) ---- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 880px; margin: 0 auto; }
.tag {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tag:hover { border-color: var(--blue); color: var(--blue); }

.pain-card, .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pain-card:hover, .feature-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.pain-icon, .feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(24,191,255,0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 18px;
}
.pain-card h3, .feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.pain-card p, .feature-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.feature-card--qlab { grid-column: span 1; border-color: rgba(24,191,255,0.35); }
.card-note { margin-top: 10px; font-size: 12px; color: var(--text-muted); opacity: 0.8; font-style: italic; }
.card-note--block {
  font-size: 13px; color: var(--text-muted); opacity: 0.85; font-style: italic;
  border-left: 2px solid var(--border); padding-left: 14px; margin-top: 8px; max-width: 460px;
}
.card-note--block a { color: var(--blue); text-decoration: underline; font-style: normal; }

/* ---- Split sections ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split-visual { order: 2; }
.split--reverse .split-copy { order: 1; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-visual, .split--reverse .split-copy { order: unset; }
}
.split-copy h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 6px; }

.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-body); }
.check {
  flex-shrink: 0;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
}
.check::after {
  content: "";
  position: absolute; left: 5px; top: 4px;
  width: 8px; height: 5px;
  border-left: 2px solid #00121F; border-bottom: 2px solid #00121F;
  transform: rotate(-45deg);
}

.mini-card-row { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.mini-card strong { color: var(--text-main); font-size: 14.5px; display: block; margin-bottom: 4px; }
.mini-card p { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ---- Beta interest form ---- */
.beta-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--blue); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row select { appearance: none; cursor: pointer; }
.beta-form .btn { align-self: flex-start; margin-top: 4px; }
.form-note { font-size: 13px; color: var(--text-muted); margin: 0; }
.form-note strong { color: var(--text-body); }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 880px; margin: 0 auto; }
@media (max-width: 720px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; position: relative;
}
.plan-card--lite { border-color: rgba(24,191,255,0.35); }
.plan-card--pro { border-color: var(--green); box-shadow: 0 0 0 1px rgba(34,211,106,0.2), 0 20px 50px -25px rgba(34,211,106,0.4); }
.plan-badge {
  position: absolute; top: -13px; left: 32px;
  font-weight: 800; font-size: 11.5px;
  padding: 5px 12px; border-radius: 20px; letter-spacing: 0.04em; text-transform: uppercase;
}
.plan-badge--lite { background: var(--blue); color: #00121F; }
.plan-badge--pro { background: var(--green); color: #00170A; }
.plan-card h3 { font-size: 21px; margin-bottom: 6px; }
.plan-sub { color: var(--text-muted); font-size: 14.5px; margin: 0 0 24px; }
.plan-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.plan-list--pro .check { background: var(--green); }
.plan-list--pro .check::after { border-color: #00170A; }
.plan-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-body); }
.roadmap-note { text-align: center; max-width: 600px; margin: 36px auto 0; font-size: 13.5px; color: var(--text-muted); }
.roadmap-note strong { color: var(--blue); }



.plan-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
}
.plan-price-row .plan-price { margin-top: 0; }
.plan-price-standard {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  padding-bottom: 5px;
  color: var(--text-muted);
}
.plan-price-standard span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-price-standard s {
  font-size: 15px;
  font-weight: 750;
  text-decoration-thickness: 1.5px;
}
@media (max-width: 420px) {
  .plan-price-row { align-items: flex-start; flex-direction: column; gap: 4px; }
  .plan-price-standard { align-items: flex-start; padding-bottom: 0; }
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin: 14px 0 2px;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.plan-price__currency {
  padding-top: 5px;
  color: var(--blue);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}
.plan-card--pro .plan-price__currency { color: var(--green); }
.plan-price-note {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pricing-transparency {
  max-width: 880px;
  margin: 30px auto 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(24,191,255,0.35);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(24,191,255,0.08), rgba(6,17,31,0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.pricing-transparency__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34,211,106,0.13);
  border: 1px solid rgba(34,211,106,0.45);
  color: var(--green);
  font-weight: 900;
}
.pricing-transparency h3 { margin: 1px 0 7px; font-size: 17px; }
.pricing-transparency p { margin: 0; color: var(--text-body); font-size: 14px; line-height: 1.65; }
@media (max-width: 600px) {
  .pricing-transparency { padding: 20px; grid-template-columns: 1fr; }
  .pricing-transparency__icon { width: 32px; height: 32px; }
}

/* ---- Compatibility ---- */
.compat-block { max-width: 820px; margin: 0 auto; text-align: center; }
.compat-block h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.compat-block .lede--left { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.compat-block .compat-badge-rows { align-items: center; }
.compat-block .compat-badge-row { justify-content: center; }

.compat-badge-rows { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.compat-badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.compat-badge-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted); margin-right: 4px; flex-shrink: 0;
}
.compat-badge {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600;
  padding: 6px 13px; border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.compat-badge--yes { color: var(--green); border-color: rgba(34,211,106,0.35); }
.compat-badge--no { color: var(--text-muted); border-color: var(--border); opacity: 0.75; }

/* ---- FAQ Accordion ---- */
.accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-family: var(--font-body); font-size: 15.5px; font-weight: 600;
  color: var(--text-main);
}
.acc-icon { color: var(--blue); font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform 0.25s ease; line-height: 1; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-panel p { margin: 0; padding: 0 24px 20px; color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }
.acc-panel a { color: var(--blue); text-decoration: underline; }

/* ---- Final CTA ---- */
.cta-final { position: relative; padding: var(--section-pad) 0; text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(circle, rgba(24,191,255,0.14), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; }
.cta-icon { display: inline-flex; margin-bottom: 18px; }
.cta-final h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.cta-final .lede { margin-bottom: 34px; }
.link-accent { color: var(--blue); text-decoration: underline; }

/* ===================================================================
   Footer
=================================================================== */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border-soft); padding: 64px 0 36px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand p { color: var(--text-muted); font-size: 13.5px; margin: 8px 0 0; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-body); font-size: 14.5px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--blue); }
.footer-disclaimer { font-size: 12px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border-soft); padding-top: 24px; max-width: 900px; }
.footer-disclaimer a { color: var(--blue); text-decoration: underline; }
.footer-copyright { font-size: 12px; color: var(--text-muted); margin: 16px 0 0; opacity: 0.8; }
.footer-build { font-size: 11px; font-family: var(--font-mono); color: var(--text-muted); opacity: 0.4; margin: 6px 0 0; letter-spacing: 0.04em; }

/* ===================================================================
   Shared page header (Support / Privacy)
=================================================================== */
.page-hero { padding: 64px 0 50px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 16px; line-height: 1.65; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--blue); }

.content-block { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.content-block h2 { font-size: 22px; margin: 48px 0 16px; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 17px; margin: 28px 0 10px; color: var(--text-main); }
.content-block p { color: var(--text-body); font-size: 15.5px; line-height: 1.75; margin: 0 0 16px; }
.content-block ul { color: var(--text-body); font-size: 15.5px; line-height: 1.75; padding-left: 22px; }
.content-block li { margin-bottom: 8px; }
.content-block a { color: var(--blue); text-decoration: underline; }
.content-block strong { color: var(--text-main); }

/* .content-block a styles plain inline links blue + underlined, but the
   support-page email button is also an <a> nested inside .content-block.
   That generic rule has higher specificity than .btn-primary/.btn-ghost
   (class+element beats a single class), so it was silently repainting the
   button text the same cyan as its own background — making the label
   invisible. These compound selectors restore the correct button styling
   regardless of nesting. */
.content-block .btn { text-decoration: none; }
.content-block .btn-primary { color: #00121F; }
.content-block .btn-ghost { color: var(--blue); }
.last-updated { color: var(--text-muted); font-size: 13.5px; margin-bottom: 40px; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0 0 60px; }
@media (max-width: 880px) { .support-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .support-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; text-align: center; max-width: 560px; margin: 0 auto 64px;
}
.contact-card .btn { white-space: normal; max-width: 100%; }
.contact-card--support { margin-top: 24px; }
.contact-card h3 { font-size: 19px; margin-bottom: 10px; }
.contact-card p { color: var(--text-muted); margin-bottom: 22px; }
.contact-list {
  text-align: left;
  display: inline-block;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ---- Support page: settings-path breadcrumbs ---- */
.path-steps {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--blue);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  display: inline-block;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-item:first-child {
  border-top: 1px solid var(--border-soft);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-q::after {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2318BFFF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease;
}
.faq-q[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.faq-q:hover { color: var(--blue); }
.faq-a {
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== Beta CTA social follow line ===== */
.cta-social-line {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  opacity: 0.8;
}
.cta-social-line a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-social-line a:hover {
  color: var(--blue);
}


/* ===================================================================
   v887 launch-readiness content additions
=================================================================== */
.status-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 54px;
  padding: 15px 18px;
  border: 1px solid rgba(34,211,106,0.38);
  border-radius: 14px;
  background: rgba(34,211,106,0.06);
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}
.status-strip strong { color: var(--text-main); }
.status-strip p { margin: 0; }
.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34,211,106,0.12);
}
.feedback-guide { margin-top: 42px; }
.feedback-guide > h3 { text-align: center; font-size: 20px; margin-bottom: 20px; }
.support-grid--links { max-width: 980px; margin-left: auto; margin-right: auto; }
.support-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color .18s ease, transform .18s ease;
}
.support-link-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.support-link-card strong { color: var(--text-main); font-size: 15px; }
.support-link-card span { color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }
.support-note {
  border-left: 3px solid var(--blue);
  background: rgba(24,191,255,0.06);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 32px;
}
.support-note strong { color: var(--text-main); }
.content-block ol { color: var(--text-body); font-size: 15.5px; line-height: 1.75; padding-left: 24px; }
.content-block ol li { margin-bottom: 9px; }
@media (max-width: 600px) {
  .status-strip { flex-direction: column; align-items: center; }
  .support-link-card { padding: 19px; }
}

/* ===================================================================
   Positioning refresh — pain-led homepage
=================================================================== */
.hero-positioning {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.problem-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 28, 48, 0.88), rgba(7, 18, 34, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}
.problem-card h3 { margin: 0 0 9px; }
.problem-card p:last-child { margin-bottom: 0; color: var(--text-body); }
.problem-quote {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.positioning-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(24,191,255,0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(24,191,255,0.12), transparent 38%),
    rgba(5, 15, 29, 0.84);
}
.positioning-panel h2 { margin-bottom: 0; }
.positioning-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}
.positioning-points div { display: grid; gap: 7px; }
.positioning-points strong { color: var(--text-main); font-size: 16px; }
.positioning-points span { color: var(--text-body); font-size: 14.5px; line-height: 1.55; }

.plans-grid--positioned { align-items: stretch; }
.plan-fit {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.plan-fit strong { color: var(--text-main); }

@media (max-width: 860px) {
  .problem-grid,
  .positioning-panel,
  .positioning-points {
    grid-template-columns: 1fr;
  }
  .positioning-panel { gap: 30px; padding: 30px; }
}

@media (max-width: 600px) {
  .problem-card { padding: 22px; }
  .positioning-panel { padding: 24px; border-radius: 22px; }
  .hero-positioning { font-size: 12px; }
}

.pro-inline {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 7px;
  padding: 3px 7px;
  border: 1px solid rgba(24,191,255,0.35);
  border-radius: 999px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===================================================================
   2026 approved website artwork integration
=================================================================== */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}
.use-case-card {
  min-height: 210px;
  padding: 24px 21px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(10, 27, 47, 0.82), rgba(5, 15, 29, 0.9));
}
.use-case-card > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.use-case-card h3 { font-size: 17px; margin-bottom: 9px; }
.use-case-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

.feature-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(24,191,255,0.19);
  border-radius: 30px;
  background: #020814;
  box-shadow:
    0 45px 100px -58px rgba(0,0,0,0.95),
    0 0 0 1px rgba(255,255,255,0.018) inset;
  isolation: isolate;
}
.feature-showcase-media,
.feature-showcase-media img {
  display: block;
  width: 100%;
}
.feature-showcase-media img {
  height: auto;
  object-fit: cover;
}
.feature-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.10));
}
.feature-showcase-copy {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: min(430px, 39%);
  transform: translateY(-50%);
  padding: 30px 32px;
  border: 1px solid rgba(24,191,255,0.20);
  border-radius: 23px;
  background: rgba(0, 4, 14, 0.78);
  box-shadow: 0 24px 65px -34px rgba(0,0,0,0.9);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  backdrop-filter: blur(14px) saturate(1.05);
}
.feature-showcase--copy-left .feature-showcase-copy { left: clamp(24px, 4vw, 56px); }
.feature-showcase--copy-right .feature-showcase-copy { right: clamp(24px, 4vw, 56px); }
.feature-showcase-copy .eyebrow { margin-bottom: 13px; }
.feature-showcase-copy h2 {
  font-size: clamp(25px, 2.7vw, 37px);
  line-height: 1.12;
  margin-bottom: 15px;
}
.feature-showcase-copy > p:not(.eyebrow) {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.62;
  margin: 0 0 22px;
}
.feature-showcase-copy .check-list { gap: 10px; }
.feature-showcase-copy .check-list li { font-size: 14px; align-items: flex-start; }
.feature-showcase-copy .check { margin-top: 1px; }

.feature-heading { max-width: 760px; margin: 0 auto 42px; }
.feature-image-frame {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(24,191,255,0.20);
  border-radius: 30px;
  background: #020814;
  box-shadow: 0 42px 95px -54px rgba(0,0,0,0.95);
}
.feature-image-picture,
.feature-image-picture img {
  display: block;
  width: 100%;
  height: auto;
}
.card-note--center {
  max-width: 720px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.card-note--center a { color: var(--blue); text-decoration: underline; }

.pricing-visual {
  width: 100%;
  max-width: 1040px;
  margin: 2px auto 60px;
  overflow: hidden;
  border: 1px solid rgba(24,191,255,0.18);
  border-radius: 28px;
  background: #020814;
  box-shadow: 0 40px 90px -52px rgba(0,0,0,0.95);
}
.pricing-picture,
.pricing-picture img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1050px) {
  .use-case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-showcase-copy { width: min(400px, 43%); padding: 25px 26px; }
}

@media (max-width: 780px) {
  .use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-showcase {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
  }
  .feature-showcase-copy {
    position: relative;
    inset: auto !important;
    top: auto;
    width: auto;
    transform: none;
    order: 2;
    margin: -1px;
    padding: 26px 24px 28px;
    border-radius: 0 0 24px 24px;
    background: rgba(4, 13, 26, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .feature-showcase-media { order: 1; }
  .feature-showcase-copy h2 { font-size: clamp(25px, 7vw, 34px); }
  .feature-image-frame, .pricing-visual { border-radius: 22px; }
}

@media (max-width: 520px) {
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case-card { min-height: 0; }
  .use-case-card > span { margin-bottom: 18px; }
  .feature-showcase-copy { padding: 23px 20px 25px; }
  .pricing-visual { margin-bottom: 44px; }
}

/* ===================================================================
   v892 benefit-led messaging and approved artwork
=================================================================== */
.landscape-photo-frame--art {
  max-width: 920px;
  aspect-ratio: 8 / 5;
  border-radius: 24px;
}
.landscape-photo-frame--art-4x3 {
  max-width: 820px;
  aspect-ratio: 4 / 3;
}
.landscape-photo-frame--art-wide {
  max-width: 980px;
  aspect-ratio: 16 / 9;
}
.landscape-photo-frame--art picture,
.landscape-photo-frame--art picture img {
  width: 100%;
  height: 100%;
  display: block;
}
.landscape-photo-frame--art img {
  object-fit: contain;
}
#pricing .landscape-stack-visual {
  margin-top: 38px;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .landscape-photo-frame--art,
  .landscape-photo-frame--art-4x3,
  .landscape-photo-frame--art-wide {
    border-radius: 18px;
  }
}

.art-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  align-items: stretch;
}
.art-duo__item {
  width: 100%;
  max-width: none;
  margin: 0;
}
.art-duo__item picture,
.art-duo__item img {
  width: 100%;
  height: 100%;
  display: block;
}
.split--feature-gallery {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 56px;
  align-items: center;
}
.split--feature-gallery .split-visual {
  width: 100%;
}
.split--feature-gallery .split-copy {
  max-width: 560px;
}
@media (max-width: 1100px) {
  .split--feature-gallery {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .split--feature-gallery .split-copy {
    max-width: 680px;
  }
}
@media (max-width: 720px) {
  .art-duo {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ===================================================================
   Final public-release polish — structure, pacing and responsive layout
=================================================================== */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue);
  color: #00121F;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.btn-label-short { display: none; }
.h2-large { font-size: clamp(30px, 3.5vw, 44px); line-height: 1.12; }

.hero-benefit {
  margin: 0 0 18px;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.45;
}

.status-band {
  position: relative;
  z-index: 4;
  padding: 0 0 20px;
  background: linear-gradient(to bottom, rgba(0,3,14,0), var(--bg-main));
}
.status-strip--compact {
  max-width: 760px;
  margin: 0 auto;
  padding: 13px 17px;
}

.section--benefits { padding-top: 82px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.benefit-card {
  position: relative;
  min-height: 260px;
  padding: 28px 24px 25px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(24,191,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(10,27,47,.86), rgba(5,15,29,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.benefit-card h3 { margin-bottom: 10px; font-size: 19px; }
.benefit-card > p:last-child { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.62; }
.benefit-number {
  display: block;
  margin-bottom: 30px;
  color: rgba(24,191,255,.48);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
}
.savings-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(24,191,255,.19);
  border-radius: 18px;
  background: rgba(24,191,255,.045);
}
.savings-strip span {
  padding: 17px 18px;
  text-align: center;
  color: var(--text-main);
  font-size: 14px;
  border-right: 1px solid var(--border-soft);
}
.savings-strip span:last-child { border-right: 0; }

.feature-row { overflow: hidden; }
.feature-row-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}
.feature-row--reverse .feature-row-media { order: 2; }
.feature-row--reverse .feature-row-copy { order: 1; }
.feature-row-media {
  overflow: hidden;
  border: 1px solid rgba(24,191,255,.18);
  border-radius: 26px;
  background: #020814;
  box-shadow: 0 42px 92px -52px rgba(0,0,0,.98);
}
.feature-row-media picture,
.feature-row-media img { display: block; width: 100%; }
.feature-row-media img { height: auto; }
.feature-row-copy { max-width: 500px; }
.feature-row-copy h2,
.live-mobile-copy h2,
.readiness-copy h2,
.compat-card h2,
.answers-grid > div > h2 {
  margin-bottom: 16px;
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.12;
}
.feature-row-copy .lede--left,
.live-mobile-copy .lede--left,
.readiness-copy .lede--left { margin-bottom: 26px; }

.live-mobile-inner {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}
.live-mobile-copy { max-width: 480px; }
.micro-proof {
  margin: 25px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--blue);
  font-weight: 800;
  line-height: 1.5;
}
.dual-visuals {
  position: relative;
  min-height: 520px;
}
.dual-visual {
  overflow: hidden;
  border: 1px solid rgba(24,191,255,.20);
  border-radius: 24px;
  background: #020814;
  box-shadow: 0 38px 90px -48px rgba(0,0,0,.98);
}
.dual-visual picture,
.dual-visual img { display: block; width: 100%; height: auto; }
.dual-visual--primary { width: 82%; margin-left: auto; }
.dual-visual--secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  box-shadow: 0 35px 75px -35px rgba(0,0,0,1), 0 0 0 8px var(--bg-main);
}

.readiness-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}
.readiness-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.readiness-visual {
  overflow: hidden;
  border: 1px solid rgba(24,191,255,.18);
  border-radius: 22px;
  background: #020814;
  box-shadow: 0 36px 76px -46px rgba(0,0,0,.98);
}
.readiness-visual picture,
.readiness-visual img { display: block; width: 100%; height: auto; }
.readiness-visual--monitor { transform: translateY(-22px); }
.readiness-visual--command { transform: translateY(22px); }
.readiness-copy { max-width: 490px; }

.trigger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trigger-card {
  min-height: 220px;
  padding: 26px 23px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10,27,47,.82), rgba(5,15,29,.94));
}
.trigger-label {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trigger-card h3 { margin-bottom: 9px; font-size: 19px; }
.trigger-card p { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.62; }

.pricing-visual-final {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 58px;
  overflow: hidden;
  border: 1px solid rgba(24,191,255,.18);
  border-radius: 28px;
  background: #020814;
  box-shadow: 0 40px 90px -52px rgba(0,0,0,.95);
}
.pricing-visual-final picture,
.pricing-visual-final img { display: block; width: 100%; height: auto; }

.answers { background: var(--bg-main); }
.answers-grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}
.compat-card {
  position: sticky;
  top: 110px;
  padding: 30px;
  border: 1px solid rgba(24,191,255,.20);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(24,191,255,.10), transparent 40%),
    var(--bg-card);
}
.compat-card > p:not(.eyebrow):not(.card-note) {
  margin: 0 0 28px;
  color: var(--text-muted);
  line-height: 1.65;
}
.compat-group { margin-top: 25px; }
.compat-group > strong {
  display: block;
  margin-bottom: 11px;
  color: var(--text-main);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.compat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.faq-list--wide { max-width: none; }

@media (hover: hover) {
  .benefit-card,
  .trigger-card,
  .feature-row-media,
  .dual-visual,
  .readiness-visual {
    transition: transform .2s ease, border-color .2s ease;
  }
  .benefit-card:hover,
  .trigger-card:hover { transform: translateY(-3px); border-color: rgba(24,191,255,.55); }
  .feature-row-media:hover,
  .dual-visual:hover,
  .readiness-visual:hover { border-color: rgba(24,191,255,.42); }
}

@media (max-width: 1050px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row-inner,
  .live-mobile-inner,
  .readiness-inner,
  .answers-grid { grid-template-columns: 1fr; }
  .feature-row-copy,
  .live-mobile-copy,
  .readiness-copy { max-width: 700px; }
  .feature-row--reverse .feature-row-media,
  .feature-row--reverse .feature-row-copy { order: initial; }
  .feature-row-copy { order: 1; }
  .feature-row-media { order: 2; }
  .feature-row--reverse .feature-row-copy { order: 1; }
  .feature-row--reverse .feature-row-media { order: 2; }
  .live-mobile-copy { order: 1; }
  .dual-visuals { order: 2; width: min(880px, 100%); }
  .readiness-copy { order: 1; }
  .readiness-visuals { order: 2; }
  .trigger-grid { grid-template-columns: repeat(2, 1fr); }
  .compat-card { position: static; }
}

@media (max-width: 1000px) {
  .hero--integrated {
    display: flex;
    flex-direction: column;
    padding: 58px 0 0;
  }
  .hero--integrated .hero-inner { order: 1; }
  .hero--integrated .hero-visual--bleed {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: auto;
    margin-top: 34px;
    opacity: 1;
  }
  .hero-visual--bleed picture,
  .hero-visual--bleed img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }
  .hero-inner--overlay .hero-copy { max-width: 720px; }
  .status-band { padding-top: 12px; }
}

@media (max-width: 860px) {
  .nav-inner { gap: 14px; padding: 12px 20px; }
  .nav-logo { margin-right: auto; }
  .btn-label-long { display: none; }
  .btn-label-short { display: inline; }
  .btn-nav { padding: 9px 14px; }
  body.nav-open .nav-links { order: 4; }
  .dual-visuals { min-height: 470px; }
  .readiness-visuals { max-width: 780px; }
}

@media (max-width: 720px) {
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero-sub { font-size: 16px; line-height: 1.58; }
  .badge-row { gap: 7px; }
  .pill { font-size: 11.5px; padding: 6px 10px; }
  .benefit-grid,
  .savings-strip,
  .trigger-grid { grid-template-columns: 1fr; }
  .savings-strip span { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .savings-strip span:last-child { border-bottom: 0; }
  .benefit-card { min-height: 0; }
  .feature-row-inner,
  .live-mobile-inner,
  .readiness-inner,
  .answers-grid { gap: 34px; }
  .feature-row-media,
  .dual-visual,
  .readiness-visual,
  .pricing-visual-final { border-radius: 18px; }
  .dual-visuals { min-height: 410px; }
  .dual-visual--primary { width: 92%; }
  .dual-visual--secondary { width: 64%; box-shadow: 0 30px 68px -32px rgba(0,0,0,1), 0 0 0 5px var(--bg-main); }
  .readiness-visuals { gap: 10px; }
  .readiness-visual--monitor { transform: translateY(-10px); }
  .readiness-visual--command { transform: translateY(10px); }
  .plan-card { padding: 32px 24px; }
  .compat-card { padding: 24px; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 520px) {
  :root { --section-pad: 58px; }
  .nav-logo-text { font-size: 17px; }
  .logo-mark { width: 26px; height: 26px; }
  .btn-nav { font-size: 13px; padding: 8px 11px; border-radius: 13px; }
  .nav-toggle { margin-left: -4px; }
  .hero--integrated { padding-top: 42px; }
  .hero-positioning { margin-bottom: 10px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-benefit { font-size: 16px; }
  .hero-visual--bleed { margin-top: 24px; }
  .section--benefits { padding-top: 62px; }
  .benefit-card { padding: 23px 20px; }
  .benefit-number { margin-bottom: 22px; }
  .dual-visuals { min-height: 325px; }
  .dual-visual--primary { width: 96%; }
  .dual-visual--secondary { width: 67%; }
  .readiness-visuals { grid-template-columns: 1fr; }
  .readiness-visual--monitor,
  .readiness-visual--command { transform: none; }
  .trigger-card { min-height: 0; }
  .trigger-label { margin-bottom: 24px; }
  .pricing-visual-final { margin-bottom: 42px; }
  .faq-q { font-size: 15px; }
}

/* ===================================================================
   Premium mobile navigation — release polish
=================================================================== */
.nav-mobile-cta { display: none; }

@media (max-width: 860px) {
  .nav {
    z-index: 1000;
    background: rgba(2, 8, 20, 0.88);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
            backdrop-filter: blur(22px) saturate(135%);
  }

  .nav-inner {
    min-height: 66px;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 11px 18px;
  }

  .btn-nav { display: none; }

  .nav-toggle {
    position: relative;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    gap: 0;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
  }

  .nav-toggle:active { transform: scale(.96); }

  .nav-toggle span {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 999px;
    transform-origin: center;
    transition: transform .24s ease, opacity .18s ease, top .24s ease;
  }
  .nav-toggle span:nth-child(1) { top: 14px; }
  .nav-toggle span:nth-child(2) { top: 20px; }
  .nav-toggle span:nth-child(3) { top: 26px; }

  body.nav-open .nav-toggle {
    border-color: rgba(24,191,255,.34);
    background: rgba(24,191,255,.10);
  }
  body.nav-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
  body.nav-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 66px 0 0;
    z-index: 998;
    background: rgba(0, 3, 14, .68);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    animation: navBackdropIn .2s ease both;
  }

  .nav-links,
  body.nav-open .nav-links {
    position: fixed;
    inset: 78px 12px auto;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    width: auto;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    gap: 5px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(112, 181, 255, .18);
    border-radius: 24px;
    background:
      radial-gradient(circle at 92% 0%, rgba(24,191,255,.12), transparent 32%),
      linear-gradient(180deg, rgba(8, 22, 40, .985), rgba(3, 12, 25, .992));
    box-shadow: 0 28px 80px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transform-origin: top center;
    transition: opacity .2s ease, transform .24s cubic-bezier(.2,.8,.2,1), visibility 0s linear .24s;
  }

  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  body.nav-open .nav-links a:not(.nav-mobile-cta) {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 13px 44px 13px 15px;
    border: 1px solid transparent;
    border-radius: 15px;
    color: rgba(236, 246, 255, .88);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
  }

  body.nav-open .nav-links a:not(.nav-mobile-cta)::after {
    content: "›";
    position: absolute;
    right: 17px;
    top: 50%;
    color: rgba(152, 182, 211, .62);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-53%);
  }

  body.nav-open .nav-links a:not(.nav-mobile-cta):hover,
  body.nav-open .nav-links a:not(.nav-mobile-cta):focus-visible {
    color: var(--text-main);
    border-color: rgba(24,191,255,.16);
    background: rgba(24,191,255,.07);
    transform: translateX(2px);
    outline: none;
  }

  .nav-mobile-cta,
  body.nav-open .nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 56px;
    margin-top: 9px;
    padding: 14px 18px;
    border: 1px solid rgba(91, 210, 255, .45);
    border-radius: 16px;
    background: linear-gradient(135deg, #16B9FF 0%, #0B8EEB 58%, #5857F4 115%);
    color: #00111D;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(0, 144, 230, .20), inset 0 1px 0 rgba(255,255,255,.34);
  }

  .nav-mobile-cta span:last-child { font-size: 20px; }
}

@media (max-width: 420px) {
  .nav-inner { padding-left: 15px; padding-right: 15px; }
  .nav-links,
  body.nav-open .nav-links { left: 10px; right: 10px; }
}

@keyframes navBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-toggle span,
  body.nav-open::before { animation: none !important; transition: none !important; }
}

/* Mobile Scene Builder de-duplication:
   The multi-camera Scene image already appears immediately above this section.
   Keep both visuals side-by-side on larger screens, but show only the detailed
   Scene Builder visual on phones so the page does not repeat the same artwork. */
@media (max-width: 720px) {
  .art-duo--scene-builder .art-duo__item:first-child {
    display: none;
  }
}
