:root {
  color-scheme: dark;
  --blue: #00346f;
  --blue-deep: #001b3f;
  --blue-night: #011d35;
  --gold: #ffd088;
  --ink: #f8f9ff;
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--blue-night);
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgb(255 208 136 / 8%) 0 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(145deg, var(--blue) 0%, var(--blue-deep) 52%, #00142f 100%);
}

.landing-shell {
  --landing-cream: #f7f3e9;
  --landing-paper: #fffdf8;
  --landing-blue-soft: #eaf1f8;
  --landing-ink: #011d35;
  overflow: clip;
  color: var(--landing-ink);
  background: var(--landing-cream);
}

.landing-hero {
  position: relative;
  min-height: max(700px, 100svh);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 42%, rgb(127 180 255 / 22%), transparent 25rem),
    linear-gradient(142deg, #063c78 0%, #012957 44%, #011d35 100%);
}

.site-header {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  left: 50%;
  width: min(100% - 40px, 1180px);
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark,
.x-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgb(248 249 255 / 88%);
  font-size: 13px;
  font-weight: 750;
}

.brand-mark span {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.5vw, 18px);
  color: rgb(248 249 255 / 82%);
  font-size: 13px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-nav {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgb(248 249 255 / 18%);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.language-nav a {
  min-width: 30px;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  color: rgb(248 249 255 / 70%);
}

.language-nav a[aria-current='page'] {
  color: #00142f;
  background: var(--gold);
}

.language-picker {
  position: relative;
  color: rgb(248 249 255 / 78%);
  font-size: 11px;
  font-weight: 800;
}

.language-picker summary {
  min-width: 52px;
  min-height: 36px;
  padding: 0 10px 0 12px;
  border: 1px solid rgb(248 249 255 / 16%);
  border-radius: 999px;
  background: rgb(1 20 47 / 16%);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  list-style: none;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.language-picker summary::-webkit-details-marker {
  display: none;
}

.language-picker summary:hover,
.language-picker summary:focus-visible,
.language-picker[open] summary {
  color: var(--ink);
  border-color: rgb(248 249 255 / 28%);
  background: rgb(1 20 47 / 30%);
}

.language-picker summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.language-picker summary svg {
  width: 9px;
  height: 6px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 150ms ease;
}

.language-picker[open] summary svg {
  transform: rotate(180deg);
}

.language-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  width: 164px;
  padding: 6px;
  border: 1px solid rgb(248 249 255 / 14%);
  border-radius: 12px;
  background: rgb(3 26 55 / 96%);
  box-shadow: 0 18px 42px rgb(0 0 0 / 30%);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 2px;
}

.language-picker-menu a {
  min-height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: rgb(248 249 255 / 76%);
  font-size: 12px;
  transition: color 150ms ease, background 150ms ease;
}

.language-picker-menu a:hover,
.language-picker-menu a:focus-visible {
  color: var(--ink);
  background: rgb(248 249 255 / 8%);
}

.language-picker-menu a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}

.language-picker-menu a[aria-current='page'] {
  color: var(--gold);
  background: rgb(255 208 136 / 8%);
}

.landing-hero .site-header {
  padding-right: 14px;
}

.language-suggestion {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 20;
  width: min(calc(100% - 32px), 430px);
  padding: 15px 16px;
  border: 1px solid rgb(248 249 255 / 16%);
  border-radius: 16px;
  color: rgb(248 249 255 / 78%);
  background: rgb(3 26 55 / 96%);
  box-shadow: 0 18px 48px rgb(0 0 0 / 36%);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  white-space: nowrap;
}

.language-suggestion[hidden] {
  display: none;
}

.language-suggestion p {
  margin: 0;
}

.language-suggestion strong {
  color: var(--ink);
}

.language-suggestion-actions {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-left: auto;
}

.language-suggestion a {
  color: var(--gold);
  font-weight: 760;
}

.language-suggestion button {
  padding: 0;
  border: 0;
  color: rgb(248 249 255 / 54%);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-suggestion a:hover,
.language-suggestion a:focus-visible,
.language-suggestion button:hover,
.language-suggestion button:focus-visible {
  color: var(--ink);
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a[aria-current='page'] {
  color: var(--gold);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.landing-wordmark img {
  width: 138px;
  height: 42px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.x-link {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
}

.x-link span:first-child {
  color: var(--gold);
}

.x-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: currentColor;
}

.landing-hero-layout {
  width: min(100% - 48px, 1080px);
  min-height: max(700px, 100svh);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(44px, 6vw, 72px);
  padding: 88px 0;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.landing-hero-symbol {
  width: clamp(46px, 4vw, 56px);
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.landing-eyebrow {
  margin: 0 0 18px;
  color: #dca843;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.landing-hero .landing-eyebrow {
  color: var(--gold);
}

.landing-hero h1 {
  max-width: 570px;
  margin: 0;
  color: #f8f7f2;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(42px, 4.25vw, 58px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-wrap: balance;
}

.landing-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.landing-lede {
  max-width: 520px;
  margin: 22px auto 0;
  color: rgb(248 249 255 / 76%);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.46;
  text-wrap: balance;
}

.landing-download-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.store-download-cta.landing-store-cta {
  min-width: 210px;
  min-height: 61px;
  color: #011d35;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 14px 32px rgb(0 0 0 / 16%);
}

.store-download-cta.landing-store-cta:hover {
  color: #011d35;
  border-color: #ffe2b4;
  background: #ffe2b4;
}

.hero-showcase {
  position: relative;
  align-self: center;
  justify-self: center;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-showcase-image {
  position: relative;
  width: min(100%, 360px);
  max-height: min(640px, calc(100svh - 176px));
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 56px rgb(0 0 0 / 30%));
}

.hero-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 4;
  width: 36px;
  height: 30px;
  color: rgb(248 249 255 / 58%);
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  transition: color 160ms ease, opacity 220ms ease, transform 220ms ease;
  animation: hero-cue-float 2.2s ease-in-out infinite;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: var(--gold);
}

.hero-scroll-cue:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.hero-scroll-cue.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 8px);
}

.hero-scroll-cue svg {
  width: 22px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

@keyframes hero-cue-float {
  0%,
  100% {
    margin-bottom: 0;
  }

  50% {
    margin-bottom: 5px;
  }
}

.feature-story {
  position: relative;
  color: #f4f5f8;
  background:
    radial-gradient(circle at 18% 26%, rgb(65 137 225 / 10%), transparent 30rem),
    radial-gradient(circle at 82% 72%, rgb(64 105 165 / 7%), transparent 32rem),
    #0d0e12;
}

.feature-story-shell {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: clamp(72px, 9vw, 128px);
}

.feature-story-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
}

.feature-story-stage {
  position: relative;
  width: min(100%, 440px);
  height: min(72svh, 700px);
  min-height: 560px;
}

.feature-story-images {
  position: absolute;
  inset: 0;
}

.feature-story-image {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.feature-story-image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgb(0 0 0 / 42%));
}

.feature-story-steps {
  position: relative;
  border-left: 1px solid rgb(244 245 248 / 12%);
  padding-left: clamp(34px, 4.5vw, 62px);
}

.feature-story-step {
  position: relative;
  min-height: 82svh;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 0;
  opacity: 0.26;
  transform: translateY(18px);
  transition:
    opacity 360ms ease,
    transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.feature-story-step::before {
  content: "";
  position: absolute;
  left: calc(clamp(34px, 4.5vw, 62px) * -1 - 5px);
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #0d0e12;
  border-radius: 50%;
  background: rgb(244 245 248 / 22%);
  box-shadow: 0 0 0 1px rgb(244 245 248 / 12%);
  transform: translateY(-50%);
  transition: background-color 300ms ease, box-shadow 300ms ease;
}

.feature-story-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.feature-story-step.is-active::before {
  background: #6aaaf4;
  box-shadow: 0 0 0 6px rgb(106 170 244 / 13%);
}

.feature-story-step .landing-eyebrow {
  margin-bottom: 15px;
  color: #6aaaf4;
}

.feature-story-step h3 {
  margin: 0;
  color: var(--landing-ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.04;
  text-wrap: balance;
}

.feature-story-step h3 {
  color: #f4f5f8;
}

.feature-story-step > p:last-child {
  margin: 24px 0 0;
  color: rgb(232 236 244 / 64%);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.62;
}

.feature-story-mobile-visual {
  display: none;
  margin: 0;
}

.feature-story-step:last-child {
  min-height: 100svh;
}

.feature-story-step:first-child {
  min-height: 100svh;
}

.share-page.landing-download-panel {
  min-height: auto;
  padding:
    clamp(72px, 8vw, 104px)
    clamp(24px, 6vw, 88px);
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgb(171 199 255 / 10%), transparent 34rem),
    linear-gradient(142deg, #00346f 0%, #082b5c 48%, #001b3f 100%);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-scroll-cue,
  .feature-story-image,
  .feature-story-step {
    animation: none;
    transition: none;
  }
}

.landing-footer {
  min-height: 100px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgb(248 249 255 / 58%);
  background: #00162a;
  font-size: 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  width: 116px;
  height: auto;
  display: block;
}

.landing-footer nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 680;
}

.landing-footer nav a:hover {
  color: var(--gold);
}

.footer-social-link {
  width: 24px;
  height: 24px;
  border: 0;
  display: grid;
  place-items: center;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.landing-footer p {
  margin: 0;
  justify-self: end;
  text-align: right;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 14px;
}

.landing-footer p em {
  color: var(--gold);
  font-style: normal;
}

@media (max-width: 900px) {
  .landing-hero {
    min-height: 100svh;
  }

  .landing-hero-layout {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
    padding: 84px 0 68px;
    text-align: center;
  }

  .landing-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .landing-hero h1,
  .landing-lede {
    width: 100%;
    max-width: 680px;
  }

  .landing-download-actions {
    justify-content: center;
  }

  .hero-showcase {
    align-self: auto;
  }

  .hero-showcase-image {
    width: min(52vw, 300px);
    max-height: 480px;
  }

  .feature-story {
    padding: 72px 0 20px;
  }

  .feature-story-shell {
    width: min(100% - 40px, 620px);
    display: block;
  }

  .feature-story-visual {
    display: none;
  }

  .feature-story-steps {
    border-left: 0;
    padding-left: 0;
  }

  .feature-story-step,
  .feature-story-step:first-child,
  .feature-story-step:last-child {
    min-height: 0;
    max-width: none;
    padding: 68px 0;
    border-bottom: 1px solid rgb(244 245 248 / 11%);
    opacity: 1;
    transform: none;
  }

  .feature-story-step:first-child {
    padding-top: 0;
  }

  .feature-story-step:last-child {
    border-bottom: 0;
  }

  .feature-story-step::before {
    display: none;
  }

  .feature-story-mobile-visual {
    height: min(116vw, 560px);
    margin-bottom: 34px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .feature-story-mobile-visual img {
    width: min(72%, 310px);
    max-height: 94%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 22px 34px rgb(0 0 0 / 38%));
  }

  .landing-footer {
    grid-template-columns: 1fr auto;
  }

  .landing-footer p {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .landing-hero .site-header {
    justify-content: space-between;
  }

  .landing-hero .site-nav,
  .hero-showcase {
    display: none;
  }

  .landing-hero .header-actions {
    display: flex;
  }

  .landing-wordmark img {
    width: 124px;
    height: 38px;
  }

  .landing-hero-layout {
    min-height: 100svh;
    align-content: center;
    gap: 0;
    padding: 82px 0 58px;
  }
}

.share-shell {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 18%, rgb(171 199 255 / 10%), transparent 34rem),
    linear-gradient(142deg, #00346f 0%, #082b5c 48%, #001b3f 100%);
}

.share-page {
  min-height: 100svh;
  align-items: center;
  display: flex;
  padding:
    max(48px, env(safe-area-inset-top))
    clamp(24px, 6vw, 88px)
    max(48px, env(safe-area-inset-bottom));
}

.share-layout {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(64px, 10vw, 132px);
}

.share-identity {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.share-lockup {
  display: block;
}

.share-logo-lockup {
  display: block;
  width: clamp(242px, 24vw, 310px);
  height: auto;
}

.share-tagline {
  max-width: 320px;
  margin: 12px 0 0;
  color: #e9f1ff;
  font-family: "Newsreader", "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.35;
  text-wrap: balance;
}

.share-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.share-eyebrow {
  margin: 0 0 11px;
  color: #abc7ff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.share-content h1,
.share-content h2 {
  position: static;
  width: auto;
  height: auto;
  max-width: 650px;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
  color: #e9f1ff;
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(29px, 2.8vw, 38px);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.share-summary {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgb(233 241 255 / 68%);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
}

.share-summary span {
  display: block;
}

.share-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.store-download-cta {
  min-width: 212px;
  min-height: 62px;
  display: grid;
  grid-template-columns: 30px minmax(0, max-content);
  align-items: center;
  justify-content: start;
  gap: 12px;
  padding: 10px 17px;
  border: 1px solid #abc7ff;
  border-radius: 12px;
  color: #abc7ff;
  background: transparent;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.store-download-cta:hover {
  background: rgb(171 199 255 / 8%);
}

.store-download-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.store-download-cta-disabled {
  color: rgb(195 198 210 / 52%);
  border-color: rgb(195 198 210 / 28%);
  cursor: default;
}

.store-download-cta-disabled:hover {
  background: transparent;
}

.store-cta-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.store-cta-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.store-cta-kicker {
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
}

.store-cta-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
}

.podcast-identity {
  justify-self: center;
}

.podcast-artwork {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 780px) {
  .share-page.landing-download-panel {
    padding: 64px 22px;
  }

  .share-page {
    padding:
      max(38px, env(safe-area-inset-top))
      22px
      max(38px, env(safe-area-inset-bottom));
  }

  .share-layout {
    width: min(100%, 560px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .share-logo-lockup {
    width: min(66vw, 250px);
  }

  .share-tagline {
    margin-top: 10px;
    font-size: 17px;
  }

  .share-content {
    align-items: center;
    text-align: center;
  }

  .share-content h1,
  .share-content h2 {
    max-width: 520px;
    font-size: clamp(26px, 7vw, 32px);
  }

  .share-actions {
    width: 100%;
    max-width: 280px;
    margin-top: 26px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .share-summary {
    margin-top: 18px;
    font-size: 14px;
  }

  .store-download-cta {
    width: 226px;
    min-width: 226px;
    max-width: 100%;
    align-self: center;
    min-height: 62px;
    grid-template-columns: 32px minmax(0, max-content);
    column-gap: 12px;
    padding: 14px 18px;
    border-radius: 22px;
  }

  .store-cta-icon {
    width: 32px;
    height: 32px;
  }

  .podcast-artwork {
    width: min(36vw, 145px);
  }
}

.page-shell {
  min-height: 100vh;
  overflow: visible;
}

.page-header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: min(100% - 36px, 1100px);
  transform: none;
  margin: 0 auto;
  padding-top: max(18px, env(safe-area-inset-top));
}

.page-hero {
  width: min(100% - 36px, 900px);
  margin: 0 auto;
  padding: clamp(74px, 11vh, 118px) 0 clamp(34px, 7vh, 70px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero h1 {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
  color: var(--ink);
  font-family: "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

.support-hero h1 {
  max-width: 720px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.14;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgb(248 249 255 / 82%);
  font-family: "Newsreader", "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.38;
}

.support-grid {
  width: min(100% - 36px, 1100px);
  margin: 0 auto;
  padding: 0 0 clamp(54px, 8vh, 92px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-card {
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgb(255 208 136 / 24%);
  border-radius: 8px;
  background: rgb(1 29 53 / 54%);
  box-shadow: 0 18px 34px rgb(0 0 0 / 16%);
}

.support-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 9px;
  border: 1px solid rgb(255 208 136 / 42%);
  border-radius: 999px;
  color: var(--gold);
  background: rgb(255 208 136 / 8%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  line-height: 1.12;
}

.support-card p,
.step-list {
  margin: 0;
  color: rgb(248 249 255 / 78%);
  font-size: 15px;
  line-height: 1.62;
}

.support-card p + p {
  margin-top: 12px;
}

.policy-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 650;
  line-height: 1.12;
}

.privacy-questions {
  padding-top: 8px;
}

.privacy-questions .policy-updated {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.4;
}

.text-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.step-list {
  padding-left: 20px;
}

.step-list li + li {
  margin-top: 9px;
}

.policy-updated {
  color: rgb(248 249 255 / 62%);
  font-size: 13px;
}

@media (max-width: 640px) {
  .site-header {
    left: 50%;
    right: auto;
    width: calc(100% - 32px);
    transform: translateX(-50%);
  }

  .site-nav {
    gap: 12px;
    font-size: 12px;
  }

  .site-nav .x-link span {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .language-nav a {
    min-width: 27px;
  }

  .landing-hero .site-nav {
    display: none;
  }

  .landing-hero-layout {
    width: min(100% - 32px, 1180px);
    gap: 0;
    padding: 82px 0 58px;
  }

  .landing-hero h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .landing-lede {
    margin-top: 20px;
    font-size: 17px;
  }

  .landing-download-actions {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
    align-items: center;
  }

  .feature-story-step h3 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .feature-story-step > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .feature-story-mobile-visual {
    height: min(124vw, 500px);
    border-radius: 24px;
  }

  .landing-footer {
    padding: 34px 20px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .landing-footer p,
  .footer-brand {
    justify-self: center;
  }

  .page-header {
    width: min(100% - 32px, 1100px);
    left: auto;
    right: auto;
  }

  .page-hero {
    width: min(100% - 32px, 900px);
    padding-top: 58px;
  }

  .support-grid {
    width: min(100% - 32px, 1100px);
    grid-template-columns: 1fr;
  }
}
