/* ===================================================================
   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); }

/* ---- 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;
}
