/* TinyCast scroll-story: components.
   Only transform / opacity are animated (plus stroke-dashoffset on the
   generation ring). Journey screen internals are prefixed j- / jp-. */

@keyframes tc-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(2); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes tc-twk {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}
@keyframes tc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Record button CTA (hero: coral, finale: gold) ---------- */

.record-cta {
  position: relative;
  width: 194px;
  height: 194px;
  display: grid;
  place-items: center;
  flex: none;
}
.record-cta .pulse {
  position: absolute;
  inset: 21px;
  border-radius: 50%;
  background: rgba(255, 111, 77, 0.22);
  animation: tc-pulse 2.6s ease-out infinite;
}
.record-cta .pulse:nth-child(2) {
  background: rgba(255, 111, 77, 0.18);
  animation-delay: 1.3s;
}
.record-btn {
  position: relative;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
  background: radial-gradient(circle at 38% 32%, #FF8E5A, #FF6F4D 72%);
  box-shadow: 0 20px 42px -8px rgba(242, 84, 45, 0.6),
              inset 0 -7px 16px rgba(170, 40, 8, 0.28);
}
.record-cta--gold .pulse { background: rgba(239, 167, 56, 0.25); }
.record-cta--gold .pulse:nth-child(2) { background: rgba(222, 78, 120, 0.22); }
.record-cta--gold .record-btn {
  background: radial-gradient(circle at 38% 32%, #F4B85A, #EFA738 70%);
  box-shadow: 0 20px 42px -8px rgba(239, 167, 56, 0.55),
              inset 0 -7px 16px rgba(170, 110, 10, 0.3);
}
.record-cta-caption {
  display: block;
  text-align: center;
  margin-block-start: 0.9rem;
  font-family: var(--font-day-display);
  font-weight: 700;
  color: var(--fg-accent);
}
.record-cta--gold + .record-cta-caption,
.world-night .record-cta-caption {
  font-family: var(--font-night-display);
  font-weight: 400;
  color: var(--st-star);
}

/* ---------- App Store badge ---------- */

.appstore-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  padding: 0.6rem 1.3rem;
  border-radius: 14px;
  background: var(--sb-ink);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-day-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}
.appstore-badge small { font-weight: 400; font-size: 0.7rem; opacity: 0.85; }
.world-night .appstore-badge { background: var(--st-star); color: var(--st-ink); }

/* Large hero variant: Apple glyph + stacked label, subtle lift on hover. */
.appstore-badge--lg {
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 26px -12px rgba(59, 42, 30, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.appstore-badge--lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(59, 42, 30, 0.6);
}
.appstore-badge-logo { flex: none; }
.appstore-badge-text { display: flex; flex-direction: column; align-items: flex-start; }

/* ---------- Panel lede (gallery / pricing shared) ---------- */

.panel-lede {
  font-size: var(--fs-lede);
  color: var(--fg-muted);
}

/* ---------- Phone mockup shell ---------- */

/* Reusable device frame: percent-based bezel + radius + island so it scales
   identically at any width (hero, journey, gallery). */
.phone {
  width: min(300px, 78vw);
  aspect-ratio: 300 / 658;
  background: #0c0c0f;
  border-radius: 15.5%;
  padding: 2.8%;
  box-shadow: 0 34px 64px -22px rgba(40, 20, 55, 0.5),
              0 10px 24px rgba(0, 0, 0, 0.18),
              inset 0 0 0 1px rgba(255, 255, 255, 0.06); /* rim light */
  margin: 0;
  flex: none;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12.5%; /* concentric with the bezel */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--sb-paper);
  font-size: 13px;
  line-height: 1.4;
  color: var(--sb-ink);
}
/* Centered Dynamic Island with a camera-lens dot. Uses physical left/transform
   (not inset-inline-start) so centering is truly symmetric under RTL. */
.phone-island {
  position: absolute;
  z-index: 6;
  inset-block-start: 2.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  aspect-ratio: 2.9 / 1;
  background: #000;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-island::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  right: 9%;
  width: 18%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #23303a, #000 70%);
}
.phone-status {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.4% 7% 0; /* percent so glyphs clear the island at any scale */
  font-weight: 700;
  font-size: 12px;
}
.phone-screen.is-night .phone-status { color: var(--st-on-dark); }
.phone-battery {
  width: 22px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  opacity: 0.85;
}
.phone-battery::after {
  content: "";
  position: absolute;
  inset-block: 1.5px;
  inset-inline-start: 1.5px;
  width: 13px;
  background: currentColor;
  border-radius: 1px;
}
.phone-status > span { display: flex; align-items: center; gap: 5px; }

/* ---------- Journey screens: six stacked layers, opacity-only fades ---------- */

.j-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  opacity: 0;
  padding-block-start: 44px;
}
/* Engine mode scrubs opacity + transform on each screen; give them their own
   compositing layer so the slide/pop stays cheap. */
.js-sky .j-screen { will-change: opacity, transform; }
.j-screen--day { background: var(--sb-paper); }
.j-screen--night {
  background: linear-gradient(180deg, var(--st-night-top), var(--st-tabbar));
  color: var(--st-on-dark);
  font-family: var(--font-night);
}
.j-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 20px 18px;
  min-height: 0;
}
.j-center--top { justify-content: flex-start; padding-block-start: 6px; }

/* Shared in-phone text bits */
.p-title { font-family: var(--font-day-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.p-sub { color: var(--sb-ink2); font-size: 12px; margin-block-start: 3px; }

/* Beat 1: create screen */
.p-record {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin-block-start: 16px;
}
.p-record .pulse {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(255, 111, 77, 0.22);
  animation: tc-pulse 2.6s ease-out infinite;
}
.p-record .pulse:nth-child(2) { background: rgba(255, 111, 77, 0.18); animation-delay: 1.3s; }
.p-record-btn {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #FF9D5A, #FF6F4D 72%);
  box-shadow: 0 16px 34px -8px rgba(242, 84, 45, 0.6), inset 0 -6px 13px rgba(170, 40, 8, 0.28);
  display: grid;
  place-items: center;
}
.j-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 34px;
  margin-block-start: 14px;
}
.j-wave span {
  width: 5px;
  border-radius: 3px;
  background: #FF6F4D;
  transform: scaleY(0.45);
  transform-origin: center;
}
.j-wave span:nth-child(1) { height: 16px; }
.j-wave span:nth-child(2) { height: 26px; background: #FF9D3D; }
.j-wave span:nth-child(3) { height: 34px; }
.j-wave span:nth-child(4) { height: 22px; background: #FFC24B; }
.j-wave span:nth-child(5) { height: 14px; }
.j-bubble {
  opacity: 0;
  background: var(--sb-card);
  border: 1px solid var(--sb-line);
  border-radius: 14px;
  border-end-end-radius: 4px;
  padding: 8px 11px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: var(--sb-ink);
  box-shadow: 0 6px 14px -8px rgba(90, 55, 25, 0.3);
  max-width: 220px;
  margin-block-start: 12px;
}

/* Beat 2: approval screen */
.p-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 20px 8px;
}
.p-header .p-title { font-size: 17px; }
.p-mode-chip {
  margin-inline-start: auto;
  font-weight: 600;
  font-size: 10px;
  color: #8a6d2e;
  background: #FFF1D2;
  border: 1px solid #F2DCA6;
  padding: 4px 9px;
  border-radius: 20px;
}
.p-card {
  background: var(--sb-card);
  border: 1px solid var(--sb-line);
  border-radius: 16px;
  padding: 12px;
  margin: 0 16px 9px;
}
.p-card-label { font-size: 10.5px; color: var(--sb-ink2); }
.p-card-title { font-family: var(--font-day-display); font-weight: 800; font-size: 16px; margin-block: 2px 8px; }
.p-summary {
  font-size: 12px;
  line-height: 1.55;
  background: var(--sb-paper2);
  border-radius: 11px;
  padding: 9px 11px;
}
.p-safety {
  background: rgba(87, 192, 139, 0.1);
  border: 1px solid rgba(87, 192, 139, 0.4);
  border-radius: 16px;
  padding: 12px;
  margin: 0 16px;
}
.p-safety--tight { padding: 9px 11px; }
.p-safety-head { display: flex; align-items: center; gap: 8px; }
.p-safety-title { font-family: var(--font-day-display); font-weight: 800; font-size: 13.5px; color: var(--sb-safety-text); }
.p-safety-sub { font-size: 10px; color: #3E8A60; }
.j-cost {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 9px 16px 0;
  background: rgba(255, 194, 75, 0.18);
  border: 1px solid rgba(255, 194, 75, 0.55);
  border-radius: 12px;
  padding: 8px 11px;
  font-weight: 700;
  font-size: 12px;
  color: #7a5b13;
}
.j-cost-sub { margin-inline-start: auto; font-weight: 600; font-size: 10.5px; color: var(--sb-ink2); }
.p-cta-area {
  margin-block-start: auto;
  padding: 10px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-cta-btn {
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: 16px;
  background: radial-gradient(circle at 36% 30%, #FF8E5A, #FF6F4D 75%);
  color: #fff;
  text-align: center;
  font-family: var(--font-day-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 26px -8px rgba(242, 84, 45, 0.55);
}
.p-cta-note { text-align: center; font-size: 11px; color: var(--sb-ink2); }
.j-approve-btn { transition: transform 0.25s ease; }
.j-approve-btn.is-pressed { transform: scale(0.93); }

/* Beat 3: generation screen */
.j-ring-wrap { position: relative; width: 128px; height: 128px; margin-block-start: 16px; }
.j-ring-track { stroke: rgba(59, 42, 30, 0.12); }
.j-ring-fill {
  stroke: #EFA738;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3;
  transform: rotate(-90deg);
  transform-origin: center;
}
.j-ring-count {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-day-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--sb-ink);
  font-variant-numeric: tabular-nums;
}
.j-gen-steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-block-start: 16px;
  width: 100%;
  max-width: 220px;
}
.j-gen-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--sb-card);
  border: 1px solid var(--sb-line);
  font-weight: 700;
  font-size: 12px;
  text-align: start;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.j-gen-mark {
  position: relative;
  margin-inline-start: auto;
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--sb-line);
}
.j-gen-mark::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #2FA08F url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5 9-10' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 60% no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.j-gen-step.is-done { opacity: 1; }
.j-gen-step.is-done .j-gen-mark::after { opacity: 1; transform: scale(1); }
.j-gen-done {
  opacity: 0;
  margin-block-start: 14px;
  font-family: var(--font-day-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--sb-accent-dark);
}

/* Beat 4: player screen (real cover art + real audio) */
.p-nowplaying { display: flex; align-items: center; gap: 8px; padding: 10px 20px 6px; color: var(--st-on-dark-muted); font-size: 11px; font-weight: 600; }
.j-cover-art {
  width: 128px;
  height: 128px;
  border-radius: 22px;
  box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.5);
  flex: none;
}
.p-night-title { font-family: var(--font-night-display); font-size: 17px; color: var(--st-on-dark); margin-block-start: 12px; }
.p-night-sub { font-size: 11.5px; font-weight: 600; color: var(--st-on-dark-muted); margin-block-start: 2px; }
.jp-progress {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  margin-block-start: 14px;
}
.jp-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  background: var(--st-accent);
  transform: scaleX(0);
  transform-origin: 100% 50%; /* RTL: progress grows from the start (right) edge */
}
.p-times {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: var(--st-on-dark-muted);
  margin-block-start: 4px;
  font-variant-numeric: tabular-nums;
}
.jp-play {
  margin-block-start: 12px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #F6C04E, #EFA738);
  box-shadow: 0 12px 24px -6px rgba(239, 167, 56, 0.5);
  display: grid;
  place-items: center;
}
.jp-ic { grid-area: 1 / 1; }
.jp-ic-pause { display: none; }
.jp-play.is-playing .jp-ic-play { display: none; }
.jp-play.is-playing .jp-ic-pause { display: block; }
.jp-hint { margin-block-start: 10px; font-size: 10.5px; color: var(--st-on-dark-muted); }
/* Native audio fallback (no-JS only, rendered from <noscript>) */
.jp-native { margin-block-start: 10px; width: 100%; }

/* Beat 5: continuation screen */
.j-next-big { font-family: var(--font-night-display); font-size: 19px; color: var(--st-on-dark); }
.j-next-sub { font-size: 11.5px; color: var(--st-on-dark-muted); margin-block-start: 3px; }
.j-next-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 230px;
  margin-block-start: 16px;
}
.p-next-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 9px 11px;
  font-weight: 600;
  font-size: 11.5px;
  color: var(--st-on-dark);
}
.j-next-pick { transition: transform 0.3s ease; }
.j-next-pick.is-picked {
  border-color: var(--st-accent);
  background: rgba(239, 167, 56, 0.16);
  transform: scale(1.04);
}

/* Beat 6: library screen */
.j-lib {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6px 16px 16px;
  min-height: 0;
}
.j-lib-head { font-family: var(--font-night-display); font-size: 17px; color: var(--st-on-dark); margin-block: 6px 12px; }
.j-lib-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.j-cover {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.5);
}
.j-cover img { width: 100%; height: 100%; object-fit: cover; }
.j-cover--g1 { background: linear-gradient(150deg, #6A6FD6, #DE4E78); }
.j-cover--g2 { background: linear-gradient(150deg, #E98A3C, #C2493F); }
.j-cover--g3 { background: linear-gradient(150deg, #3E9BB8, #2C5FA8); }
.j-cover--g4 { background: linear-gradient(150deg, #8E5FC2, #4E3A8E); }
.j-cover--g5 { background: linear-gradient(150deg, #D6558E, #8E3A6B); }
.js-sky .j-cover {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.4, 1);
}
.js-sky .j-cover.is-on { opacity: 1; transform: scale(1); }
.j-lib-note {
  margin-block-start: auto;
  padding-block-start: 10px;
  font-size: 11px;
  color: var(--st-on-dark-muted);
  text-align: center;
}

/* ---------- Gallery: real app screenshots in one sticky iPhone.
     Tall section: the heading scrolls first (acts as a breather/divider after
     the journey), then the phone pins and scrubs the six screenshots. ---------- */

.scene-gallery {
  height: 600svh;
  padding-block: clamp(3rem, 8svh, 5rem) 0;
  background: var(--sky-night);
  background-color: #241338;
  background-attachment: fixed;
}
@media (max-width: 46rem) { .scene-gallery { height: 520svh; } }

.gallery-sticky {
  position: sticky;
  inset-block-start: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.gallery-stage { position: relative; display: grid; place-items: center; z-index: 1; }
/* Device dominates the viewport region; capped at 340px vs 640px source so the
   screenshots are always downscaled (crisp), never upscaled. */
.phone--showcase { width: min(340px, 86vw, calc(86svh * 0.4559)); }

/* Captions: reuse the journey scrim pill, pinned near the device bottom. */
.gallery-captions { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.g-caption {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: 6svh;
  transform: translateX(50%);
  width: max-content;
  max-width: min(88vw, 26rem);
  text-align: center;
  opacity: 0;
  margin: 0;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: rgba(20, 10, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
  color: #F7ECD8;
  font-family: var(--font-night);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
}
@supports not ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .g-caption { background: rgba(24, 12, 40, 0.85); }
}

/* Reduced-motion / no-JS: collapse the pin. The phone shows the first (home)
   screenshot statically, with the rest of the screens listed as captions. */
html:not(.js-sky) .scene-gallery { height: auto; padding-block-end: 2.4rem; }
html:not(.js-sky) .gallery-sticky {
  position: static;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
html:not(.js-sky) .phone--showcase { width: min(280px, 70vw); }
html:not(.js-sky) .gallery-captions {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  max-width: 30rem;
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}
html:not(.js-sky) .g-caption {
  position: static;
  opacity: 1;
  transform: none;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.scene-gallery .wrap { text-align: center; }
.scene-gallery h2 {
  font-family: var(--font-night-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  color: var(--st-on-dark);
}
.scene-gallery .panel-lede {
  margin-block-start: 0.6rem;
  color: var(--st-on-dark-muted);
  font-family: var(--font-night);
}

/* Stacked real screenshots inside the showcase phone (engine scrubs
   opacity/transform; first shot paints before JS). */
.g-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}
.g-shot:first-child { opacity: 1; }

/* ---------- Pricing (mobile-first, stacked; side-by-side >= 46rem) ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-block-start: 1.8rem;
  max-width: 30rem;
}
@media (min-width: 46rem) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}
.price-card {
  border-radius: 22px;
  padding: 1.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--st-on-dark);
}
.price-card.featured {
  border: 2px solid var(--st-accent);
  background: rgba(239, 167, 56, 0.1);
}
.price-card .plan-name {
  font-family: var(--font-night-display);
  font-size: 1.25rem;
  color: var(--st-star);
}
.price-card .price {
  margin-block-start: 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.price-card .price-big {
  /* Body font, not Suez One: Suez's zero and shekel sign read as
     Hebrew letters (ס, שח) at display size. */
  font-family: var(--font-night);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3rem);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.price-card .price-per {
  font-size: 1.1rem;
  color: var(--st-on-dark-muted);
}
.price-card .price-note {
  color: var(--st-on-dark-muted);
  font-size: 1rem;
  margin-block-start: 0.35rem;
}
.price-card ul {
  margin-block-start: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.price-card li {
  padding-inline-start: 1.5rem;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.55;
}
.price-card li::before {
  content: "★";
  position: absolute;
  inset-inline-start: 0;
  color: var(--st-accent);
  font-size: 0.85rem;
  top: 0.2em;
}
.pricing-fineprint {
  margin-block-start: 1.4rem;
  color: var(--st-on-dark-muted);
  font-size: var(--fs-small);
  max-width: 44rem;
}
.pricing-fineprint a { color: var(--st-on-dark); }

.final-cta {
  margin-block-start: clamp(2.5rem, 7svh, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.final-cta h2 {
  font-family: var(--font-night-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  color: var(--st-on-dark);
  text-wrap: balance;
}
.final-cta .panel-lede { color: var(--st-on-dark-muted); font-size: var(--fs-lede); }
.final-cta .record-cta { margin-block-start: 1.2rem; }
