:root {
  --ivory: #f5efe3;
  --paper: #fbf7ef;
  --ink: #20231f;
  --teal: #173f3b;
  --teal-soft: #225b54;
  --terracotta: #b85f45;
  --mustard: #dfad2f;
  --rose: #dfa2a9;
  --sage: #a7b8a4;
  --sand: #ded2c1;
  --line: rgba(32, 35, 31, .52);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { background: var(--teal); }

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  background: var(--teal);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
button:focus-visible,
a:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

.app-shell {
  position: relative;
  width: min(100%, 520px);
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: 0 0 70px rgba(0, 0, 0, .22);
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100%, 520px);
  height: calc(74px + env(safe-area-inset-top));
  padding: calc(15px + env(safe-area-inset-top)) 22px 13px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(32, 35, 31, .13);
  background: rgba(245, 239, 227, .96);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .78;
  text-align: left;
  cursor: pointer;
}

.install-button {
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

#app {
  min-height: 100dvh;
  padding: calc(74px + env(safe-area-inset-top)) 0 calc(94px + env(safe-area-inset-bottom));
  outline: none;
}

.page { min-height: calc(100dvh - 160px); }

.voice-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #c8b9a2;
  color: var(--paper);
}

.voice-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(.88) contrast(.98);
}

.voice-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 63, 59, .05) 16%, rgba(20, 25, 22, .04) 36%, rgba(20, 25, 22, .9) 100%);
}

.voice-hero-copy {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 34px;
  left: 27px;
}

.voice-hero-copy .eyebrow { margin-bottom: 15px; }

.voice-hero-copy h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(45px, 12.7vw, 66px);
  line-height: .91;
  text-wrap: balance;
}

.voice-hero-copy h1 em { color: var(--mustard); }

.voice-hero-copy > p:not(.eyebrow) {
  margin-bottom: 21px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.28;
}

.primary-button.light {
  background: var(--paper);
  color: var(--ink);
}

.voice-check-section {
  padding: 48px 22px 56px;
  scroll-margin-top: 82px;
  background: var(--ivory);
}

.check-intro { padding: 0 5px; }
.check-intro .eyebrow { margin-bottom: 14px; }

.check-intro h2,
.home-sections > h2 {
  margin-bottom: 13px;
  font-size: clamp(39px, 10vw, 52px);
  line-height: .98;
}

.check-intro > p:not(.eyebrow) {
  max-width: 410px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}

.voice-check-card {
  padding: 23px 20px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 23px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--teal-soft);
}

.voice-check-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.voice-check-card legend,
.own-words-label {
  display: block;
  margin-bottom: 13px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.voice-words {
  display: flex;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 8px;
}

.voice-word {
  min-height: 41px;
  padding: 9px 13px;
  border: 1px solid rgba(32, 35, 31, .45);
  border-radius: 99px;
  background: transparent;
  font-family: var(--serif);
  font-size: 15px;
  cursor: pointer;
}

.voice-word[aria-pressed="true"] {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper);
}

.voice-word[data-voice-word="non lo so"] { border-style: dashed; }

.voice-check-card textarea {
  display: block;
  width: 100%;
  min-height: 92px;
  padding: 13px 14px;
  resize: vertical;
  border: 1px solid rgba(32, 35, 31, .45);
  border-radius: 13px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.4;
}

.voice-check-card textarea::placeholder { color: rgba(32, 35, 31, .48); }

.selection-status {
  min-height: 18px;
  margin: 9px 0 16px;
  color: rgba(32, 35, 31, .69);
  font-size: 11px;
  line-height: 1.4;
}

.check-submit { width: 100%; }

.privacy-note {
  margin: 13px 0 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: .03em;
  line-height: 1.4;
}

.privacy-note span { color: var(--teal-soft); font-size: 16px; vertical-align: -1px; }

.voice-reflection {
  margin-top: 27px;
  padding: 25px 22px;
  border-radius: 23px;
  background: var(--sand);
}

.voice-reflection.open {
  background: var(--teal-soft);
  color: var(--paper);
}

.voice-reflection.unknown { background: var(--rose); }
.voice-reflection.mixed { background: var(--mustard); }
.voice-reflection .content-kicker { margin-bottom: 11px; }
.voice-reflection.open .content-kicker span { color: var(--mustard); }

.voice-reflection h3 {
  margin-bottom: 15px;
  font-size: 37px;
  line-height: 1;
}

.chosen-words {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.own-words {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.3;
}

.reflection-copy {
  margin-bottom: 21px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.42;
}

.outline-button,
.minute-button {
  display: flex;
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid currentColor;
  border-radius: 99px;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.micro-practice {
  margin-top: 20px;
  padding-top: 19px;
  border-top: 1px solid currentColor;
}

.micro-practice > p:first-child {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}

.minute-button {
  border: 0;
  background: var(--ink);
  color: var(--paper);
}

.voice-reflection.open .minute-button { background: var(--paper); color: var(--ink); }
.minute-button:disabled { cursor: default; opacity: .68; }
.minute-status { min-height: 18px; margin: 11px 4px 0; font-size: 11px; line-height: 1.45; }

.voice-diary {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.voice-diary summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 19px;
  cursor: pointer;
  list-style: none;
}

.voice-diary summary::-webkit-details-marker { display: none; }

.voice-diary summary strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 10px;
}

.diary-intro {
  margin: -2px 0 17px;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.45;
}

.voice-diary ol { margin: 0; padding: 0 0 9px; list-style: none; }
.diary-entry { display: grid; gap: 5px; overflow-wrap: anywhere; }
.diary-note { font-style: italic; }
.diary-more { margin: 0 0 18px; padding: 12px 0; border: 0; background: transparent; font-size: 13px; text-decoration: underline; cursor: pointer; }
.archive-message { padding: 45px 27px; }
.archive-message h1 { font-size: 42px; }
.archive-message > p:not(.eyebrow) { font-family: var(--serif); font-size: 18px; line-height: 1.5; }

.voice-diary li {
  display: grid;
  padding: 12px 0;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(32, 35, 31, .18);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.35;
}

.voice-diary time {
  padding-top: 2px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.diary-actions {
  display: flex;
  padding: 12px 0 17px;
  gap: 9px;
  border-top: 1px solid rgba(32, 35, 31, .18);
}

.diary-actions button {
  display: flex;
  min-height: 40px;
  padding: 8px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.diary-actions button:first-child { flex: 1; }
.diary-actions button:last-child { border-color: var(--terracotta); color: #8d3f2c; }

.home-sections {
  padding: 32px 22px 34px;
  background: var(--paper);
}

.home-sections > .eyebrow { margin: 0 5px 13px; }
.home-sections > h2 { margin-left: 5px; }
.home-section-grid { display: grid; gap: 10px; }

.home-section-card {
  display: grid;
  width: 100%;
  min-height: 105px;
  padding: 17px 18px;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 19px;
  text-align: left;
  cursor: pointer;
}

.home-section-card > span:last-child { font-size: 23px; }
.section-card-end { display: flex; align-items: center; gap: 8px; }
.new-content-badge,
.inline-new-badge {
  display: inline-flex;
  padding: 5px 7px;
  border-radius: 99px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.inline-new-badge { margin-left: 5px; background: var(--ink); color: var(--paper); vertical-align: 1px; }
.section-mark { font-family: var(--serif); font-size: 37px; }
.home-section-card small { display: block; margin-bottom: 4px; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.home-section-card strong { font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1; }
.teal-card { background: var(--teal-soft); color: var(--paper); }
.terracotta-card { background: var(--terracotta); color: var(--paper); }
.mustard-card { background: var(--mustard); }

.hero {
  min-height: 420px;
  padding: 50px 28px 44px;
  background: var(--ivory);
}

.eyebrow {
  margin: 0 0 23px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 {
  max-width: 440px;
  margin-bottom: 26px;
  font-size: clamp(50px, 14.5vw, 76px);
  line-height: .92;
}

h1 em { color: var(--teal-soft); font-style: normal; }

.lead {
  max-width: 390px;
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.34;
}

.primary-button, .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.primary-button {
  padding: 12px 18px;
  border: 0;
  border-radius: 99px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button.secondary { border: 1px solid currentColor; background: transparent; color: var(--ink); }
.primary-button.danger { background: var(--terracotta); }

.brand-strip {
  padding: 15px 28px;
  background: var(--teal-soft);
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.6;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.panel { padding: 34px 28px 40px; }
.panel.terracotta { background: var(--terracotta); color: var(--paper); }
.panel.mustard { background: var(--mustard); }
.panel.teal { background: var(--teal-soft); color: var(--paper); }
.panel.paper { background: var(--paper); }

.panel h1, .panel h2 {
  max-width: 440px;
  margin-bottom: 18px;
  font-size: clamp(43px, 11.8vw, 63px);
  line-height: .98;
}

.panel-copy {
  max-width: 410px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

.cards { background: var(--paper); }

.card {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 17px;
  padding: 25px 22px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.card:last-child { border-bottom: 0; }

.card-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  font-family: var(--serif);
  font-size: 27px;
}

.card:nth-child(even) .card-mark { background: var(--mustard); }

.card small {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.card h2, .route-card h2 {
  margin-bottom: 7px;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1;
}

.card p, .route-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.35;
}

.arrow {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
}

.editorial-actions {
  display: grid;
  gap: 0;
  background: var(--paper);
}

.editorial-link {
  display: flex;
  min-height: 94px;
  padding: 20px 25px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.editorial-link:last-child { border-bottom: 0; }
.editorial-link strong { font-family: var(--serif); font-size: 29px; font-weight: 400; }
.editorial-link small { display: block; margin-top: 4px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }

.content-kicker {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.content-kicker span { color: var(--terracotta); }

.podcast-section {
  padding: 33px 24px 38px;
  background: var(--paper);
}

.podcast-section h2,
.latest-manifesto h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 11.5vw, 58px);
  line-height: .98;
}

.podcast-section > p:not(.content-kicker) {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}

.spotify-player {
  display: block;
  width: 100%;
  height: 326px;
  margin: 0 0 13px;
  border: 1px solid rgba(32, 35, 31, .22);
  border-radius: 18px;
  background: #121212;
  box-shadow: 0 8px 24px rgba(32, 35, 31, .12);
}

.podcast-section .text-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.latest-manifesto {
  position: relative;
  padding: 38px 28px 46px;
  overflow: hidden;
  background: var(--mustard);
}

.manifesto-number {
  position: absolute;
  top: 17px;
  right: 24px;
  margin: 0;
  color: rgba(32, 35, 31, .18);
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
}

.manifesto-excerpt {
  max-width: 390px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.manifesto-library {
  padding: 39px 24px 45px;
  background: var(--ivory);
}

.library-heading { padding: 0 4px 20px; }
.library-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 10vw, 51px);
  line-height: .98;
}

.manifesto-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.manifesto-list li { border-bottom: 1px solid var(--line); }
.manifesto-list button {
  display: grid;
  width: 100%;
  min-height: 98px;
  padding: 18px 4px;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.archive-number { align-self: start; padding-top: 4px; font-family: var(--serif); font-size: 12px; }
.archive-copy small { display: block; margin-bottom: 6px; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.archive-copy strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.05; }

.newsletter-strip {
  display: flex;
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--terracotta);
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.newsletter-strip a { color: inherit; white-space: nowrap; }

.manifesto-article { background: var(--paper); }

.manifesto-header {
  padding: 25px 28px 42px;
  border-bottom: 12px solid var(--mustard);
  background: var(--ivory);
}

.back-button {
  min-height: 42px;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.manifesto-header h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 14vw, 70px);
  line-height: .94;
}

.manifesto-deck {
  max-width: 400px;
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.42;
}

.article-body {
  padding: 38px 28px 52px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.68;
}

.article-body > p { margin: 0 0 22px; }

.article-body h2 {
  margin: 0 0 23px;
  color: var(--teal-soft);
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

.article-body hr {
  height: 2px;
  margin: 38px 0 34px;
  border: 0;
  background: var(--ink);
}

.voice-list { line-height: 1.52; }

.article-question {
  display: inline-block;
  padding: 9px 13px;
  background: var(--teal-soft);
  color: var(--paper);
  font-size: 22px;
  line-height: 1.35;
}

.article-body blockquote {
  margin: 38px 0;
  padding: 24px 22px;
  border-left: 8px solid var(--terracotta);
  background: #ded2c1;
  font-size: 26px;
  line-height: 1.27;
}

.manifesto-statement {
  margin: 42px 0 35px;
  padding: 22px;
  border: 3px solid var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.manifesto-statement p { margin: 0 0 20px; }
.manifesto-statement p:last-child { margin-bottom: 0; }
.teal-text { color: var(--teal-soft); }

.article-footer {
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}

.article-footer p {
  margin: 24px 0 2px;
  font-size: 22px;
}

.article-footer small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.article-footer .primary-button {
  margin-top: 25px;
  font-family: var(--sans);
}

.article-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.article-actions .primary-button { margin-top: 25px; }
.article-footer .share-status {
  min-height: 18px;
  margin: 11px 0 0;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .04em;
}

.audioteca-body {
  min-height: 330px;
  padding: 42px 28px 52px;
  background: var(--paper);
}

.audioteca-body > .audioteca-intro {
  max-width: 390px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.audioteca-portals { display: grid; gap: 10px; }
.audio-portal {
  display: grid;
  min-height: 122px;
  padding: 17px;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 13px;
  border-radius: 19px;
  color: inherit;
  text-decoration: none;
}
.free-portal { background: var(--mustard); }
.full-portal { background: var(--teal-soft); color: var(--paper); }
.portal-mark { font-family: var(--serif); font-size: 34px; }
.audio-portal small { display: block; margin-bottom: 5px; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.audio-portal strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.03; }
.audio-portal em { display: block; margin-top: 8px; font-family: var(--serif); font-size: 13px; font-style: normal; line-height: 1.25; }

.routes { background: var(--paper); }

.route-card {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 11px;
  padding: 24px 22px 25px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.route-card:last-child { border-bottom: 0; }
.route-number { padding-top: 5px; font-family: var(--serif); font-size: 11px; }
.route-card small { display: block; margin-bottom: 8px; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.bottom-nav {
  position: fixed;
  z-index: 30;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(100%, 520px);
  height: calc(82px + env(safe-area-inset-bottom));
  padding: 8px 9px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  background: var(--ink);
  transform: translateX(-50%);
}

.bottom-nav button {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 6px 3px;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(245, 239, 227, .66);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.bottom-nav button.active {
  background: var(--mustard);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-icon { font-size: 19px; line-height: 1; }

.nav-new-badge {
  position: absolute;
  top: 3px;
  right: 5px;
  width: 7px;
  height: 7px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--terracotta);
  color: transparent;
  font-size: 0;
}

.app-dialog {
  width: min(calc(100% - 34px), 440px);
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 25px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .38);
}

.app-dialog::backdrop { background: rgba(14, 35, 32, .76); backdrop-filter: blur(4px); }
.app-dialog form { padding: 30px 27px 27px; }
.app-dialog .eyebrow { margin-bottom: 14px; color: var(--terracotta); }
.app-dialog h2 { margin-bottom: 22px; font-size: 39px; line-height: .98; }
.app-dialog form > p:not(.eyebrow) { font-family: var(--serif); font-size: 17px; line-height: 1.45; }
.install-steps { display: grid; margin: 0 0 26px; padding: 0; gap: 12px; list-style: none; }
.install-steps li { display: grid; grid-template-columns: 35px 1fr; align-items: center; gap: 12px; font-family: var(--serif); font-size: 16px; line-height: 1.35; }
.install-steps li > strong { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--mustard); font-family: var(--sans); font-size: 10px; }
.dialog-actions { display: flex; margin-top: 23px; flex-wrap: wrap; gap: 9px; }
.dialog-actions .primary-button { flex: 1; }

@media (min-width: 680px) {
  body { padding: 22px 0; }
  .app-shell { min-height: calc(100dvh - 44px); border-radius: 28px; }
  .topbar { top: 22px; border-radius: 28px 28px 0 0; }
  .bottom-nav { bottom: 22px; border-radius: 0 0 28px 28px; }
}

@media (max-width: 370px) {
  .newsletter-strip { align-items: flex-start; flex-direction: column; gap: 8px; }
  .article-body { padding-inline: 22px; }
  .voice-hero { min-height: 550px; }
  .voice-hero-copy h1 { font-size: 43px; }
  .voice-check-section,
  .home-sections { padding-inline: 18px; }
  .spotify-player { height: 300px; }
}

@media (prefers-reduced-motion: no-preference) {
  .page { animation: page-in .24s ease both; }
  @keyframes page-in { from { opacity: 0; transform: translateY(5px); } }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; }
}
