:root {
  --blue: #306986;
  --blue-dark: #1e4a62;
  --blue-deep: #143445;
  --blue-soft: #4a8eab;
  --blue-mist: #d7e6ee;
  --yellow: #edc33a;
  --yellow-bright: #f6d56a;
  --yellow-deep: #c9a01f;
  --white: #ffffff;
  --cream: #f7f4ec;
  --cream-dark: #efe8d8;
  --ink: #12232e;
  --muted: #5a6f7a;
  --line: rgba(18, 35, 46, 0.12);
  --shadow: 0 18px 50px rgba(20, 52, 69, 0.16);
  --radius: 22px;
  --header-h: 76px;
  --max: 1180px;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --font-display: "Outfit", "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.no-js [data-i18n] {
  visibility: visible;
}

body {
  --shot-top: #0b0d12;
  --shot-mid: #1e4a62;
  --shot-end: #4a8eab;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body[data-edition="travel"] {
  --shot-mid: #243044;
  --shot-end: #5a6f86;
}

body[data-edition="camping"] {
  --shot-mid: #2a3548;
  --shot-end: #6a7d92;
}

body[data-edition="golf"] {
  --shot-mid: #16351c;
  --shot-end: #2f6b38;
}

body[data-edition="winter"] {
  --shot-mid: #1a3d55;
  --shot-end: #3d7a99;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
.btn {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 244, 236, 0.86);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 52, 69, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(48, 105, 134, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a.nav-legal {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-wrap {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.lang-btn:focus-visible,
.nav-toggle:focus-visible,
.store-link:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: grid;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}

.lang-wrap.open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.lang-menu button {
  background: none;
  border: 0;
  text-align: left;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.lang-menu button[aria-current="true"],
.lang-menu button:hover {
  background: var(--cream);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88svh, 760px);
  color: var(--white);
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 22s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 52, 69, 0.28) 0%, rgba(20, 52, 69, 0.55) 46%, rgba(20, 52, 69, 0.88) 100%),
    linear-gradient(90deg, rgba(20, 52, 69, 0.45), transparent 55%);
}

.hero-content {
  padding: 7.5rem 0 3.2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(237, 195, 58, 0.18);
  border: 1px solid rgba(237, 195, 58, 0.45);
  color: var(--yellow-bright);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.38) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: shine 5s ease-in-out 1.4s infinite;
  pointer-events: none;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  max-width: 20ch;
  margin-top: 1rem;
}

.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.2rem;
}

.hero-stores {
  margin: 0 0 0.4rem;
}

.hero-stores .store-link img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(237, 195, 58, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
  max-width: 760px;
}

.stats-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 420px;
}

.stats-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
}

.stats-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 840px;
}

.stats-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 980px;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
}

.stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.credit {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  margin: 1.1rem 0 0;
}

.credit a {
  color: inherit;
}

.credit.dark {
  color: var(--muted);
}

/* Sections */
section {
  padding: 5.2rem 0;
}

.section-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  max-width: 46rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* Edition cards */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin: 0 0 1.8rem;
  align-items: center;
}

.logo-disc {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--yellow);
}

.logo-disc img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.edition-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  color: var(--white);
  isolation: isolate;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.edition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(20, 52, 69, 0.24);
}

.edition-card img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}

.edition-card:hover img.cover {
  transform: scale(1.08);
}

.edition-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 52, 69, 0.18) 0%, rgba(20, 52, 69, 0.42) 38%, rgba(20, 52, 69, 0.94) 100%);
}

.edition-card .inner {
  position: absolute;
  inset: auto 0 0;
  padding: 1.15rem 1.15rem 0.7rem;
}

.edition-card .icon-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}

.edition-card .icon-row img.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
}

.edition-card h3 {
  font-size: 1.25rem;
  margin: 0;
}

.edition-card p {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.store-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.store-link {
  display: inline-flex;
  transition: transform 0.28s var(--ease);
}

.store-link:hover {
  transform: translateY(-3px) scale(1.05);
}

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

.store-link.apple img {
  height: 36px;
}

.edition-card .credit {
  position: relative;
  z-index: 1;
  padding: 0 1.15rem 0.7rem;
  margin-top: 0.2rem;
}

.edition-card.compact {
  min-height: 380px;
}

.edition-card.compact .inner {
  padding-bottom: 1rem;
}

.edition-card .btn {
  margin: 0.2rem 0 0.55rem;
}

.others-section {
  background: var(--cream-dark);
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.others-section h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.others-section .section-head {
  max-width: 40rem;
}

.others-section .edition-card {
  opacity: 0.96;
}

.focus-section {
  padding: 0;
  --wrap-pad: max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 32rem) minmax(0, 1fr);
  column-gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: stretch;
  min-height: min(78vh, 740px);
  padding-left: var(--wrap-pad);
}

.focus-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.35rem 0 4.4rem;
  max-width: 36rem;
}

.focus-copy .store-row {
  margin-top: 1.2rem;
}

.screenshot-stage {
  margin: 0;
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% 110%, rgba(237, 195, 58, 0.16), transparent 42%),
    linear-gradient(180deg, var(--shot-top) 0%, var(--shot-mid) 48%, var(--shot-end) 100%);
  border-radius: 36px 0 0 36px;
}

.screenshot-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
}

@media (min-width: 901px) {
  .focus-section {
    padding: 5.2rem 0 2.6rem;
  }
}

.visual-frame .credit {
  position: absolute;
  left: 1rem;
  bottom: 0.7rem;
  margin: 0;
  z-index: 1;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(20, 52, 69, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.step.is-shown:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(20, 52, 69, 0.12);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: transform 0.35s var(--ease);
}

.step.is-shown:hover .step-num {
  transform: scale(1.08);
}

/* Feature details */
.features-section {
  background: var(--white);
}

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

.feature-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem 1.15rem;
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.feature-detail.is-shown:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 52, 69, 0.1);
  border-color: rgba(48, 105, 134, 0.22);
}

.feature-detail .mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-mist);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: transform 0.35s var(--ease);
}

.feature-detail.is-shown:hover .mark {
  transform: scale(1.08) rotate(-8deg);
}

.feature-detail h3 {
  font-size: 1.18rem;
  margin: 0.12rem 0 0.4rem;
}

.feature-detail p {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

/* Pricing */
.pricing-section {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem 1.55rem;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20, 52, 69, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pricing-card.is-shown:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(20, 52, 69, 0.12);
}

.pricing-card .mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-mist);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: transform 0.35s var(--ease);
}

.pricing-card.is-shown:hover .mark {
  transform: scale(1.08) rotate(-8deg);
}

.pricing-suns {
  border-color: rgba(237, 195, 58, 0.55);
  background:
    linear-gradient(180deg, rgba(237, 195, 58, 0.14), transparent 42%),
    var(--white);
}

.pricing-suns .mark {
  background: var(--yellow);
}

.pricing-suns.is-shown .mark {
  animation: sun-glow 2.8s ease-in-out infinite;
}

.pricing-card h3 {
  font-size: 1.18rem;
  margin: 0 0 0.45rem;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 46rem;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.review.is-shown:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 52, 69, 0.1);
}

.stars {
  color: var(--yellow-deep);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.review footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* CTA */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(237, 195, 58, 0.22), transparent 40%),
    var(--blue-deep);
  color: var(--white);
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: radial-gradient(circle at 32% 40%, rgba(237, 195, 58, 0.3), transparent 42%);
  animation: cta-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.cta-stores {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.cta-stores .store-row {
  justify-content: center;
}

.download-all {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.download-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1rem 0.8rem 0.7rem;
  color: var(--white);
  text-decoration: none;
}

.download-card img.icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 0.55rem;
}

.download-card strong {
  display: block;
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: var(--yellow-bright);
}

.footer-meta {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Legal / about */
.page-hero {
  padding: 4.5rem 0 2rem;
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.about-hero {
  padding: 5rem 0 2.2rem;
  background: var(--white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(240px, 380px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.about-portrait {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}

.about-intro .lead {
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  max-width: 36rem;
}

.about-apps {
  padding-top: 1.2rem;
}

.visual-frame {
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  position: relative;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.cta.is-shown .cta-icon {
  animation: phone-float 4.2s ease-in-out infinite alternate;
}

/* Reveal */
.hero-in {
  opacity: 0;
  animation: rise 0.85s var(--ease) both;
}

.kicker.hero-in { animation-delay: 0.06s; }
h1.hero-in { animation-delay: 0.16s; }
.lead.hero-in { animation-delay: 0.28s; }
.hero-actions.hero-in { animation-delay: 0.4s; }
.hero-stores.hero-in { animation-delay: 0.5s; }
.stats.hero-in { animation-delay: 0.62s; }

.reveal {
  opacity: 0;
}

.reveal.is-in {
  animation: rise 0.75s var(--ease) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.reveal-shot.is-in {
  animation-name: rise-shot;
}

.reveal.is-shown {
  opacity: 1;
  animation: none;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes rise-shot {
  from { opacity: 0; transform: translateX(36px) rotate(1.6deg); }
  to { opacity: 1; transform: none; }
}

@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}

@keyframes phone-float {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

@keyframes sun-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237, 195, 58, 0.55); }
  50% { box-shadow: 0 0 0 12px rgba(237, 195, 58, 0); }
}

@keyframes shine {
  0%, 68% { transform: translateX(-130%); }
  86%, 100% { transform: translateX(130%); }
}

@keyframes cta-drift {
  from { transform: translate(-6%, -4%) scale(1); }
  to { transform: translate(10%, 8%) scale(1.18); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-in {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-media img,
  .kicker::after,
  .cta::before,
  .cta-icon,
  .pricing-suns .mark {
    animation: none;
  }
  .feature-detail.is-shown:hover,
  .pricing-card.is-shown:hover,
  .step.is-shown:hover,
  .review.is-shown:hover,
  .stat:hover,
  .store-link:hover,
  .edition-card:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .download-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(247, 244, 236, 0.97);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.2rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav a {
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav a.nav-legal {
    display: block;
  }
  .nav a:not(.nav-legal) + a.nav-legal {
    margin-top: 0.45rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .about-hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about-portrait {
    width: min(280px, 72vw);
  }
  .about-intro .lead {
    margin-inline: auto;
  }
  .steps,
  .reviews,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature-list,
  .pricing-grid { grid-template-columns: 1fr; }
  .edition-grid,
  .download-all {
    grid-template-columns: 1fr 1fr;
  }
  .focus-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-left: 0;
  }
  .focus-copy {
    padding: 3.2rem var(--wrap-pad) 1.5rem;
    max-width: none;
  }
  .screenshot-stage {
    border-radius: 0;
    min-height: 0;
    width: 100%;
    position: static;
  }
  .screenshot-stage img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .reveal-shot.is-in {
    animation-name: rise;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .brand-text span { display: none; }
  .edition-grid,
  .download-all,
  .stats {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 88svh;
  }
  .hero-content { padding-top: 6.2rem; }
  h1 { max-width: none; }
  section { padding: 3.4rem 0; }
  .focus-section { padding: 0; }
  .cta { padding: 2rem 1.1rem; }
}

@media (orientation: landscape) and (max-height: 540px) {
  .hero {
    min-height: auto;
  }
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(13.5rem, 0.85fr);
    column-gap: 1.2rem;
    align-items: start;
    padding: 5.2rem 0 1.4rem;
  }
  .hero-content > :not(.stats):not(.credit) {
    grid-column: 1;
  }
  .hero-content > .stats {
    grid-column: 2;
    grid-row: 1 / span 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    width: 100%;
    margin-top: 0;
    gap: 0.5rem;
    align-content: start;
  }
  .hero-content > .stats-2 {
    grid-template-columns: 1fr;
  }
  .hero-content > .credit {
    grid-column: 1 / -1;
    margin-top: 0.8rem;
  }
  h1 { font-size: clamp(1.8rem, 5.5vh, 2.6rem); }
  .hero-actions { margin: 0.9rem 0 0.7rem; }
  .stat {
    padding: 0.55rem 0.65rem;
  }
  .stat b {
    font-size: 1.15rem;
  }
  .stat span {
    font-size: 0.72rem;
  }
  .focus-section {
    padding: 1.25rem 0 0;
  }
  .focus-layout {
    grid-template-columns: minmax(14rem, 1fr) minmax(0, 1.2fr);
    min-height: calc(100svh - var(--header-h) - 1.25rem);
    padding-left: 1rem;
  }
  .focus-copy {
    justify-content: flex-start;
    padding: 0 0.8rem 1rem 0;
  }
  .screenshot-stage {
    min-height: calc(100svh - var(--header-h) - 1.25rem);
    border-radius: 24px 0 0 24px;
    position: relative;
  }
  .screenshot-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
}

@media (min-width: 1200px) {
  .edition-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .others-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
