@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   CreatorHQ — shared stylesheet (dark, premium)
   Used by index.html, privacy.html, terms.html, support.html
   ============================================================ */

:root {
  --bg: #06070C;
  --bg-soft: #0A0C15;
  --card: rgba(255, 255, 255, 0.032);
  --card-strong: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --ink: #F2F4FA;
  --ink-soft: #A8AFC2;
  --ink-faint: #6E7588;
  --accent: #4D6BFF;
  --brand-blue: #3452FF;
  --violet: #8B7CF7;
  --cyan: #2DE0D2;
  --grad: linear-gradient(115deg, #4D6BFF 0%, #8B7CF7 100%);
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

::selection { background: rgba(77, 107, 255, 0.4); }

/* Ambient page glow */
.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 82% -8%, rgba(77, 107, 255, 0.16), transparent 62%),
    radial-gradient(760px 480px at -10% 22%, rgba(139, 124, 247, 0.10), transparent 60%),
    radial-gradient(680px 420px at 55% 118%, rgba(45, 224, 210, 0.07), transparent 60%);
}

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 7, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.16s ease;
}
.nav-menu a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  white-space: nowrap;
}
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.brand .brand-mark {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-faint);
  align-self: flex-start;
  margin-left: 1px;
  margin-top: 2px;
  line-height: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* ---------------- Buttons ---------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #FFFFFF;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(77, 107, 255, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 32px rgba(77, 107, 255, 0.42);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  transition: border-color 0.18s ease, background 0.18s ease;
}

/* Version tag inside download buttons - a lightweight "you're getting the
   latest build" confirmation right on the CTA itself. Kept visually
   secondary (reduced opacity/weight) so it reads as metadata, not part of
   the button's main label. Update alongside the download URLs on every
   desktop release - see desktop/README.md's "Releasing an update" section. */
.btn-version {
  opacity: 0.6;
  font-weight: 500;
  font-size: 0.82em;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, 0.05); }

/* ---------------- Hero ---------------- */
.hero { padding: 88px 0 40px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--cyan);
}
.hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  max-width: 14ch;
}
.hero h1 .grad-text,
h2 .grad-text {
  background: linear-gradient(115deg, #6D86FF 0%, #A79BFF 55%, #2DE0D2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 50ch;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* Platform chips */
.platform-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------------- Phone frames ---------------- */
.phone {
  position: relative;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(160deg, #303850 0%, #14171F 42%, #0D0F16 100%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.6),
    0 6px 20px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.phone img {
  width: 100%;
  border-radius: 36px;
  aspect-ratio: 700 / 1522;
  object-fit: cover;
  display: block;
  background: #0B0E14;
}

.hero-visual { position: relative; }
.hero-visual .phone {
  max-width: 330px;
  margin: 0 auto;
  transform: rotate(1.6deg);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(closest-side, rgba(77, 107, 255, 0.28), transparent 72%);
  filter: blur(14px);
  z-index: -1;
}

.phone-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  max-width: 520px;
  margin: 0 auto;
}
.phone-duo .phone { border-radius: 36px; padding: 8px; }
.phone-duo .phone img { border-radius: 28px; }
.phone-duo .phone:last-child { margin-top: 52px; }

.phone-solo { max-width: 320px; margin: 0 auto; }

/* ---------------- Sections ---------------- */
section { padding: 96px 0; position: relative; }
.section-divider { border-top: 1px solid var(--border); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--ink-soft); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head.center .eyebrow::before { display: none; }

/* Replaces strip */
.replaces {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
.replaces .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-faint);
}
.replaces .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.replaces .arrow { color: var(--cyan); font-weight: 700; }
.replaces .keep { color: var(--ink); font-weight: 600; }

/* ---------------- Platform cards ---------------- */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.platform-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.7;
}
.platform-card.meta::before { background: linear-gradient(115deg, #1877F2, #E1306C, #FCAF45); }
.platform-card.youtube::before { background: #FF0033; }
.platform-logos { display: flex; gap: 12px; margin-bottom: 22px; }
.platform-logos .logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--card-strong);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-logos .logo-badge svg { width: 24px; height: 24px; }
.platform-card h3 { font-size: 21px; margin-bottom: 12px; }
.platform-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.platform-card p:last-child { margin-bottom: 0; }
.platform-card .mini-note {
  font-size: 13.5px;
  color: var(--ink-faint);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 18px;
}
.platform-aside {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trust-mini {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 22px 24px;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-mini svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--cyan); margin-top: 2px; }
.trust-mini strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }

/* Live-today platform status strip (sits above the platform cards —
   the at-a-glance answer to "what can I connect right now?") */
.live-strip {
  display: flex;
  align-items: center;
  gap: 12px 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.live-strip-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(45, 224, 210, 0.3);
  background: rgba(45, 224, 210, 0.05);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.live-chip svg { width: 17px; height: 17px; flex-shrink: 0; }
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(45, 224, 210, 0.7);
  flex-shrink: 0;
}
.live-strip-note { font-size: 13px; color: var(--ink-faint); }

/* Roadmap / coming-soon platforms (muted, outlined — deliberately
   quieter than the live platform cards above) */
.roadmap {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px dashed var(--border-strong);
}
.roadmap-head { max-width: 620px; margin-bottom: 28px; }
.soon-flag {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  border: 1px dashed rgba(139, 124, 247, 0.45);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 16px;
}
.roadmap-head h3 { font-size: 21px; margin-bottom: 10px; }
.roadmap-head p { font-size: 14.5px; color: var(--ink-faint); }
.roadmap-head p strong { color: var(--ink-soft); font-weight: 600; }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 14px;
}
.roadmap-chip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px dashed var(--border);
  border-radius: 14px;
  background: transparent;
  padding: 14px 16px;
}
.roadmap-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
}
.roadmap-icon svg { width: 17px; height: 17px; }
/* Monogram fallback for coming-soon platforms without a drawn mark —
   same badge box, a single Space Grotesk initial instead of an SVG. */
.roadmap-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1;
}
.roadmap-chip strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
}
.roadmap-desc {
  display: block;
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 3px;
  line-height: 1.45;
}
.roadmap-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------------- Steps (how it works) ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 30px 32px;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  display: inline-block;
  margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15px; }
.step p + p { margin-top: 10px; }

/* ---------------- Tab walkthrough ---------------- */
.walk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
}
.walk + .walk { border-top: 1px solid var(--border); }
.walk.flip .walk-copy { order: 2; }
.walk.flip .walk-visual { order: 1; }
.tab-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  border: 1px solid rgba(139, 124, 247, 0.35);
  background: rgba(139, 124, 247, 0.08);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 20px;
}
.walk h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.walk .walk-lede { color: var(--ink-soft); font-size: 16px; margin-bottom: 22px; }
.walk-list { list-style: none; padding: 0; margin: 0; }
.walk-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--ink-soft);
  font-size: 15px;
  border-top: 1px solid var(--border);
}
.walk-list li:first-child { border-top: none; }
.walk-list li strong { color: var(--ink); font-weight: 600; }
.walk-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
}
.walk-list li::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: 21.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---------------- Gallery ---------------- */
.gallery-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 208px;
  gap: 26px;
  overflow-x: auto;
  padding: 12px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.gallery-scroller::-webkit-scrollbar { height: 6px; }
.gallery-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 99px;
}
.gallery-item { scroll-snap-align: start; }
.gallery-item .phone { border-radius: 30px; padding: 7px; }
.gallery-item .phone img { border-radius: 23px; }
.gallery-item figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.45;
}
.gallery-item figcaption strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 13.5px;
}
.gallery-hint {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 6px;
}

/* ---------------- Founders Deal ---------------- */
.founders-band {
  position: relative;
  border: 1px solid rgba(139, 124, 247, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(560px 260px at 10% 0%, rgba(139, 124, 247, 0.16), transparent 65%),
    radial-gradient(480px 240px at 95% 110%, rgba(45, 224, 210, 0.09), transparent 60%),
    var(--card);
  padding: 36px 38px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
}
.founders-flag {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.founders-copy { max-width: 640px; }
.founders-copy h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-bottom: 12px; }
.founders-copy p { color: var(--ink-soft); font-size: 15px; }
.founders-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cyan);
}
.founders-count::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(45, 224, 210, 0.7);
}
.founders-side { flex-shrink: 0; }
@media (max-width: 860px) {
  .founders-band { padding: 30px 26px; }
}

/* ---------------- Pricing ---------------- */
.billing-explainer {
  border: 1px solid rgba(45, 224, 210, 0.3);
  background: rgba(45, 224, 210, 0.06);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.billing-explainer svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--cyan); margin-top: 3px; }
.billing-explainer p { font-size: 14.5px; color: var(--ink-soft); }
.billing-explainer strong { color: var(--ink); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  background: var(--card);
  position: relative;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(77, 107, 255, 0.12), rgba(139, 124, 247, 0.05) 55%, var(--card));
  border-color: rgba(109, 134, 255, 0.5);
  box-shadow: 0 24px 70px rgba(77, 107, 255, 0.14);
}
.popular-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
}
.price-audience { font-size: 14px; color: var(--ink-soft); margin-top: 10px; min-height: 42px; }
.price-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin-top: 20px;
  line-height: 1;
}
.price-tag span { font-size: 15px; color: var(--ink-faint); font-family: 'Inter', sans-serif; font-weight: 500; }
.price-tag-sub { font-size: 14.5px; color: var(--ink-soft); margin-top: 8px; }
.price-tag-sub strong { color: var(--ink); }
.price-accounts {
  margin-top: 16px;
  display: inline-flex;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
}
.price-list { list-style: none; padding: 0; margin: 22px 0 8px; flex-grow: 1; }
.price-list li {
  font-size: 14px;
  padding: 8px 0 8px 26px;
  color: var(--ink-soft);
  position: relative;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(45, 224, 210, 0.14);
}
.price-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 17.5px;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid var(--cyan);
  border-bottom: 1.6px solid var(--cyan);
  transform: rotate(-45deg);
}
.price-list li.locked { color: var(--ink-faint); }
.price-list li.locked::before { background: rgba(255, 255, 255, 0.06); }
.price-list li.locked::after {
  border: none;
  left: 3.5px;
  top: 13.5px;
  width: 8px;
  height: 5px;
  border-radius: 2px 2px 0 0;
  border-left: 1.4px solid var(--ink-faint);
  border-right: 1.4px solid var(--ink-faint);
  border-top: 1.4px solid var(--ink-faint);
  transform: none;
  background: none;
}
.price-list li.locked span::before { content: ""; }
.price-list li.price-list-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  padding: 16px 0 2px;
}
.price-list li.price-list-label::before,
.price-list li.price-list-label::after { display: none; }
.price-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-strong);
  color: var(--ink);
  margin-top: 18px;
  transition: background 0.16s ease, border-color 0.16s ease;
}
.price-cta:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--ink); }
.price-card.featured .price-cta {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 26px rgba(77, 107, 255, 0.3);
}
.price-card.featured .price-cta:hover { filter: brightness(1.08); }
.pricing-footnote {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-faint);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq-item .faq-a p + p { margin-top: 10px; }
/* Non-collapsible FAQ variant (support page headings version) */
.faq-item h3 { font-size: 17px; }

/* ---------------- CTA band ---------------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(620px 300px at 20% 0%, rgba(77, 107, 255, 0.35), transparent 65%),
    radial-gradient(560px 300px at 85% 110%, rgba(45, 224, 210, 0.18), transparent 60%),
    #0C0F1B;
  border: 1px solid rgba(109, 134, 255, 0.35);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 22ch; margin: 0 auto; }
.cta-band p { color: var(--ink-soft); margin-top: 16px; font-size: 16.5px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 34px; }
.cta-band .platform-chips { justify-content: center; margin-top: 28px; }

/* ---------------- Footer ---------------- */
footer { border-top: 1px solid var(--border); padding: 60px 0 40px; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
}
.footer-brand-col { max-width: 320px; }
.footer-brand-col p { margin-top: 14px; font-size: 14px; color: var(--ink-soft); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--ink-soft); transition: color 0.16s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-links .footer-soon { font-size: 14px; color: var(--ink-faint); cursor: default; }
.footer-links .footer-soon small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-left: 6px;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------------- Legal pages ---------------- */
.legal { padding: 72px 0 100px; }
.legal-header { max-width: 760px; margin-bottom: 44px; }
.legal-header h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.legal-header .updated { color: var(--ink-faint); font-size: 14px; margin-top: 14px; }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 20px; margin-top: 44px; margin-bottom: 14px; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; }
.legal-body strong { color: var(--ink); }
.legal-body a.inline { color: #7C93FF; border-bottom: 1px solid transparent; }
.legal-body a.inline:hover { border-color: #7C93FF; }
.legal-notice {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

/* ---------------- Support cards ---------------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.support-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--card);
}
.support-card h3 { font-size: 18px; margin-bottom: 10px; }
.support-card p { color: var(--ink-soft); font-size: 14.5px; }
.support-card a.inline { color: #7C93FF; }
.support-card a.inline:hover { text-decoration: underline; }
.support-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(77, 107, 255, 0.14);
  border: 1px solid rgba(109, 134, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.support-icon svg { width: 20px; height: 20px; stroke: #7C93FF; }

.inline { color: #7C93FF; }
a.inline:hover { text-decoration: underline; }

/* ---------------- Blog ---------------- */
.blog-list { padding: 72px 0 100px; }
.blog-header { max-width: 760px; margin-bottom: 44px; }
.blog-header h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.blog-grid { display: flex; flex-direction: column; gap: 20px; max-width: 760px; }
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  background: var(--card);
  transition: border-color 0.16s ease, background 0.16s ease;
}
.blog-card:hover { border-color: var(--border-strong); background: var(--card-strong); }
.blog-card-meta { font-size: 13px; color: var(--ink-faint); margin-bottom: 10px; }
.blog-card h2 { font-size: 21px; margin-bottom: 10px; }
.blog-card p { color: var(--ink-soft); font-size: 15px; }
.blog-card .inline { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; }
.blog-article { padding: 72px 0 100px; }
.blog-article-header { max-width: 760px; margin-bottom: 12px; }
.blog-article-header .blog-card-meta { margin-top: 18px; margin-bottom: 0; }
.blog-article-header h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.blog-article-body { max-width: 760px; margin-top: 44px; }
.blog-article-body h2 { font-size: 22px; margin-top: 40px; margin-bottom: 14px; }
.blog-article-body h3 { font-size: 18px; margin-top: 28px; margin-bottom: 10px; }
.blog-article-body p, .blog-article-body li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.blog-article-body ul, .blog-article-body ol { padding-left: 20px; }
.blog-article-body strong { color: var(--ink); }
.blog-article-body a.inline { color: #7C93FF; border-bottom: 1px solid transparent; }
.blog-article-body a.inline:hover { border-color: #7C93FF; }
.blog-cta {
  margin-top: 44px;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}
.blog-cta p { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }

/* ---------------- Reveal (on-load, never hides content) ---------------- */
.reveal { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.reveal-delay-1 { animation-delay: 0.08s; }
.reveal-delay-2 { animation-delay: 0.16s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .walk { gap: 44px; }
  .footer-cols { gap: 40px; }
}

@media (max-width: 860px) {
  section { padding: 72px 0; }
  .hero { padding: 56px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual .phone { max-width: 270px; transform: none; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(6, 7, 12, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 8px 28px 20px;
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu a:last-child { border-bottom: none; }
  body.nav-open .nav-menu { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-right .btn-primary { padding: 11px 18px; }
  /* Keep the nav bar to one download CTA (Mac) on narrow screens so it
     doesn't collide with the hamburger toggle - the hero section below
     still shows both Mac and Windows buttons with room to wrap. */
  .nav-windows-link { display: none; }

  .platform-grid { grid-template-columns: 1fr; }
  .platform-aside { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .walk { grid-template-columns: 1fr; gap: 40px; padding: 52px 0; }
  .walk.flip .walk-copy { order: 1; }
  .walk.flip .walk-visual { order: 2; }
  .walk-visual .phone-solo { max-width: 260px; }
  .phone-duo { max-width: 420px; gap: 16px; }
  .phone-duo .phone:last-child { margin-top: 36px; }

  .gallery-scroller { grid-auto-columns: 178px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-audience { min-height: 0; }

  .support-grid { grid-template-columns: 1fr; }

  .footer-grid { flex-direction: column; }
  .cta-band { padding: 52px 26px; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 20px; }
  .hero-cta .btn-ghost, .hero-cta .btn-primary { width: 100%; justify-content: center; }
}
