:root {
  --ink-0: #06101B;
  --ink-1: #0B1A2A;
  --ink-2: #11253A;
  --ink-3: #1A3651;
  --ink-4: #294D70;
  --teal: #14B8A6;
  --teal-bright: #2DD4BF;
  --teal-soft: rgba(20, 184, 166, 0.12);
  --teal-glow: rgba(20, 184, 166, 0.35);
  --warn-soft: rgba(248, 113, 113, 0.08);
  --warn-border: rgba(248, 113, 113, 0.35);
  --warn: #FCA5A5;
  --text-on-dark: #E8F0F7;
  --text-on-dark-muted: #92A8BE;
  --text-on-dark-faint: #5C7894;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", Roboto, sans-serif;
  --max-w: 1120px;
  /* Translucent backdrop shared by both sticky bars (.site-nav, .page-nav). */
  --bar-bg: rgba(8, 16, 27, 0.72);
  --bar-border: rgba(26, 54, 81, 0.6);
}

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; }
/* min-height (not height) so <body> grows past one viewport — otherwise it
   caps the sticky nav's containing block and the bar scrolls away. */
body { min-height: 100%; }
html {
  scroll-behavior: smooth;
  /* Keep anchor targets (#features, #faq, TOC links…) clear of the sticky bars. */
  scroll-padding-top: 80px;
  /* Prevents the white-bar flash when iOS/macOS overscrolls past the top edge. */
  background: var(--ink-0);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-on-dark);
  /* Off-centre radial glows banded in the wide margins of long/wide pages.
     A vertical-only wash (subtle lift at the top, settling to flat ink) is
     uniform across the width, so nothing can seam. Section-level glows
     (.hero-glow, .showcase-bg, etc.) still carry the brand atmosphere. */
  background: linear-gradient(180deg, #0A1826 0, var(--ink-0) 640px);
  background-color: var(--ink-0);
  /* `background-attachment: fixed` is a known scroll-jank killer on mobile,
     so only enable it on devices that genuinely have the headroom. */
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  display: flex;
  flex-direction: column;
  overscroll-behavior-y: none;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* --- Brand mark --- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #0EA5E9);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.3), 0 8px 24px rgba(20, 184, 166, 0.25);
}
.brand-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
}

/* --- Top nav (marketing pages: home, roadmap, changelog) --- */

/* Full-width sticky bar; the inner wrapper keeps content at --max-w. */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  background: var(--bar-bg);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--bar-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 14px 32px;
}
.nav-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-panel {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-panel a { color: var(--text-on-dark-muted); }
.nav-panel a:hover { color: var(--teal); text-decoration: none; }
.nav-panel a[aria-current="page"] { color: var(--text-on-dark); }

/* Desktop: every link sits inline; the priority link + toggle stay hidden. */
.nav-priority { display: none; }
.nav-toggle-btn { display: none; }

/* --- Mobile: collapse to a priority link + "More" dropdown (checkbox toggle) --- */
@media (max-width: 768px) {
  .nav-inner { padding: 12px 20px; }
  .nav-cluster { position: relative; gap: 16px; }

  .nav-priority {
    display: inline-flex;
    color: var(--text-on-dark-muted);
    font-size: 14px;
    font-weight: 600;
  }
  .nav-priority:hover { color: var(--teal); text-decoration: none; }

  .nav-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    color: var(--text-on-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 7px 13px;
    border: 1px solid var(--ink-3);
    border-radius: 10px;
  }
  .nav-toggle-btn::before { content: "\2630"; font-size: 15px; line-height: 1; }

  /* Collapsed by default; the checkbox reveals it as a right-aligned card. */
  .nav-panel { display: none; }
  .nav-toggle:checked ~ .nav-panel {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 208px;
    background: var(--ink-1);
    border: 1px solid var(--ink-3);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
    z-index: 10;
  }
  .nav-toggle:checked ~ .nav-panel a {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
  }
  .nav-toggle:checked ~ .nav-panel a:hover { background: var(--ink-2); }
}

/* --- Eyebrow chip (shared) --- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 var(--teal-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--teal-glow); }
  70%  { box-shadow: 0 0 0 12px rgba(20, 184, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

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

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 56px;
  max-width: 760px;
}

main { flex: 1; }

/* --- HERO --- */

.hero {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 48px 32px 96px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  animation: fadeUp 0.8s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 22px;
  max-width: 14ch;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), #0EA5E9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin: 0 0 36px;
  max-width: 540px;
}
.lead strong { color: var(--text-on-dark); font-weight: 600; }
.hero-fine {
  margin-top: 18px;
  color: var(--text-on-dark-faint);
  font-size: 13px;
}

/* Hero: secondary Android-beta sign-up under the App Store badge */
.hero-android {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-3);
  max-width: 460px;
}
.hero-android-label {
  margin: 0 0 12px;
  color: var(--text-on-dark-muted);
  font-size: 14px;
  font-weight: 500;
}
/* Store badges */
.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border-radius: 9px;
  line-height: 0;
}
.store-badge:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.store-badge img { height: 54px; width: auto; }

/* Hero art: stacked phone mockups */
.hero-art {
  position: relative;
  height: 640px;
  display: grid;
  place-items: center;
  /* Clip phones to their container — without this, the absolutely-positioned
     phone-front (taller than the container at mobile widths) bleeds upward
     into the hero-copy area and covers the download / sign-up area. */
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 320px at 60% 50%, rgba(20, 184, 166, 0.28), transparent 70%),
    radial-gradient(280px 220px at 30% 70%, rgba(14, 165, 233, 0.22), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.phone {
  width: 280px;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(180deg, #1F3A57, #0E1F32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 60px rgba(0, 0, 0, 0.45),
    0 12px 24px rgba(20, 184, 166, 0.18);
  overflow: hidden;
}
.phone img {
  border-radius: 30px;
  width: 100%;
  height: auto;
  display: block;
}
.hero-art .phone-back {
  position: absolute;
  top: 12px;
  /* Was right: -4% — that intentionally bled past the hero-art's right edge
     and got clipped (looked like a bug). Tuck it back inside so the whole
     phone shows on every viewport. */
  right: 4%;
  transform: translate3d(0, var(--py, 0), 0) rotate(8deg);
  opacity: 0.72;
  width: 230px;
  z-index: 1;
  will-change: transform;
}
.hero-art .phone-mid {
  position: absolute;
  top: 80px;
  right: 22%;
  transform: translate3d(0, var(--py, 0), 0) rotate(-3deg);
  opacity: 0.88;
  width: 250px;
  z-index: 2;
  will-change: transform;
}
.hero-art .phone-front {
  position: absolute;
  bottom: 0;
  left: 4%;
  transform: translate3d(0, var(--py, 0), 0) rotate(-6deg);
  width: 290px;
  z-index: 3;
  will-change: transform;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 50px 80px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(20, 184, 166, 0.32);
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 24px 24px 64px;
    gap: 32px;
  }
  .hero-copy h1 { max-width: 100%; }
  /* Heights sized so the front phone (tallest, ~2.17 aspect) fits without
     spilling out of the box. */
  .hero-art { height: 600px; }
  .hero-art .phone-back { right: 2%; top: 0; width: 220px; }
  .hero-art .phone-mid { right: 18%; top: 60px; width: 230px; }
  .hero-art .phone-front { left: 10%; width: 260px; }
  /* The hero-glow blur is expensive during scroll repaint on mobile GPUs. */
  .hero-glow { filter: blur(4px); }
}
@media (max-width: 480px) {
  .hero-art { height: 520px; }
  .phone { width: 200px; }
  .hero-art .phone-back { width: 170px; right: 2%; }
  .hero-art .phone-mid { width: 190px; right: 18%; }
  .hero-art .phone-front { left: 4%; width: 220px; }
  .lead { font-size: 17px; }
}

/* --- Trust strip --- */

.trust {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  align-items: stretch;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid var(--ink-3);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.trust-item:hover {
  border-color: rgba(20, 184, 166, 0.45);
  transform: translateY(-2px);
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 2px;
}
.trust-icon svg { width: 16px; height: 16px; }
.trust-item strong {
  color: var(--text-on-dark);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.trust-item span {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .trust { grid-template-columns: 1fr; padding: 24px; gap: 14px; }
  .trust-item { padding: 18px 20px 20px; }
}



/* --- FEATURES (showcase + pair rhythm) --- */

.features {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.feature-eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Showcase — full-bleed band with one large phone */
.showcase {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}
.showcase + .showcase { padding-top: 96px; }
.showcase-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* The band clips its overflow, so a glow that reaches the edge cuts off at a
     hard horizontal line. Fade it out top and bottom so it blends into the
     page instead of seaming against the next section. */
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}
.showcase-battery .showcase-bg {
  background:
    radial-gradient(900px 600px at 80% 50%, rgba(20, 184, 166, 0.22), transparent 65%),
    radial-gradient(600px 400px at 20% 90%, rgba(14, 165, 233, 0.16), transparent 65%);
}
.showcase-social .showcase-bg {
  background:
    radial-gradient(900px 600px at 20% 50%, rgba(14, 165, 233, 0.2), transparent 65%),
    radial-gradient(700px 500px at 80% 20%, rgba(20, 184, 166, 0.18), transparent 65%);
}
/* Dividers live on the band itself, so the bg mask above doesn't fade them. */
.showcase-social {
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}

.showcase-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.showcase-content-flip .showcase-art { order: 1; }
.showcase-content-flip .showcase-copy { order: 2; }

.showcase-copy h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--text-on-dark);
}
.showcase-copy h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), #0EA5E9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.showcase-copy > p {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 460px;
}
.showcase-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}
.showcase-bullets li {
  position: relative;
  padding-left: 26px;
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  line-height: 1.55;
}
.showcase-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 0%, rgba(20, 184, 166, 0) 70%);
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.6);
}
.showcase-bullets strong { color: var(--text-on-dark); font-weight: 600; }

.showcase-art {
  display: grid;
  place-items: center;
  position: relative;
}
.phone-xl {
  width: 380px;
  transition: transform 0.4s ease;
}
.showcase-battery .phone-xl { transform: rotate(-3deg); }
.showcase-battery .phone-xl:hover { transform: rotate(-3deg) translateY(-8px) scale(1.02); }
.showcase-social .phone-xl { transform: rotate(3deg); }
.showcase-social .phone-xl:hover { transform: rotate(3deg) translateY(-8px) scale(1.02); }

@media (max-width: 880px) {
  .showcase { padding: 80px 0; }
  .showcase + .showcase { padding-top: 64px; }
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .showcase-content-flip .showcase-art { order: initial; }
  .showcase-content-flip .showcase-copy { order: initial; }
  .showcase-art { order: -1; }
  .phone-xl { width: 300px; }
}
@media (max-width: 480px) {
  .phone-xl { width: 260px; }
  .showcase-copy h2 { font-size: 28px; }
}

/* Pair — two phones side by side under a shared headline */
.pair {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 32px;
}
.pair-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.pair-head h2 {
  font-size: clamp(30px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--text-on-dark);
}
.pair-lead {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}
.pair-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  place-items: center;
}
.pair-art .phone {
  width: 340px;
  transition: transform 0.3s ease;
}
.pair-art .phone:nth-child(1) { transform: rotate(-2deg); }
.pair-art .phone:nth-child(2) { transform: rotate(2deg); }
.pair-art .phone:nth-child(1):hover { transform: rotate(-2deg) translateY(-6px) scale(1.02); }
.pair-art .phone:nth-child(2):hover { transform: rotate(2deg) translateY(-6px) scale(1.02); }

@media (max-width: 840px) {
  .pair { padding: 64px 24px; }
  .pair-head { margin-bottom: 32px; }
  .pair-art { grid-template-columns: 1fr; gap: 24px; }
  .pair-art .phone { width: 280px; }
  .pair-art .phone:nth-child(1),
  .pair-art .phone:nth-child(2) { transform: none; }
}

/* --- WHY KETOLENS (origin story + cards including Track in 3 steps) --- */

.why {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 96px 32px;
  border-top: 1px solid var(--ink-3);
}

/* Origin story — lead block inside the why section */
.why-story {
  max-width: 760px;
  margin-bottom: 64px;
}
.why-eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.why-story h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 28px;
  color: var(--text-on-dark);
  max-width: 24ch;
}
.why-story h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal), #0EA5E9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-story-body p {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 65ch;
}
.why-story-body p strong { color: var(--text-on-dark); font-weight: 600; }

/* Card grid — 6 cards, 3 per row: workflow on top, principles below */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid var(--ink-3);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.why-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 22px; height: 22px; }

/* Numbered step variant — gradient bg + white digit so it's actually
   readable. (Old version used dark navy on a teal/cyan gradient and the
   digits disappeared into the light end of the gradient.) */
.why-icon-step {
  background: linear-gradient(135deg, var(--teal), #0EA5E9);
  border-color: rgba(20, 184, 166, 0.4);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}
.why-icon-step span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(4, 43, 39, 0.35);
}

.why-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}
.why-card p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .why { padding: 64px 24px; }
  .why-story { margin-bottom: 40px; }
  .why-story-body p { font-size: 16px; line-height: 1.65; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* --- FAQ --- */

.faq {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 32px;
  border-top: 1px solid var(--ink-3);
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq details {
  background: rgba(20, 184, 166, 0.03);
  border: 1px solid var(--ink-3);
  border-radius: 12px;
  padding: 0;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: rgba(20, 184, 166, 0.5); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-dark);
  position: relative;
  padding-right: 56px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq details[open] summary::after {
  content: "−";
  background: var(--teal);
  color: #042B27;
}
.faq details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq details p a { color: var(--teal); }
.faq details p + p { padding-top: 0; padding-bottom: 14px; }
.faq details p + p:last-child { padding-bottom: 22px; }
.faq details ul {
  margin: 0;
  padding: 0 24px 14px 44px;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq details ul li { margin-bottom: 4px; }
.faq details strong { color: var(--text-on-dark); }
@media (max-width: 720px) {
  .faq { padding: 64px 20px; }
  .faq summary { padding: 16px 20px; padding-right: 52px; font-size: 15px; }
  .faq details p { padding: 0 20px 18px; }
}

/* --- Article (legal + support pages) --- */

.page-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  margin: 0;
  /* Full-width bar, but pad the link so it lines up with the 880px content. */
  padding: 14px clamp(20px, calc((100% - 880px) / 2 + 32px), 50%);
  background: var(--bar-bg);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--bar-border);
}
.page-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
  font-size: 14px;
  font-weight: 600;
}
.page-nav a:hover { color: var(--teal); text-decoration: none; }

article {
  flex: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 32px 64px;
}

article header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-3);
}

article h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.dates {
  color: var(--text-on-dark-faint);
  font-size: 14px;
  margin: 0;
}
.dates strong { color: var(--text-on-dark-muted); font-weight: 600; }

article h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 44px 0 12px;
  color: var(--text-on-dark);
}
article h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 8px;
  color: var(--text-on-dark);
}

article p, article li {
  color: var(--text-on-dark-muted);
}
article strong { color: var(--text-on-dark); font-weight: 600; }

article ul, article ol { padding-left: 22px; }
article li { margin-bottom: 6px; }

article hr {
  border: 0;
  border-top: 1px solid var(--ink-3);
  margin: 48px 0 24px;
}
article .footnote {
  color: var(--text-on-dark-faint);
  font-size: 13px;
  font-style: italic;
}

.callout {
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
}
.callout p { color: var(--text-on-dark); margin: 0; }
.callout p + p { margin-top: 8px; }

.danger {
  background: var(--warn-soft);
  border: 1px solid var(--warn-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
}
.danger h3 { color: var(--warn); margin-top: 0; }
.danger p { color: var(--text-on-dark); margin-bottom: 0; }

.steps ol {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--ink-3);
  border-radius: 12px;
  padding: 20px 20px 20px 44px;
  margin: 16px 0;
}
.steps li { color: var(--text-on-dark); }

/* --- Footer --- */

footer.site {
  padding: 56px 32px 32px;
  color: var(--text-on-dark-faint);
  font-size: 13px;
  border-top: 1px solid var(--ink-3);
  margin-top: 0;
}
footer.site a { color: var(--text-on-dark-muted); text-decoration: none; }
footer.site a:hover { color: var(--teal); }

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin: 0 0 4px;
}
.footer-tag {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  margin: 4px 0 0;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--ink-3);
  text-align: center;
  color: var(--text-on-dark-faint);
}

/* Legal-page compact footer (.links) — backward-compatible */
footer.site .links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 8px;
  justify-content: center;
}
footer.site .links span { color: var(--ink-3); }

@media (max-width: 720px) {
  footer.site { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* --- Action buttons (account deletion flow) --- */

.action-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: opacity 0.15s;
  letter-spacing: -0.01em;
}
.action-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.action-btn-danger {
  background: #DC2626;
  color: #fff;
}
.action-btn-danger:hover:not(:disabled) { opacity: 0.85; text-decoration: none; }
.action-btn-primary {
  background: var(--teal);
  color: #000;
}
.action-btn-primary:hover:not(:disabled) { opacity: 0.85; text-decoration: none; }

/* ─── Waitlist form (replaces store badges) ──────────────────────────────── */

.waitlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
  margin: 0;
}
.waitlist-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-3);
  border-radius: 14px;
  padding: 6px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.waitlist-row:focus-within {
  border-color: rgba(20, 184, 166, 0.55);
  background: rgba(20, 184, 166, 0.06);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}
.waitlist-input {
  flex: 1 1 220px;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  font: inherit;
  color: var(--text-on-dark);
  font-size: 15.5px;
}
.waitlist-input::placeholder { color: var(--text-on-dark-faint); }
.waitlist-btn {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #0EA5E9);
  color: #042B27;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 22px rgba(20, 184, 166, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.waitlist-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.38);
}
.waitlist-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  box-shadow: none;
}
.waitlist-cf:empty { display: none; }
.waitlist-cf { min-height: 0; }
.waitlist-cf:not(:empty) { padding-top: 4px; }
.waitlist-msg {
  margin: 0;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  min-height: 1em;
}
.waitlist-msg.error { color: var(--warn); }
.waitlist-success {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--text-on-dark);
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}
/* On narrow viewports the input + button stack vertically. Cap the form's
   width tightly so it doesn't visually dominate the hero copy. iOS auto-zoom
   needs the input font-size >= 16px to stay put on focus. */
@media (max-width: 640px) {
  .waitlist { max-width: 360px; }
  .waitlist-row {
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    border-radius: 12px;
  }
  .waitlist-input {
    /* Critical: base style is `flex: 1 1 220px`. In the desktop row layout
       the 220px is a width basis. The moment we switch to column-flex,
       the same value becomes a HEIGHT basis and the input renders 220px+
       tall. Pin it back to intrinsic height. */
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 16px;          /* >= 16 to suppress iOS focus zoom */
    line-height: 1.3;
    -webkit-appearance: none;  /* kill iOS Safari's native input chrome */
    appearance: none;
    border-radius: 8px;
  }
  .waitlist-btn { width: 100%; padding: 10px 16px; font-size: 14px; }
  .waitlist-msg { font-size: 12px; }
}

/* ─── Scroll progress bar ───────────────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright), #0EA5E9);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 0 14px rgba(20, 184, 166, 0.55);
  transition: transform 0.08s linear;
}

/* ─── Reveal-on-scroll ──────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
/* Stagger inner items inside common grids when their parent is revealed. */
.reveal .trust-item,
.reveal .steps-grid > li,
.reveal .why-grid > .why-card,
.reveal .faq-list > details {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: 0s;
}
.reveal.in-view .trust-item,
.reveal.in-view .steps-grid > li,
.reveal.in-view .why-grid > .why-card,
.reveal.in-view .faq-list > details {
  opacity: 1;
  transform: none;
}
.reveal.in-view .trust-item:nth-child(2),
.reveal.in-view .steps-grid > li:nth-child(2),
.reveal.in-view .why-grid > .why-card:nth-child(2),
.reveal.in-view .faq-list > details:nth-child(2) { transition-delay: 0.08s; }
.reveal.in-view .trust-item:nth-child(3),
.reveal.in-view .steps-grid > li:nth-child(3),
.reveal.in-view .why-grid > .why-card:nth-child(3),
.reveal.in-view .faq-list > details:nth-child(3) { transition-delay: 0.16s; }
.reveal.in-view .steps-grid > li:nth-child(4),
.reveal.in-view .faq-list > details:nth-child(4) { transition-delay: 0.24s; }
.reveal.in-view .faq-list > details:nth-child(n+5) { transition-delay: 0.32s; }

/* Showcase phone slides in with a subtle tilt-correct on reveal. */
.showcase.reveal .phone-xl {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.96);
  transition:
    opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s,
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s;
}
.showcase.reveal.in-view.showcase-battery .phone-xl {
  opacity: 1;
  transform: rotate(-3deg);
}
.showcase.reveal.in-view.showcase-social .phone-xl {
  opacity: 1;
  transform: rotate(3deg);
}

/* Reduced-motion: skip the dance, show content immediately. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal .trust-item,
  .reveal .steps-grid > li,
  .reveal .why-grid > .why-card,
  .reveal .faq-list > details,
  .showcase.reveal .phone-xl,
  .cl-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .scroll-progress { display: none; }
}

/* ─── Changelog / "What's New" page ─────────────────────────────────────── */

.cl-intro {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 32px 8px;
}
.cl-intro h1 {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--text-on-dark);
}
.cl-lead {
  color: var(--text-on-dark-muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}

.cl-list {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cl-entry {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid var(--ink-3);
  border-radius: 16px;
  padding: 28px 28px 24px;
}

.cl-entry-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.cl-version {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 999px;
  padding: 4px 14px;
}
.cl-date {
  color: var(--text-on-dark-faint);
  font-size: 14px;
  font-weight: 500;
}
.cl-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid var(--warn-border);
  background: var(--warn-soft);
  color: var(--warn);
}
.cl-status-draft {
  border-color: var(--ink-4);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark-faint);
}

.cl-headline {
  margin: 0 0 20px;
  color: var(--text-on-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.cl-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cl-item-text {
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.cl-tag {
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 3px 9px;
  min-width: 68px;
  text-align: center;
}
.cl-tag-new {
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.3);
}
.cl-tag-improved {
  color: #38BDF8;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.32);
}
.cl-tag-fixed {
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ink-4);
}

.cl-empty {
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  text-align: center;
  padding: 24px 0;
}
.cl-empty a { color: var(--teal); }

/* Reveal for dynamically-injected entries (scroll-anim.js can't see them). */
.cl-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.cl-reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .cl-intro { padding: 40px 24px 4px; }
  .cl-list { padding: 28px 24px 64px; gap: 16px; }
  .cl-entry { padding: 22px 20px 20px; }
  .cl-headline { font-size: 16.5px; }
  .cl-item { flex-direction: column; gap: 6px; }
  .cl-tag { min-width: 0; }
}

/* ─── Roadmap page ──────────────────────────────────────────────────────── */

.rm-intro {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 56px 32px 8px;
}
.rm-intro h1 {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--text-on-dark);
}
.rm-lead {
  color: var(--text-on-dark-muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 68ch;
}
.rm-xlink {
  margin: 18px 0 0;
  font-size: 15px;
  color: var(--text-on-dark-muted);
}
.rm-xlink a { color: var(--teal); font-weight: 600; }

.rm-board {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.rm-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.rm-col-head h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.rm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.rm-now .rm-dot { background: var(--teal); box-shadow: 0 0 10px var(--teal-glow); }
.rm-next .rm-dot { background: #38BDF8; box-shadow: 0 0 10px rgba(56, 189, 248, 0.45); }
.rm-later .rm-dot { background: var(--text-on-dark-faint); }

.rm-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rm-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid var(--ink-3);
  border-radius: 14px;
  padding: 18px 20px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.rm-item:hover { border-color: rgba(20, 184, 166, 0.45); transform: translateY(-2px); }
.rm-now .rm-item { border-left: 2px solid rgba(20, 184, 166, 0.5); }
.rm-item h3 {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
}
.rm-item p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .rm-intro { padding: 40px 24px 4px; }
  .rm-board {
    grid-template-columns: 1fr;
    padding: 28px 24px 4px;
    gap: 32px;
  }
}

/* ─── Suggest-a-feature form ────────────────────────────────────────────── */

.fr-section {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 32px 88px;
}
.fr-card {
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 16px;
  padding: 32px 30px;
}
.fr-card h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}
.fr-lead {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}
.fr-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  max-width: 540px;
}
.fr-idea,
.fr-email {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-3);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15.5px;
  color: var(--text-on-dark);
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.fr-idea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.fr-idea::placeholder,
.fr-email::placeholder { color: var(--text-on-dark-faint); }
.fr-idea:focus,
.fr-email:focus {
  border-color: rgba(20, 184, 166, 0.55);
  background: rgba(20, 184, 166, 0.06);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}
.fr-cf:empty { display: none; }
.fr-btn {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #0EA5E9);
  color: #042B27;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 22px rgba(20, 184, 166, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.fr-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.38);
}
.fr-btn:disabled { cursor: not-allowed; opacity: 0.5; box-shadow: none; }
.fr-msg {
  margin: 0;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  min-height: 1em;
}
.fr-msg.error { color: var(--warn); }
.fr-success {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--text-on-dark);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .fr-section { padding: 24px 24px 64px; }
  .fr-card { padding: 24px 20px; }
  /* >= 16px keeps iOS Safari from auto-zooming the field on focus. */
  .fr-idea, .fr-email { font-size: 16px; }
  .fr-btn { width: 100%; }
}

/* ── Geo-aware App Store availability note ─────────────────────────────────── */
.geo-note { margin: 12px 0 0; font-size: 14px; line-height: 1.5; }
.geo-note[hidden] { display: none; }

/* Supported country — quiet teal reassurance */
.geo-note--ok {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-bright);
  font-weight: 600;
}
.geo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal-glow);
  flex: none;
}

/* Unsupported country — soft warning card with notify + override escape hatch */
.geo-note--no {
  max-width: 440px;
  padding: 14px 16px;
  border: 1px solid var(--warn-border);
  background: var(--warn-soft);
  border-radius: 14px;
}
.geo-no-lead { margin: 0 0 10px; color: var(--text-on-dark); }
.geo-notify-form { margin: 12px 0 2px; }
.geo-override { margin: 10px 0 0; font-size: 12.5px; color: var(--text-on-dark-faint); }
.geo-override a { color: var(--text-on-dark-muted); }

/* Disabled badge when the visitor's country isn't covered (worker adds .is-disabled) */
.store-badge.is-disabled {
  opacity: 0.4;
  filter: grayscale(1);
  cursor: not-allowed;
  pointer-events: none;
}
