:root {
  --bg: #0e0f13;
  --ink: #f3f4f7;
  --muted: #a2a7b2;
  --lav: #4fa9ff;
  --lav-deep: #b9adff;
  --blue: #7cc4ff;
  --blue-deep: #7cc4ff;
  --pink: #ff9ed4;
  --pink-deep: #ff9ed4;
  --pill: #ececec;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* ─── Decorative blobs ─────────────────────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.blob--lav  { width: 460px; height: 460px; background: var(--lav-deep);  top: -120px; left: -120px; }
.blob--blue { width: 520px; height: 520px; background: var(--blue-deep); bottom: -180px; right: -140px; opacity: .35; }
.blob--pink { width: 380px; height: 380px; background: var(--pink-deep); top: 40%; right: 12%; opacity: .28; }

/* ─── Nav ──────────────────────────────────────── */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  z-index: 1;
}
.nav__brand img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__brand span {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: -1px;
}
.nav__pills {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.nav__pills a {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease;
}
.nav__pills a:hover { background: var(--ink); color: #0e0f13; }
.nav__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}
.nav__menu span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}
.nav__cta {
  display: none;
  align-items: center;
  padding: 11px 24px;
  border-radius: 999px;
  color: #1b1d22;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f6f8fa 15%,
      #e4e8ed 49%,
      #cdd3db 50%,
      #e6eaef 80%,
      #fbfcfd 100%);
  border: 1px solid #bcc2cc;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -2px 3px rgba(0,0,0,.18),
    0 4px 12px rgba(0,0,0,.32);
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
  transition: filter .2s ease, transform .15s ease;
}
.nav__cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.nav__cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 42%;
  height: 200%;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-180%) rotate(20deg);
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.9) 50%,
    rgba(255,255,255,0) 100%);
  filter: blur(4px);
  opacity: 0;
}
.nav__cta:hover::after { animation: shine .8s ease-out forwards; }
.nav__hint { font-size: 13px; color: var(--muted); font-weight: 500; }
.nav__hint kbd {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 1px 7px;
  font-family: "Space Grotesk", monospace;
  box-shadow: 0 1px 0 rgba(0,0,0,.3);
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 96px;
  text-align: left;
  padding: 0 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
  width: 100%;
}

/* ─── Phone stage + dreamy texture ─── */
.hero__stage {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.phone-wrap {
  position: relative;
  z-index: 1;
  animation: float 16s ease-in-out infinite;
  will-change: transform;
}
.phone {
  width: 320px;
  max-width: 82vw;
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(20,24,40,.28));
  transition: opacity .4s ease;
}
/* dreamy colored glow beneath the phone */
.dreamy {
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  width: 128%;
  height: 78%;
  z-index: 0;
  border-radius: 50%;
  filter: blur(55px) saturate(1.2);
  opacity: .85;
  background:
    radial-gradient(42% 46% at 28% 42%, var(--lav-deep) 0%, transparent 70%),
    radial-gradient(46% 50% at 72% 46%, var(--blue-deep) 0%, transparent 68%),
    radial-gradient(50% 52% at 50% 78%, var(--pink-deep) 0%, transparent 70%);
  animation: dreamShift 12s ease-in-out infinite;
}
@keyframes dreamShift {
  0%,100% { transform: translateX(-50%) scale(1);   opacity: .8; }
  50%     { transform: translateX(-50%) scale(1.06); opacity: .95; }
}

.hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  max-width: 620px;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

/* ─── Debate chat bubbles ─── */
.bubble {
  position: absolute;
  z-index: 3;
  width: 178px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(20,24,40,.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(20,24,40,.16);
  font-size: 12px;
  line-height: 1.32;
  opacity: 0;
  transform: translate(var(--tx, 0), 10px) scale(.94);
  transition: opacity .4s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.bubble.is-typing { opacity: 1; transform: translate(0, 0) scale(1); }
.bubble p { margin: 0; color: #2c2f38; }

/* typing indicator */
.bubble__typing {
  display: none;
  align-items: center;
  gap: 5px;
  height: 18px;
  padding: 2px 3px;
}
.bubble.is-typing:not(.is-sent) .bubble__typing { display: flex; }
.bubble__typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4c8d2;
  animation: typedot 1s infinite ease-in-out;
}
.bubble__typing i:nth-child(2) { animation-delay: .15s; }
.bubble__typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typedot {
  0%,60%,100% { transform: translateY(0);    opacity: .45; }
  30%         { transform: translateY(-4px); opacity: 1; }
}

/* message body (hidden until sent) */
.bubble__body { display: none; }
.bubble.is-sent .bubble__body { display: block; }
.bubble__avatar {
  position: absolute;
  bottom: 4px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  border: 2.5px solid;
  background: #fff;
  box-shadow: 0 4px 12px rgba(20,24,40,.18);
}
.bubble__avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bubble__avatar--flip img { transform: scaleX(-1); }
.bubble__tag {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
/* tail — borderless nub overlapping the body so it reads connected */
.bubble::after {
  content: "";
  position: absolute;
  bottom: 11px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
}

/* AGAINST — left side, slides in from the left */
.bubble--against {
  left: -38px;
  --tx: -28px;
  border-radius: 18px 18px 18px 4px;
}
.bubble--against .bubble__tag { background: #ffe1e6; color: #e11d48; }
.bubble--against .bubble__avatar { border-color: #f7a8b6; left: -44px; }
.bubble--against::after { left: -4px; }

/* FOR — right side, slides in from the right */
.bubble--for {
  right: -38px;
  --tx: 28px;
  border-radius: 18px 18px 4px 18px;
}
.bubble--for .bubble__tag { background: #dcf7e6; color: #15a34a; }
.bubble--for .bubble__avatar { border-color: #a0e2ba; right: -44px; }
.bubble--for::after { right: -4px; }

/* conversation order: a → b → a → b, zig-zag down */
.bubble--o1 { top: 1%;  }
.bubble--o2 { top: 27%; }
.bubble--o3 { top: 53%; }
.bubble--o4 { top: 79%; }


.headline {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: none;
  margin-top: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .18em;
}
.line {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: flex-start;
  gap: .1em .22em;
}
.word { display: inline-block; }
.hl { padding: 0; background: none; }
.hl--white { color: var(--ink); }
.hl--lav  { color: var(--lav); }
.hl--blue { color: var(--blue); }
.hl--pink { color: var(--pink); }

.subhead {
  margin-top: 14px;
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: var(--muted);
  max-width: 42ch;
}

/* ─── Steel store buttons ──────────────────────── */
.store-row {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.steel-btn {
  --steel-hi: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 20px;
  min-width: 200px;
  border-radius: 14px;
  text-decoration: none;
  color: #1b1d22;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* brushed steel base — lighter/whiter */
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f6f8fa 15%,
      #e4e8ed 49%,
      #cdd3db 50%,
      #e6eaef 80%,
      #fbfcfd 100%);
  border: 1px solid #bcc2cc;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -2px 3px rgba(0,0,0,.22),
    inset 2px 0 3px rgba(255,255,255,.4),
    0 3px 8px rgba(20,24,40,.22),
    0 8px 22px rgba(20,24,40,.14);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
/* fine brushed-metal streaks + top glare */
.steel-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.10) 0px,
      rgba(255,255,255,.10) 1px,
      rgba(0,0,0,.035) 2px,
      rgba(0,0,0,.035) 3px),
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,0) 45%);
  mix-blend-mode: soft-light;
  opacity: .9;
}
/* left→right shine that sweeps across the entire button on hover */
.steel-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 42%;
  height: 200%;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-180%) rotate(20deg);
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.9) 50%,
    rgba(255,255,255,0) 100%);
  filter: blur(4px);
  opacity: 0;
}
.steel-btn:hover::after {
  animation: shine .8s ease-out forwards;
}
@keyframes shine {
  0%   { opacity: 0; transform: translateX(-180%) rotate(20deg); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(430%) rotate(20deg); }
}
.steel-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -2px 3px rgba(0,0,0,.25),
    0 6px 14px rgba(20,24,40,.28),
    0 12px 30px rgba(20,24,40,.18);
}
.steel-btn:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 5px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.5),
    0 2px 6px rgba(20,24,40,.2);
}
.steel-btn__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.7));
}
/* Apple logo (single-path svg) picks up currentColor */
.steel-btn__icon path:not([fill]) { fill: #1b1d22; }
.steel-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
}
.steel-btn__text small {
  font-size: 10px;
  letter-spacing: .06em;
  font-weight: 600;
  color: #4a4e57;
}
.steel-btn__text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
}

/* full-width bar stuck to the bottom edge of a store button, clipped to
   the button's own rounded corners via its overflow:hidden */
.steel-btn:has(.steel-btn__bar) {
  padding-bottom: 22px;
}
.steel-btn__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 3px 0;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.steel-btn__bar--soon {
  color: #f3f4f7;
  background: linear-gradient(180deg, #7b828f, #454954);
}
.steel-btn__bar--beta {
  color: #0e0f13;
  background: linear-gradient(180deg, #6be89a, #34c46b);
}
/* dim the App Store face slightly since it isn't live yet */
.steel-btn:has(.steel-btn__bar--soon) .steel-btn__icon,
.steel-btn:has(.steel-btn__bar--soon) .steel-btn__text {
  opacity: .55;
}
.store-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.store-note a {
  color: var(--lav);
  text-decoration: none;
  font-weight: 600;
}
.store-note a:hover { text-decoration: underline; }

/* ─── Footer ───────────────────────────────────── */
.foot {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 32px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 13px;
  color: var(--muted);
}
.foot__brand { display: flex; flex-direction: column; gap: 2px; }
.foot__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.foot__name img { height: 24px; width: auto; display: block; }
.foot__tag { color: var(--muted); }
.foot__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.foot__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.foot__links a:hover { color: var(--ink); }

/* ─── Legal pages ──────────────────────────────── */
.legal {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px 80px;
  flex: 1;
}
.legal__back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.legal__back:hover { color: var(--ink); }
.legal h1 {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
}
.legal .updated { color: var(--muted); font-size: 13px; margin-top: 8px; }
.legal h2 {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-top: 36px;
}
.legal p, .legal li {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
}
.legal ul { padding-left: 20px; }
.legal a { color: var(--lav); }

/* ─── Beta signup form ────────────────────────── */
.legal--form { max-width: 560px; }
.beta-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.field em { color: var(--muted); font-weight: 400; font-style: normal; }
.field input[type="text"],
.field textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  resize: vertical;
  transition: border-color .2s ease, background .2s ease;
}
.field input[type="text"]::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input[type="text"]:focus,
.field textarea:focus { border-color: var(--lav); background: rgba(255,255,255,.07); }
.field--radio {
  border: 0;
  padding: 0;
}
.radio-row {
  display: flex;
  gap: 20px;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink);
}
.radio-row label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.radio-row input { accent-color: var(--lav); width: 16px; height: 16px; }
.field__hint { font-size: 12px; font-weight: 400; color: var(--muted); line-height: 1.5; }
.beta-form__submit {
  align-self: flex-start;
  margin-top: 4px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid #bcc2cc;
  color: #1b1d22;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f6f8fa 15%,
      #e4e8ed 49%,
      #cdd3db 50%,
      #e6eaef 80%,
      #fbfcfd 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -2px 3px rgba(0,0,0,.18),
    0 4px 12px rgba(0,0,0,.32);
  transition: filter .2s ease, transform .15s ease;
}
.beta-form__submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
.beta-form__submit:disabled { opacity: .7; cursor: default; transform: none; }
.beta-form__status { margin-top: 20px; font-size: 14px; font-weight: 600; }
.beta-form__status.is-success { color: #7ce0a3; }
.beta-form__status.is-error { color: #ff9ed4; }

/* ─── FAQ accordion ─── */
.faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item[open] { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-a {
  padding: 0 20px 18px;
}
.faq-a p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.faq-a a { color: var(--lav); }

/* ─── Blog empty state ─── */
.blog-empty {
  margin-top: 36px;
  padding: 44px 28px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}
.blog-empty .soon-tag { margin: 0 auto; }
.blog-empty h2 {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.blog-empty p {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.blog-empty a { color: var(--lav); }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 720px) {
  /* nav: logo left, Download right */
  .nav { padding: 16px 18px; justify-content: space-between; }
  .nav__pills { display: none; }
  .nav__hint { display: none; }
  .nav__cta { display: inline-flex; }
  .nav__brand img { height: 34px; }
  .nav__brand span { font-size: 18px; }

  /* stack: phone (with bubbles) up top, text + buttons below it */
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    flex: 0 1 auto;
    gap: 0;
    padding: 8px 18px 32px;
  }
  .phone { width: 75vw; max-width: 330px; }
  .dreamy { bottom: 6%; height: 60%; opacity: .65; filter: blur(45px) saturate(1.2); }

  /* debate bubbles hug the phone edges */
  .bubble { width: 144px; font-size: 10.5px; padding: 7px 9px; }
  .bubble__avatar { width: 26px; height: 26px; }
  .bubble--against { left: -6px; }
  .bubble--for { right: -6px; }
  .bubble--against .bubble__avatar { left: -30px; }
  .bubble--for .bubble__avatar { right: -30px; }
  .bubble--o1 { top: 2%;  }
  .bubble--o2 { top: 28%; }
  .bubble--o3 { top: 54%; }
  .bubble--o4 { top: 80%; }

  /* let all words flow & wrap as one centered group */
  .line { display: contents; white-space: normal; }
  .headline {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .16em .28em;
    font-size: clamp(1.5rem, 7.4vw, 2.1rem);
  }

  /* text sits BELOW the phone — no overlap */
  .hero__copy {
    align-items: center;
    max-width: 420px;
    margin-top: 22px;
    padding: 0;
    width: 100%;
  }
  .subhead { margin-top: 12px; text-align: center; }

  .store-row { flex-direction: row; justify-content: center; width: 100%; max-width: 420px; gap: 12px; margin-top: 22px; }
  .steel-btn { flex: 1; min-width: 0; padding: 10px 12px; gap: 8px; }
  .steel-btn__bar { font-size: 8.5px; padding: 2px 0; }
  .steel-btn__icon { width: 24px; height: 24px; }
  .steel-btn__text small { font-size: 9px; }
  .steel-btn__text strong { font-size: 15px; }

  .foot { flex-direction: column; gap: 14px; text-align: center; padding: 20px 20px 26px; }
  .foot__brand { align-items: center; }
  .foot__links { flex-wrap: wrap; justify-content: center; gap: 18px; }
}
