/* ============================================================
   SpeechAI — section-specific styles
   ============================================================ */

/* ---------- ambient brand glow ---------- */
.glow {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(70px); opacity: .5; border-radius: 50%;
}
[data-theme="light"] .glow { opacity: .32; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 7vw, 84px); }
.hero__glow-a { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, var(--brand-coral-light), transparent 68%); }
.hero__glow-b { width: 440px; height: 440px; bottom: -180px; left: -140px; background: radial-gradient(circle, var(--brand-teal), transparent 68%); opacity: .35; }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  margin: 22px 0 0;
}
.hero h1 .accent { color: var(--accent); }
.hero__sub {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: var(--text-muted); line-height: 1.55; margin-top: 22px; max-width: 540px;
}
.hero__form { margin-top: 30px; }
.hero__stores { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero__secondary { font-size: .9rem; color: var(--text-subtle); margin-top: 16px; }

/* ---------- Player card (hero visual) ---------- */
.player {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--player-shadow);
  padding: 22px;
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}
.player__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.player__thumb {
  width: 46px; height: 46px; border-radius: var(--radius-md); flex: 0 0 auto;
  background: linear-gradient(160deg, var(--grad-top), var(--grad-bot));
  display: grid; place-items: center; color: #fff;
}
.player__thumb svg { width: 22px; height: 22px; }
.player__meta { min-width: 0; }
.player__file { font-family: var(--font-display); font-weight: 700; font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__sub { font-size: .8rem; color: var(--text-subtle); display: flex; align-items: center; gap: 7px; margin-top: 2px; }
.player__offline {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; font-family: var(--font-display);
  color: var(--secondary);
  background: color-mix(in oklab, var(--secondary) 15%, transparent);
  padding: 3px 9px; border-radius: var(--radius-pill);
}
.player__offline .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--secondary); animation: blink 2.4s var(--ease) infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* transcript with running highlight */
.player__text { font-size: 1.02rem; line-height: 1.85; color: var(--text-muted); letter-spacing: -.01em; }
.player__text .w { position: relative; transition: color .25s var(--ease); border-radius: 4px; padding: 1px 1px; }
.player__text .w.active { color: var(--text); background: color-mix(in oklab, var(--accent) 24%, transparent); }
.player__text .w.read { color: var(--text); }

/* waveform */
.waveform { display: flex; align-items: center; gap: 3px; height: 40px; margin: 20px 0 16px; }
.waveform .bar {
  flex: 1; border-radius: var(--radius-pill);
  background: color-mix(in oklab, var(--accent) 80%, var(--text));
  opacity: .55;
  height: 30%;
  animation: wave 1.3s var(--ease) infinite;
}
@keyframes wave { 0%,100%{ transform: scaleY(.32); opacity:.45 } 50%{ transform: scaleY(1); opacity:.95 } }

/* controls */
.player__controls { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.player__progress { flex: 1; height: 5px; border-radius: var(--radius-pill); background: var(--border); position: relative; overflow: hidden; }
.player__progress > i { position: absolute; inset: 0 auto 0 0; width: 38%; background: var(--accent); border-radius: var(--radius-pill); animation: prog 9s linear infinite; }
@keyframes prog { from{ width: 6% } to{ width: 96% } }
.player__btns { display: flex; align-items: center; gap: 8px; }
.player__btn { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); background: transparent; color: var(--text-muted); }
.player__btn--play { width: 46px; height: 46px; background: var(--accent); color: var(--accent-on); border: none; }
.player__btn svg { width: 18px; height: 18px; }
.player__btn--play svg { width: 20px; height: 20px; }
.player__speed { font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--text-muted); padding: 8px 11px; border-radius: var(--radius-pill); border: 1px solid var(--border); }

/* floating accents around player */
.player-wrap { position: relative; }
.float-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  color: var(--text);
  background: var(--surface); border: 1px solid var(--border-strong);
  padding: 9px 14px; border-radius: var(--radius-pill);
  box-shadow: 0 18px 34px -16px rgba(0,0,0,.6);
  animation: floaty 5s var(--ease) infinite;
}
.float-chip svg { width: 15px; height: 15px; color: var(--accent); }
.float-chip--a { top: -20px; left: -26px; }
.float-chip--b { bottom: -20px; right: -22px; animation-delay: 1.6s; }
.float-chip .tl { color: var(--secondary); }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.trust__cell {
  background: var(--bg); padding: 26px 22px;
  display: flex; align-items: center; gap: 13px;
}
.trust__cell .ic { width: 26px; height: 26px; color: var(--accent); flex: 0 0 auto; }
.trust__cell .ic.teal { color: var(--secondary); }
.trust__cell span { font-family: var(--font-display); font-weight: 600; font-size: .96rem; line-height: 1.25; }

/* ============================================================
   PROBLEM → SHIFT
   ============================================================ */
.problem { text-align: center; }
.problem .h2 { max-width: 16ch; margin-inline: auto; }
.problem__body { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.6; color: var(--text-muted); max-width: 760px; margin: 28px auto 0; }
.problem__body strong { color: var(--text); font-weight: 600; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.pillar + .pillar { margin-top: clamp(72px, 9vw, 130px); }
.pillar--flip .pillar__media { order: -1; }
.pillar__label { margin-bottom: 18px; }
.pillar h3 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); letter-spacing: -.03em; }
.pillar__body { color: var(--text-muted); font-size: 1.12rem; line-height: 1.6; margin-top: 18px; max-width: 460px; }
.pillar__benes { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.pillar__benes li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; color: var(--text); line-height: 1.45; }
.pillar__benes .tick { width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; background: color-mix(in oklab, var(--accent) 16%, transparent); color: var(--accent); }
.pillar__benes .tick svg { width: 13px; height: 13px; }
.pillar--teal .pillar__benes .tick { background: color-mix(in oklab, var(--secondary) 16%, transparent); color: var(--secondary); }

/* pillar media frames */
.media {
  position: relative; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--player-shadow);
  padding: 28px; min-height: 320px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.media__glow { position: absolute; width: 280px; height: 280px; filter: blur(60px); opacity: .4; border-radius: 50%; }

/* pillar 1 — file to audio */
.m-file { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.m-doc { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--radius-md); background: var(--surface-2); border: 1px solid var(--border); }
.m-doc__ic { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; background: color-mix(in oklab, var(--accent) 16%, transparent); color: var(--accent); flex: 0 0 auto; }
.m-doc__ic svg { width: 20px; height: 20px; }
.m-doc__lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.m-doc__lines i { height: 7px; border-radius: 4px; background: var(--border-strong); display: block; }
.m-arrow { align-self: center; color: var(--accent); animation: nudge 2s var(--ease) infinite; }
.m-arrow svg { width: 24px; height: 24px; }
@keyframes nudge { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(6px) } }
.m-audio { display: flex; align-items: center; gap: 4px; height: 48px; padding: 14px 18px; border-radius: var(--radius-md); background: linear-gradient(150deg, var(--grad-top), var(--grad-bot)); }
.m-audio .b { flex: 1; background: rgba(255,255,255,.85); border-radius: 3px; animation: wave 1.1s var(--ease) infinite; height: 40%; }

/* pillar 2 — translation toggle */
.m-trans { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.m-trans__toggle { display: flex; gap: 6px; padding: 5px; border-radius: var(--radius-pill); background: var(--surface-2); border: 1px solid var(--border); align-self: flex-start; }
.m-trans__toggle span { font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: 7px 15px; border-radius: var(--radius-pill); color: var(--text-subtle); }
.m-trans__toggle span.on { background: var(--secondary); color: #fff; }
.m-lang { padding: 16px 18px; border-radius: var(--radius-md); background: var(--surface-2); border: 1px solid var(--border); }
.m-lang .flag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--secondary); margin-bottom: 9px; font-family: var(--font-display); }
.m-lang p { font-size: 1.02rem; line-height: 1.5; color: var(--text); }
.m-lang.is-orig { opacity: .6; }

/* pillar 3 — offline */
.m-offline { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.m-offline__ring { width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; position: relative; border: 2px solid var(--border); }
.m-offline__ring::before { content:""; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--secondary); clip-path: inset(0 0 50% 0); animation: spin 3.5s linear infinite; opacity:.7; }
@keyframes spin { to { transform: rotate(360deg); } }
.m-offline__ring svg { width: 48px; height: 48px; color: var(--secondary); }
.m-offline__lib { display: flex; gap: 8px; }
.m-offline__lib i { width: 34px; height: 44px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--border); display: block; position: relative; }
.m-offline__lib i::after { content:""; position: absolute; left: 6px; right: 6px; bottom: 7px; height: 4px; border-radius: 2px; background: var(--accent); opacity: .7; }
.m-offline__cap { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--text); }
.m-offline__cap b { color: var(--secondary); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  background: var(--accent); color: var(--accent-on); margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; letter-spacing: -.02em; }
.step p { color: var(--text-muted); font-size: .98rem; margin-top: 8px; line-height: 1.5; }
.step__line { position: absolute; top: 22px; left: 56px; right: -22px; height: 2px; background: var(--border); }
.step:last-child .step__line { display: none; }
.step__line::after { content:""; position: absolute; right: 0; top: -3px; width: 8px; height: 8px; border-top: 2px solid var(--border); border-right: 2px solid var(--border); transform: rotate(45deg); }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ============================================================
   PERSONAS
   ============================================================ */
.personas { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.persona { padding: 24px 20px; }
.persona__ic { width: 42px; height: 42px; border-radius: var(--radius-md); display: grid; place-items: center; margin-bottom: 16px; background: color-mix(in oklab, var(--secondary) 14%, transparent); color: var(--secondary); }
.persona__ic svg { width: 21px; height: 21px; }
.persona h3 { font-size: 1.02rem; letter-spacing: -.02em; }
.persona p { color: var(--text-muted); font-size: .9rem; margin-top: 8px; line-height: 1.5; }

/* ============================================================
   SHARING SPOTLIGHT
   ============================================================ */
.sharing { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.share-demo { position: relative; }
.browser {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--player-shadow);
}
.browser__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.browser__url { flex: 1; display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-subtle); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 6px 14px; }
.browser__url svg { width: 13px; height: 13px; color: var(--secondary); }
.browser__body { padding: 28px 24px; }
.browser__play { display: flex; align-items: center; gap: 14px; }
.browser__play .pbtn { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: var(--accent-on); display: grid; place-items: center; flex: 0 0 auto; }
.browser__play .pbtn svg { width: 22px; height: 22px; }
.browser__wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 38px; }
.browser__wave i { flex: 1; background: color-mix(in oklab, var(--accent) 70%, var(--text)); opacity: .5; border-radius: 3px; animation: wave 1.2s var(--ease) infinite; height: 40%; }
.browser__note { font-size: .9rem; color: var(--text-subtle); margin-top: 20px; display: flex; align-items: center; gap: 8px; }
.browser__note svg { width: 15px; height: 15px; color: var(--secondary); }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare__row { display: grid; grid-template-columns: 1.1fr 1.4fr 1.4fr; }
.compare__row + .compare__row { border-top: 1px solid var(--border); }
.compare__cell { padding: 20px 24px; display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.compare__cell.label { font-family: var(--font-display); font-weight: 700; color: var(--text); background: var(--surface-soft); }
.compare__cell.ours { background: color-mix(in oklab, var(--accent) 8%, var(--surface)); font-weight: 600; color: var(--text); }
.compare__cell.theirs { color: var(--text-subtle); }
.compare__head .compare__cell { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; padding-block: 18px; }
.compare__head .ours { color: var(--accent); }
.compare__cell .ck { width: 19px; height: 19px; color: var(--secondary); flex: 0 0 auto; }
.compare__cell .xk { width: 17px; height: 17px; color: var(--text-subtle); flex: 0 0 auto; opacity: .7; }
.compare__close { text-align: center; font-size: 1.1rem; color: var(--text-muted); margin-top: 28px; }
.compare__close b { color: var(--text); font-weight: 600; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin-inline: auto; }
.plan { padding: 34px 32px; display: flex; flex-direction: column; }
.plan--featured { border: 2px solid var(--accent); position: relative; background: var(--surface); }
.plan__flag { position: absolute; top: -13px; left: 32px; background: var(--accent); color: var(--accent-on); font-family: var(--font-display); font-weight: 700; font-size: .76rem; letter-spacing: .04em; padding: 5px 13px; border-radius: var(--radius-pill); }
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.plan__price .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; letter-spacing: -.04em; }
.plan__price .per { color: var(--text-subtle); font-size: .95rem; }
.plan__yr { font-size: .9rem; color: var(--secondary); font-weight: 600; min-height: 20px; }
.plan__tag { color: var(--text-muted); font-size: .98rem; margin: 14px 0 22px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan__list li { display: flex; align-items: flex-start; gap: 11px; font-size: .98rem; color: var(--text); line-height: 1.4; }
.plan__list .tick { width: 20px; height: 20px; flex: 0 0 auto; color: var(--accent); margin-top: 1px; }
.plan__note { text-align: center; color: var(--text-subtle); font-size: .92rem; margin: 26px auto 0; max-width: 560px; line-height: 1.55; }
.plan__note b { color: var(--text); font-weight: 600; }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy { text-align: center; }
.privacy__body { font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: var(--text-muted); max-width: 720px; margin: 24px auto 0; line-height: 1.6; }
.privacy__badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { max-width: 880px; margin-inline: auto; text-align: center; }
.founder__quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.4; letter-spacing: -.02em; color: var(--text); }
.founder__quote .accent { color: var(--accent); }
.founder__sign { margin-top: 28px; font-family: var(--font-display); font-weight: 700; color: var(--text-muted); font-size: 1rem; }
.founder__mark { width: 40px; height: 40px; margin: 0 auto 28px; }
.founder__mark .mk-wave { fill: var(--mk-wave); } .founder__mark .mk-coral { fill: var(--mk-coral); } .founder__mark .mk-forest { fill: var(--mk-forest); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta { position: relative; overflow: hidden; text-align: center; }
.finalcta__panel {
  position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 80px);
  overflow: hidden;
}
.finalcta__glow { width: 460px; height: 460px; top: -200px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, var(--brand-coral-light), transparent 68%); }
.finalcta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); position: relative; z-index: 1; }
.finalcta__sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--text-muted); margin: 20px auto 0; max-width: 560px; position: relative; z-index: 1; }
.finalcta__form { margin: 34px auto 0; position: relative; z-index: 1; }
.finalcta__re { font-size: .92rem; color: var(--text-subtle); margin-top: 18px; position: relative; z-index: 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text); letter-spacing: -.02em;
}
.faq__q .ic { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--border); color: var(--accent); transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.faq__q .ic svg { width: 14px; height: 14px; }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); background: var(--accent); color: var(--accent-on); border-color: var(--accent); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 4px 26px; color: var(--text-muted); font-size: 1.02rem; line-height: 1.65; max-width: 680px; }

/* ============================================================
   Phone screenshots (real app screens)
   ============================================================ */
.phone {
  position: relative; z-index: 1;
  width: 100%; max-width: 338px; margin-inline: auto;
  border-radius: 38px; overflow: hidden;
  box-shadow: var(--player-shadow);
}
.phone img { width: 100%; height: auto; display: block; }
.player-wrap .phone { max-width: 356px; animation: floaty 6s var(--ease) infinite; }
.appshot--hero { max-width: 320px; animation: floaty 6s var(--ease) infinite; }
@media (prefers-reduced-motion: reduce) { .appshot--hero { animation: none; } }
/* full transparent app screens (real screenshots) */
.appshot {
  position: relative; z-index: 1; display: block;
  width: 100%; max-width: 286px; height: auto; margin-inline: auto;
  filter: drop-shadow(0 36px 52px rgba(0,0,0,.5));
}
.pillar__media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 0; }
.pillar__media::before {
  content: ""; position: absolute; z-index: 0;
  width: 320px; height: 320px; border-radius: 50%; filter: blur(72px); opacity: .42;
  background: radial-gradient(circle, var(--brand-coral-light), transparent 68%);
}
.pillar--teal .pillar__media::before { background: radial-gradient(circle, var(--brand-teal), transparent 68%); opacity: .4; }
@media (prefers-reduced-motion: reduce) { .player-wrap .phone { animation: none; } }

/* ============================================================
   Section divider label
   ============================================================ */
.kicker-center { text-align: center; display: block; margin-bottom: 16px; }

/* ============================================================
   Responsive — sections
   ============================================================ */
@media (max-width: 1000px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .personas { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step__line { display: none; }
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { max-width: 620px; }
  .player-wrap { max-width: 440px; margin-inline: auto; width: 100%; }
  .pillar, .sharing { grid-template-columns: 1fr; gap: 36px; }
  .pillar--flip .pillar__media { order: 0; }
  .pillar__media { order: -1; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .compare__row { grid-template-columns: 1fr 1fr; }
  .compare__head .compare__cell.label, .compare__row .compare__cell.label { grid-column: 1 / -1; padding-bottom: 6px; }
  .compare__head { display: none; }
}
@media (max-width: 620px) {
  .pricing { grid-template-columns: 1fr; }
  .personas { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .float-chip--a { left: 0; top: -16px; }
  .float-chip--b { right: 0; bottom: -16px; }
}
