@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/baloo-2-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/baloo-2-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #101828;
  --ink-soft: #243044;
  --body: #475467;
  --muted: #667085;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-warm: #fff8f2;
  --accent: #ef5b18;
  --accent-dark: #c8440c;
  --road: #2f7d45;
  --air: #1873b8;
  --ocean: #126f9a;
  --shadow-sm: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 20px 60px rgba(16, 24, 40, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max: 1180px;
  --font-main: "Baloo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg,
audio {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

strong {
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(239, 91, 24, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 231, 236, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

.btn,
.store-link,
.audio-button {
  min-height: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 91, 24, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.store-link img {
  width: auto;
  height: 46px;
}

.proof-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 15px;
}

.star {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background: var(--bg-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.66) 38%, rgba(255, 255, 255, 0.18) 66%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 66%, #fff 100%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 72px 0 96px;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(46px, 8vw, 92px);
  max-width: 720px;
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-subtitle {
  max-width: 560px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-store-row {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-warm {
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.section-head p {
  margin-top: 14px;
  font-size: 19px;
  color: var(--body);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mode-card,
.review-card,
.step-card,
.feature-card,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.mode-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 91, 24, 0.42);
  text-decoration: none;
}

.mode-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.mode-card h3 {
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 1.15;
}

.mode-card p {
  color: var(--body);
}

.mode-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 800;
}

.journey-section {
  overflow: hidden;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.journey-layout.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.journey-layout.reverse .journey-copy {
  order: 2;
}

.journey-copy h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.journey-copy > p {
  margin-top: 18px;
  font-size: 19px;
}

.journey-media {
  position: relative;
  min-width: 0;
}

.journey-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.route-line {
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.95), rgba(239,91,24,0.95));
}

.quote {
  margin: 26px 0 0;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.quote p {
  font-weight: 800;
  font-size: 18px;
}

.quote cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.note {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 115, 184, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(24, 115, 184, 0.06);
  color: var(--ink-soft);
  font-size: 15px;
}

.steps-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card,
.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.step-card h3,
.feature-card h3 {
  font-family: var(--font-main);
  font-size: 22px;
  line-height: 1.2;
}

.step-card p,
.feature-card p {
  margin-top: 10px;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.screenshot-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.screenshot-card img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.screenshot-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
}

.audio-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.audio-art {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.audio-art img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.audio-content h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.audio-content p {
  margin-top: 12px;
}

.audio-content audio {
  width: 100%;
  margin-top: 22px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.review-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border-radius: var(--radius-md);
}

.review-card.featured {
  grid-row: span 2;
}

.review-card p {
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 19px;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: var(--radius-sm);
}

.faq-list summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 18px 18px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #fff;
  background: var(--ink);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.92), rgba(16, 24, 40, 0.72)),
    url("/assets/marketing/road-trip.webp") center / cover no-repeat;
  opacity: 1;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  justify-items: start;
}

.final-cta h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
}

.final-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.final-cta .proof-line {
  color: #fff;
}

.site-footer {
  padding: 42px 0;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 32px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-self: start;
  align-content: start;
  justify-items: start;
}

.footer-brand .brand {
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.footer-links h3 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
}

.footer-links ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.page-hero {
  padding: 92px 0 56px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.page-hero .container {
  display: grid;
  gap: 22px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 78px);
}

.page-hero p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 20px;
}

.page-hero + .section {
  padding-top: 56px;
}

.content-page {
  width: min(100% - 32px, 840px);
  margin: 0 auto;
  padding: 54px 0 84px;
}

.content-page h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.content-page h2 {
  margin-top: 34px;
  font-size: clamp(28px, 4vw, 40px);
}

.content-page h3 {
  margin-top: 28px;
  font-family: var(--font-main);
  font-size: 22px;
}

.content-page p,
.content-page li {
  margin-top: 14px;
}

.content-page a {
  color: var(--accent-dark);
  font-weight: 800;
}

.content-page ul,
.content-page ol {
  padding-left: 1.25rem;
}

.content-page blockquote {
  margin-right: 0;
  margin-left: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-meta time {
  color: inherit;
}

.article-image {
  margin: 30px 0 10px;
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.article-toc {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}

.article-toc strong {
  display: block;
}

.article-toc a {
  display: inline-flex;
  width: fit-content;
}

.article-visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 30px 0 6px;
}

.article-visuals figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-visuals img {
  width: 100%;
  aspect-ratio: 598 / 1300;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.article-visuals figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.article-sources {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.article-sources li {
  font-size: 16px;
}

.article-cta {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
}

.article-cta h2,
.article-cta strong {
  color: #fff;
}

.article-cta .btn {
  width: fit-content;
  color: #fff;
}

.content-page .small-note {
  color: var(--muted);
  font-size: 14px;
}

.error-page {
  min-height: 62svh;
  display: grid;
  place-items: center;
  padding: 72px 0;
  text-align: center;
}

.error-content {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 680px;
}

.error-code {
  color: var(--accent);
  font-family: var(--font-main);
  font-size: clamp(70px, 18vw, 148px);
  font-weight: 800;
  line-height: 0.9;
}

.error-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.comparison > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.blog-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: stretch;
}

.blog-card-media {
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.blog-card-featured .blog-card-content {
  padding: 28px;
}

.blog-card:hover {
  border-color: rgba(239, 91, 24, 0.42);
  text-decoration: none;
}

.blog-card h2 {
  font-size: 26px;
}

.blog-card-featured h2 {
  font-size: 30px;
}

.blog-card p {
  margin-top: 10px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 8px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mode-grid,
  .steps-grid,
  .feature-grid,
  .screenshots,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-layout,
  .journey-layout.reverse {
    grid-template-columns: 1fr;
  }

  .journey-layout.reverse .journey-copy {
    order: initial;
  }

  .audio-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    top: 66px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.68) 38%, rgba(255, 255, 255, 0.84) 68%, #fff 100%);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: auto;
    margin-top: 0;
  }

  .hero-media img {
    object-position: 28% top;
  }

  .hero-content {
    min-height: min(720px, calc(88svh - 66px));
    padding: 42px 0 54px;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    max-width: none;
    text-align: center;
  }

  .hero h1 {
    max-width: 420px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-subtitle {
    max-width: 420px;
    font-size: 18px;
  }

  .hero-store-row {
    justify-items: center;
  }

  .store-badges {
    justify-content: center;
  }

  .store-link img {
    height: 42px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .mode-grid,
  .steps-grid,
  .feature-grid,
  .screenshots,
  .reviews-grid,
  .footer-links,
  .comparison {
    grid-template-columns: 1fr;
  }

  .mode-card {
    grid-template-columns: 86px 1fr;
    align-items: center;
    gap: 14px;
  }

  .mode-card img {
    aspect-ratio: 1;
  }

  .mode-card h3 {
    font-size: 21px;
  }

  .journey-copy h2,
  .section-head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .journey-copy > p {
    font-size: 17px;
  }

  .journey-media img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
  }

  .journey-actions .btn {
    width: 100%;
  }

  .chip-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .chip-list li {
    text-align: center;
  }

  .audio-panel {
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .review-card.featured {
    grid-row: auto;
  }

  .final-cta .container {
    justify-items: stretch;
  }

  .final-cta .store-badges {
    justify-content: flex-start;
  }

  .article-cta .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .store-badges {
    display: grid;
    justify-items: center;
  }

  .store-link img {
    height: 44px;
  }

  .chip-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
