/* ============================================================
   Tadamo — tadamospeak.com
   StarSeeker-family space theme. All color in OKLCH; tokens
   shared with the app (apps/mobile/src/index.css).
   ============================================================ */

:root {
  --space-950: #030713;
  --space-900: oklch(0.17 0.035 265);
  --space-800: oklch(0.22 0.04 265);
  --space-700: oklch(0.3 0.04 265);
  --star: oklch(0.85 0.16 85);
  --star-deep: oklch(0.75 0.16 85);
  --star-ink: oklch(0.22 0.05 85);
  --thruster: oklch(0.72 0.19 145);
  --nova: oklch(0.7 0.15 220);
  --plasma: oklch(0.65 0.24 300);
  --hull: oklch(0.93 0.01 265);
  --hull-dim: oklch(0.68 0.02 265);
  --orbit: oklch(0.78 0.12 205);
  --record: oklch(0.64 0.24 25);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;

  --fs-h1: clamp(2.35rem, 5vw + 1rem, 3.4rem);
  --fs-h2: clamp(1.65rem, 2.6vw + 0.9rem, 2.5rem);
  --fs-h3: clamp(1.1rem, 0.5vw + 1rem, 1.3rem);
  --fs-lead: clamp(1.05rem, 0.6vw + 0.95rem, 1.3rem);

  --radius-tile: 22px;
  --radius-pill: 999px;
  --wrap: 71.25rem;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
}

/* ---------- Reset-lite ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--space-950);
  color: var(--hull);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--orbit);
}

a:hover {
  color: var(--hull);
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ---------- Utilities ---------- */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.wrap--narrow {
  max-width: 50rem;
}

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

.skip-link {
  position: absolute;
  top: -3.5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1.1rem;
  background: var(--star);
  color: var(--star-ink);
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: top 150ms ease-out;
}

.skip-link:focus {
  top: 1rem;
  color: var(--star-ink);
}

/* ---------- Starfield ---------- */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 22px 44px, oklch(0.93 0.01 265 / 0.75), transparent 100%),
    radial-gradient(1px 1px at 168px 122px, oklch(0.93 0.01 265 / 0.5), transparent 100%),
    radial-gradient(1.5px 1.5px at 301px 66px, oklch(0.85 0.16 85 / 0.6), transparent 100%),
    radial-gradient(1px 1px at 401px 208px, oklch(0.93 0.01 265 / 0.65), transparent 100%),
    radial-gradient(1px 1px at 88px 274px, oklch(0.78 0.12 205 / 0.5), transparent 100%),
    radial-gradient(1.5px 1.5px at 244px 322px, oklch(0.93 0.01 265 / 0.4), transparent 100%),
    radial-gradient(1px 1px at 358px 358px, oklch(0.93 0.01 265 / 0.55), transparent 100%);
  background-size: 440px 420px;
  background-repeat: repeat;
}

.starfield::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 64px 96px, oklch(0.93 0.01 265 / 0.35), transparent 100%),
    radial-gradient(1px 1px at 190px 32px, oklch(0.65 0.24 300 / 0.4), transparent 100%),
    radial-gradient(1px 1px at 132px 210px, oklch(0.93 0.01 265 / 0.3), transparent 100%);
  background-size: 260px 250px;
  background-repeat: repeat;
  animation: twinkle 7s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

.btn--star {
  background: var(--star);
  color: var(--star-ink);
}

.btn--star:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px oklch(0.85 0.16 85 / 0.35);
  color: var(--star-ink);
}

.btn--star:active {
  transform: translateY(0) scale(0.98);
}

.btn--small {
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
}

.btn--outline {
  background: transparent;
  color: var(--hull);
  border: 1px solid var(--space-700);
}

.btn--outline:hover {
  border-color: var(--hull-dim);
  transform: translateY(-1px);
  color: var(--hull);
}

.link-arrow {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid oklch(0.78 0.12 205 / 0.4);
  padding-bottom: 2px;
}

.link-arrow:hover {
  border-bottom-color: var(--hull);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.13 0.03 265 / 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(0.3 0.04 265 / 0.55);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--star);
  text-decoration: none;
}

.brand:hover {
  color: var(--star);
}

.brand--footer {
  margin: 0 0 0.75rem;
}

.brand-mark {
  height: 2.25rem;
  width: auto;
  flex: none;
}

.starburst {
  width: 1.15em;
  height: 1.15em;
  fill: var(--star);
  flex: none;
}

.site-nav {
  display: none;
}

.site-nav-link {
  position: relative;
  color: var(--hull-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  color: var(--hull);
}

/* Sister-product pill */
.nav-star-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem 0.3rem 0.35rem;
  border: 1px solid oklch(0.85 0.16 85 / 0.4);
  border-radius: var(--radius-pill);
  background: oklch(0.85 0.16 85 / 0.08);
  color: var(--star);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease-out, border-color 150ms ease-out;
}

.nav-star-pill:hover,
.nav-star-pill:focus-visible {
  background: oklch(0.85 0.16 85 / 0.16);
  border-color: oklch(0.85 0.16 85 / 0.7);
  color: var(--star);
}

.nav-star-pill img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  flex: none;
}

.nav-star-ext {
  font-size: 0.8em;
  line-height: 1;
  opacity: 0.85;
}

/* Hamburger */
.nav-toggle {
  display: inline-grid;
  place-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: oklch(0.17 0.035 265 / 0.7);
  border: 1px solid var(--space-700);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--hull);
  transition: transform 200ms ease-out, opacity 150ms ease-out;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Small screens: disclosure panel under the header */
@media (max-width: 61.999em) {
  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    background: oklch(0.12 0.028 265);
    border-bottom: 1px solid oklch(0.3 0.04 265 / 0.55);
    box-shadow: 0 24px 48px oklch(0 0 0 / 0.45);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 0.25rem;
    max-height: calc(100vh - 4.5rem);
    max-height: calc(100dvh - 4.5rem);
    overflow-y: auto;
    animation: menu-drop 200ms ease-out;
  }

  .site-nav-link {
    padding: 0.75rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid oklch(0.3 0.04 265 / 0.35);
  }

  .nav-star-pill {
    justify-self: start;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .site-nav-cta {
    justify-self: start;
    margin-top: 0.75rem;
    text-align: center;
  }

  /* No-JS fallback: panel renders in flow, toggle hidden
     (mirrors the .js gate used by the pricing toggle) */
  html:not(.js) .nav-toggle {
    display: none;
  }

  html:not(.js) .site-nav {
    display: grid;
    position: static;
    flex: 1 1 100%;
    gap: 0.25rem;
    padding-inline: 0;
    background: transparent;
    border-bottom: 0;
  }
}

@keyframes menu-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Wide screens: inline nav with underline-slide hover */
@media (min-width: 62em) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
  }

  .nav-toggle,
  .site-nav-cta {
    display: none;
  }

  .site-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    border-radius: 2px;
    background: var(--star);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 200ms ease-out;
  }

  .site-nav-link:hover::after,
  .site-nav-link:focus-visible::after {
    transform: scaleX(1);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(56rem 34rem at 78% -8%, oklch(0.65 0.24 300 / 0.14), transparent 68%),
    radial-gradient(44rem 30rem at 12% 108%, oklch(0.7 0.15 220 / 0.1), transparent 70%);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 56em) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .hero-shot {
    margin-top: 0.5rem;
  }
}

.hero-logo {
  width: clamp(170px, 18vw, 230px);
  height: auto;
  margin-bottom: 0.75rem;
}

/* Announcement chip — pill link into the waitlist */
.hero-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.9rem;
  border: 1px solid oklch(0.85 0.16 85 / 0.35);
  border-radius: var(--radius-pill);
  background: oklch(0.85 0.16 85 / 0.07);
  color: var(--hull);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 150ms ease-out, background 150ms ease-out;
}

.hero-chip:hover,
.hero-chip:focus-visible {
  border-color: oklch(0.85 0.16 85 / 0.7);
  background: oklch(0.85 0.16 85 / 0.12);
  color: var(--hull);
}

.hero-chip-key {
  color: var(--star);
}

.hero-chip-arrow {
  transition: transform 150ms ease-out;
}

.hero-chip:hover .hero-chip-arrow,
.hero-chip:focus-visible .hero-chip-arrow {
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-chip:hover .hero-chip-arrow,
  .hero-chip:focus-visible .hero-chip-arrow {
    transform: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--space-700);
  border-radius: var(--radius-pill);
  background: oklch(0.17 0.035 265 / 0.7);
  color: var(--hull-dim);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--thruster);
  animation: pulse-soft 1.6s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-top: 0.75rem;
}

.glow {
  color: var(--star);
  text-shadow: 0 0 34px oklch(0.85 0.16 85 / 0.35);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--hull-dim);
  max-width: 34em;
}

.lead-sub {
  font-size: clamp(0.98rem, 0.4vw + 0.9rem, 1.1rem);
  color: var(--hull-dim);
  max-width: 36em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.hero-meta {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--hull-dim);
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--hull-dim);
  font-style: italic;
}

.hero-trust {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--hull-dim);
  letter-spacing: 0.01em;
}

.hero-shot {
  display: flex;
  justify-content: center;
}

/* ---------- Phone frames ---------- */
.phone {
  width: min(300px, 80vw);
  padding: 11px;
  border-radius: 46px;
  background: linear-gradient(160deg, oklch(0.32 0.03 265), oklch(0.14 0.03 265) 55%);
  box-shadow:
    0 30px 70px oklch(0 0 0 / 0.55),
    inset 0 0 0 1px oklch(0.93 0.01 265 / 0.08);
}

.phone img {
  border-radius: 36px;
}

.phone--hero {
  transform: rotate(2deg);
}

.phone--step {
  width: min(240px, 70vw);
  margin-inline: auto;
  border-radius: 38px;
  padding: 9px;
}

.phone--step img {
  border-radius: 30px;
}

/* ---------- Sections ---------- */
.section {
  padding-block: var(--section-pad);
}

.section--raised {
  background: linear-gradient(oklch(0.17 0.035 265 / 0.45), oklch(0.17 0.035 265 / 0.45));
  border-block: 1px solid oklch(0.3 0.04 265 / 0.45);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
}

.section-sub {
  color: var(--hull-dim);
  font-size: var(--fs-lead);
  max-width: 38em;
  margin-bottom: 2.5rem;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 56em) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--space-900);
  border: 1px solid var(--space-700);
  border-radius: var(--radius-tile);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.step h3 {
  font-size: var(--fs-h3);
}

.step p {
  color: var(--hull-dim);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--star-ink);
  background: var(--star);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.step .phone {
  margin-top: auto;
  padding-top: 9px;
}

.quote-bubble {
  margin-top: auto;
  background: var(--space-800);
  border: 2px solid var(--star);
  border-radius: var(--radius-tile);
  padding: 1.25rem 1.35rem;
  position: relative;
}

.quote-bubble::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 2.2rem;
  width: 18px;
  height: 18px;
  background: var(--space-800);
  border-right: 2px solid var(--star);
  border-bottom: 2px solid var(--star);
  transform: rotate(45deg);
}

.quote-bubble p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.quote-bubble .quote-who {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--hull-dim);
}

.quote-caption {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--hull-dim);
}

/* ---------- Features (tile grid) ---------- */
.tile-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.tile {
  background: var(--space-800);
  border: 2px solid var(--space-700);
  border-radius: var(--radius-tile);
  padding: 1.6rem 1.5rem;
  transition: transform 200ms ease-out, border-color 200ms ease-out;
}

.tile:hover {
  transform: translateY(-3px);
}

.tile--star {
  border-color: var(--star);
}

.tile--plasma {
  border-color: var(--plasma);
}

.tile-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.75rem;
  background: var(--space-900);
  border: 1px solid var(--space-700);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.tile h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.4em;
}

.tile p {
  color: var(--hull-dim);
  margin: 0;
}

.tile em {
  color: var(--hull);
  font-style: italic;
}

/* ---------- Comparison table (features) ---------- */
.compare {
  margin-top: 3.5rem;
}

.compare-title {
  font-size: var(--fs-h3);
}

.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--space-700);
  border-radius: var(--radius-tile);
  background: var(--space-800);
}

.compare-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid oklch(0.3 0.04 265 / 0.55);
}

.compare-table thead th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hull-dim);
  background: var(--space-900);
}

.compare-table thead th:last-child {
  color: var(--star);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table td {
  color: var(--hull-dim);
}

.compare-table td + td {
  color: var(--hull);
  font-weight: 500;
}

/* ---------- Apraxia ---------- */
.definition {
  margin: 0 0 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--space-900);
  border-left: 4px solid var(--star);
  border-radius: 0 var(--radius-tile) var(--radius-tile) 0;
}

.definition p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.8vw + 1rem, 1.45rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.apraxia-grid {
  display: grid;
  gap: 1.75rem 2.5rem;
}

@media (min-width: 42em) {
  .apraxia-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.apraxia-grid h3 {
  font-size: var(--fs-h3);
}

.apraxia-grid p {
  color: var(--hull-dim);
  margin: 0;
}

.apraxia-note {
  margin-top: 2.5rem;
  padding: 1.1rem 1.4rem;
  border: 1px dashed var(--space-700);
  border-radius: var(--radius-tile);
  color: var(--hull-dim);
  font-size: 0.95rem;
}

/* ---------- Pronounce band ---------- */
.pronounce-band {
  padding-block: 2rem;
  background: var(--space-900);
  border-block: 1px solid var(--space-700);
}

.pronounce-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  max-width: 44rem;
}

.pronounce-inner .starburst {
  width: 1.4rem;
  height: 1.4rem;
  flex: none;
}

.pronounce-inner p {
  margin: 0;
  color: var(--hull-dim);
  font-size: 0.98rem;
}

.pronounce-inner strong {
  color: var(--star);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---------- StarSeeker showcase ---------- */
.showcase-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(1.75rem, 4.5vw, 3.5rem);
  border: 1px solid oklch(0.3 0.04 265 / 0.6);
  border-radius: 26px;
  background:
    radial-gradient(46rem 26rem at 82% -12%, oklch(0.65 0.24 300 / 0.16), transparent 70%),
    radial-gradient(40rem 24rem at 8% 110%, oklch(0.7 0.15 220 / 0.14), transparent 70%),
    radial-gradient(36rem 20rem at 50% 118%, oklch(0.85 0.16 85 / 0.07), transparent 70%),
    linear-gradient(oklch(0.15 0.033 265), oklch(0.15 0.033 265));
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, oklch(0.93 0.01 265 / 0.55), transparent 100%),
    radial-gradient(1px 1px at 82% 18%, oklch(0.85 0.16 85 / 0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 26% 78%, oklch(0.78 0.12 205 / 0.5), transparent 100%),
    radial-gradient(1px 1px at 68% 82%, oklch(0.93 0.01 265 / 0.4), transparent 100%),
    radial-gradient(1px 1px at 92% 64%, oklch(0.65 0.24 300 / 0.5), transparent 100%);
  animation: twinkle 8s ease-in-out infinite;
  pointer-events: none;
}

.showcase-copy,
.showcase-visual {
  position: relative;
  z-index: 1;
}

@media (min-width: 56em) {
  .showcase-card {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.showcase-kicker {
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--thruster);
  margin-bottom: 1.25rem;
}

.showcase-logo {
  width: clamp(200px, 22vw, 250px);
  height: auto;
  margin-bottom: 1.25rem;
}

.showcase-lead {
  color: var(--hull-dim);
  font-size: var(--fs-lead);
  max-width: 36em;
}

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--hull-dim);
}

.check-list li::before {
  content: "✓";
  content: "✓" / ""; /* alt-text suppression: decorative, hidden from AT */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--thruster);
  font-weight: 700;
}

.showcase-bridge {
  font-style: italic;
  color: var(--hull-dim);
  margin-bottom: 1.5rem;
}

.showcase-callout {
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  border: 1px solid oklch(0.85 0.16 85 / 0.35);
  border-radius: 16px;
  background: oklch(0.85 0.16 85 / 0.07);
}

.showcase-callout p {
  margin: 0;
  font-size: 0.98rem;
}

.showcase-callout a {
  color: var(--star);
  font-weight: 600;
}

.showcase-callout a:hover {
  color: var(--hull);
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.showcase-more {
  margin: 0;
  font-size: 0.95rem;
}

.browser-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid oklch(0.93 0.01 265 / 0.12);
  background: oklch(0.2 0.035 265);
  box-shadow: 0 30px 70px oklch(0 0 0 / 0.55);
  transform: rotate(1.5deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  background: oklch(0.24 0.035 265);
  border-bottom: 1px solid oklch(0.93 0.01 265 / 0.08);
}

.browser-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: oklch(0.45 0.03 265);
  flex: none;
}

.browser-url {
  margin-left: 0.5rem;
  padding: 0.2rem 0.9rem;
  border-radius: var(--radius-pill);
  background: oklch(0.15 0.03 265);
  color: var(--hull-dim);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.browser-frame img {
  width: 100%;
  height: auto;
}

/* ---------- Pricing ---------- */
.pricing-why {
  color: var(--hull-dim);
  font-size: 0.95rem;
  max-width: 44em;
  margin: -1.5rem 0 2.25rem;
}

.pricing-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  margin-bottom: 2.5rem;
  background: var(--space-900);
  border: 1px solid var(--space-700);
  border-radius: var(--radius-pill);
}

.pricing-toggle-btn {
  padding: 0.55rem 1.25rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--hull-dim);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease-out, color 150ms ease-out;
}

.pricing-toggle-btn.is-active {
  background: var(--star);
  color: var(--star-ink);
}

.pricing-toggle-save {
  margin-left: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  align-items: stretch;
}

@media (min-width: 56em) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--space-800);
  border: 2px solid var(--space-700);
  border-radius: var(--radius-tile);
  padding: 2rem 1.75rem;
  position: relative;
}

.price-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.3em;
}

.price-card-desc {
  color: var(--hull-dim);
  margin-bottom: 1.5rem;
}

.price-body {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--hull);
  margin: 0;
}

.price-period {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--hull-dim);
}

.price-note {
  margin: 0.35rem 0 0;
  color: var(--thruster);
  font-size: 0.9rem;
  font-weight: 600;
}

.price-card .btn {
  margin-top: auto;
  text-align: center;
}

.price-card--bundle {
  border-color: var(--star);
  background: linear-gradient(160deg, var(--space-800), oklch(0.24 0.05 85 / 0.18));
  box-shadow: 0 20px 50px oklch(0.85 0.16 85 / 0.12);
}

@media (min-width: 56em) {
  .price-card--bundle {
    transform: scale(1.04);
  }
}

.price-card--bundle .price-note {
  color: var(--hull-dim);
  font-weight: 500;
  text-decoration: line-through;
}

.bundle-note {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--hull-dim);
  max-width: 24em;
}

.bundle-note-hl {
  color: var(--thruster);
  font-weight: 600;
}

.price-card-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--star);
  color: var(--star-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-footnote {
  margin-top: 2rem;
  color: var(--hull-dim);
  font-size: 0.95rem;
  text-align: center;
}

/* Yearly/monthly toggle: hidden targets only apply once JS has run
   (see .js on <html>); with JS disabled both periods stay visible. */
.js .pricing .price-yearly {
  display: none;
}

.js .pricing.is-yearly .price-monthly {
  display: none;
}

.js .pricing.is-yearly .price-yearly {
  display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--space-900);
  border: 1px solid var(--space-700);
  border-radius: 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--star);
  transition: transform 200ms ease-out;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.25rem;
  color: var(--hull-dim);
}

/* ---------- Waitlist ---------- */
.waitlist-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 56em) {
  .waitlist-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.field-row input[type="email"] {
  flex: 1 1 16rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--space-700);
  border-radius: var(--radius-pill);
  background: var(--space-900);
  color: var(--hull);
  font-family: var(--font-body);
  font-size: 1rem;
}

.field-row input[type="email"]::placeholder {
  color: oklch(0.55 0.02 265);
}

.field-row input[type="email"]:focus-visible {
  outline: 2px solid var(--nova);
  outline-offset: 2px;
}

/* Honeypot — visually removed, still in the DOM for bots */
.hp-field {
  position: absolute;
  left: -6000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin-top: 0.9rem;
  color: oklch(0.78 0.16 25);
  font-weight: 500;
}

.waitlist-success {
  padding: 1.75rem;
  background: var(--space-800);
  border: 2px solid var(--thruster);
  border-radius: var(--radius-tile);
  max-width: 34rem;
}

.waitlist-success:focus-visible {
  outline: 2px solid var(--nova);
  outline-offset: 3px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35em;
}

.waitlist-success p:last-child {
  margin: 0;
  color: var(--hull-dim);
}

.waitlist-note {
  color: var(--hull-dim);
  font-size: 0.9rem;
  margin: -1.5rem 0 1.5rem;
}

.waitlist-shot {
  display: none;
}

@media (min-width: 56em) {
  .waitlist-shot {
    display: flex;
    justify-content: center;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid oklch(0.3 0.04 265 / 0.55);
  padding-block: 3rem 3.5rem;
  background: oklch(0.13 0.03 265 / 0.6);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 48em) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }
}

.footer-brand .brand {
  font-size: 1.15rem;
}

.footer-disclaimer {
  color: var(--hull-dim);
  font-size: 0.9rem;
  max-width: 28em;
}

.footer-made {
  color: var(--hull-dim);
  font-size: 0.9rem;
  margin: 0 0 0.25rem;
}

.footer-copyright {
  color: var(--hull-dim);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hull-dim);
  margin: 0 0 0.25rem;
}

.footer-links a {
  color: var(--hull-dim);
  text-decoration: none;
  font-size: 0.95rem;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--hull);
  text-decoration: underline;
}

/* ---------- Scroll reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 550ms ease-out, transform 550ms ease-out;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Anchor offset for sticky header ---------- */
#how,
#features,
#apraxia,
#starseeker,
#pricing,
#faq,
#waitlist {
  scroll-margin-top: 4.5rem;
}

/* ---------- Print: never hide reveal content ---------- */
@media print {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .phone--hero,
  .browser-frame {
    transform: none;
  }
}
