/* Entry styles: shared primitives for the App Store companion pages. */
:root {
  color-scheme: light;
  --paper: #f4f2ec;
  --paper-glow: radial-gradient(circle at top left, rgba(22, 74, 86, 0.08), transparent 34%);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: rgba(248, 249, 247, 0.72);
  --ink: #13201d;
  --muted: #5f6b64;
  --line: rgba(19, 32, 29, 0.1);
  --accent: #1c6d67;
  --accent-strong: #114440;
  --accent-soft: rgba(28, 109, 103, 0.12);
  --shadow: 0 28px 80px rgba(15, 27, 24, 0.12);
  --hero-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  --body-font: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --heading-font: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper-glow), linear-gradient(180deg, var(--paper) 0%, #ebe9e0 100%);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

/* Theme variants deliberately diverge so the pages do not read like one recycled template. */
body.theme-field {
  --paper: #eff3f6;
  --paper-glow:
    radial-gradient(circle at top right, rgba(35, 88, 138, 0.18), transparent 28%),
    radial-gradient(circle at 12% 8%, rgba(215, 164, 56, 0.16), transparent 24%);
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(240, 245, 249, 0.82);
  --ink: #132132;
  --muted: #516274;
  --line: rgba(19, 33, 50, 0.1);
  --accent: #225f93;
  --accent-strong: #153d5f;
  --accent-soft: rgba(34, 95, 147, 0.12);
  --body-font: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --heading-font: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

body.theme-progress {
  --paper: #f5f0eb;
  --paper-glow:
    radial-gradient(circle at 16% 10%, rgba(126, 97, 245, 0.15), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(225, 157, 78, 0.14), transparent 22%);
  --surface: rgba(255, 251, 249, 0.76);
  --surface-strong: rgba(255, 253, 251, 0.94);
  --surface-soft: rgba(248, 242, 240, 0.84);
  --ink: #231a1a;
  --muted: #726666;
  --line: rgba(35, 26, 26, 0.1);
  --accent: #7e61f5;
  --accent-strong: #4a34b4;
  --accent-soft: rgba(126, 97, 245, 0.14);
  --body-font: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --hero-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

body.theme-video {
  --paper: #0e1013;
  --paper-glow:
    radial-gradient(circle at top right, rgba(219, 95, 56, 0.18), transparent 22%),
    radial-gradient(circle at 12% 20%, rgba(61, 132, 148, 0.18), transparent 28%);
  --surface: rgba(16, 18, 23, 0.78);
  --surface-strong: rgba(16, 18, 23, 0.92);
  --surface-soft: rgba(30, 33, 39, 0.84);
  --ink: #f3f1ee;
  --muted: #b0aba3;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #d7673d;
  --accent-strong: #8b351d;
  --accent-soft: rgba(215, 103, 61, 0.12);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  --body-font: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --heading-font: "Helvetica Neue", "Avenir Next", sans-serif;
}

body.theme-watermark {
  --paper: #f6f7f4;
  --paper-glow:
    radial-gradient(circle at top left, rgba(18, 124, 130, 0.14), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(214, 160, 89, 0.14), transparent 20%);
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(243, 248, 248, 0.84);
  --ink: #152327;
  --muted: #5d6d71;
  --line: rgba(21, 35, 39, 0.09);
  --accent: #12757d;
  --accent-strong: #0b464b;
  --accent-soft: rgba(18, 117, 125, 0.12);
  --body-font: "Gill Sans", "Helvetica Neue", "Segoe UI", sans-serif;
  --heading-font: "Helvetica Neue", "Avenir Next", sans-serif;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(26px, 4vw, 44px);
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: color-mix(in srgb, var(--paper) 78%, white 22%);
  border-bottom: 1px solid var(--line);
}

.landing-header .shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.header-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

.header-links .store-link {
  color: #fff;
  background: var(--accent);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 32%, transparent);
}

.hero {
  padding: 52px 0 26px;
}

.hero-panel {
  display: grid;
  grid-template-columns: var(--hero-columns);
  gap: 22px;
  align-items: start;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-side,
.feature-card,
.gallery-card,
.detail-card,
.faq-card,
.legal-card {
  opacity: 0;
  animation: rise-in 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-side {
  animation-delay: 0.12s;
}

.feature-card:nth-child(2) { animation-delay: 0.06s; }
.feature-card:nth-child(3) { animation-delay: 0.12s; }
.feature-card:nth-child(4) { animation-delay: 0.18s; }
.gallery-card:nth-child(2) { animation-delay: 0.08s; }
.gallery-card:nth-child(3) { animation-delay: 0.12s; }
.gallery-card:nth-child(4) { animation-delay: 0.16s; }
.gallery-card:nth-child(5) { animation-delay: 0.2s; }
.gallery-card:nth-child(6) { animation-delay: 0.24s; }

.hero-copy {
  padding: 38px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.lede {
  margin: 20px 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 18px;
}

/* Product proof primitives: these blocks connect public identity, workflow, and outcomes without relying on scripts. */
.identity-line {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: color-mix(in srgb, var(--accent-soft) 74%, transparent);
  color: var(--muted);
  font-size: 13px;
}

.identity-line strong {
  color: var(--ink);
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.price-line span::before {
  content: "·";
  margin-right: 14px;
  color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 34px color-mix(in srgb, var(--accent) 26%, transparent);
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

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

.chip-row li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
}

.hero-side {
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 18px;
}

/* Core media presentation: themes alter the container treatment so each page feels purpose-built. */
.hero-shot {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 243, 239, 0.72));
  padding: 18px;
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 54%);
  pointer-events: none;
}

.hero-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 600 / 1300;
  object-fit: cover;
  border-radius: 18px;
  transform: scale(1.015);
  animation: float-soft 11s ease-in-out infinite;
}

/* Watermark Remover uses full App Store frames as product proof; preserve the complete screenshot. */
body.theme-watermark .hero-shot img {
  object-fit: contain;
  transform: none;
}

.hero-note {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--accent-soft), rgba(255, 255, 255, 0.92));
  border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head p {
  margin: 10px 0 0;
  max-width: 54rem;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid,
.detail-grid,
.outcome-grid,
.fit-grid,
.related-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.feature-card,
.gallery-card,
.detail-card,
.faq-card,
.legal-card,
.outcome-card,
.workflow-card,
.fit-card,
.related-card,
.support-card {
  padding: 24px;
}

.outcome-card,
.workflow-card,
.fit-card,
.related-card,
.support-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 92%, transparent), color-mix(in srgb, var(--surface-soft) 92%, transparent));
}

.outcome-card p,
.workflow-card p,
.fit-card p,
.related-card p,
.support-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-card {
  min-height: 230px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
}

.fit-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.fit-card li + li {
  margin-top: 8px;
}

.fit-card.positive {
  border-top: 3px solid var(--accent);
}

.fit-card.neutral {
  border-top: 3px solid color-mix(in srgb, var(--muted) 48%, transparent);
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  padding: 34px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent-soft) 64%, var(--surface-strong)), var(--surface-strong));
}

.privacy-copy p {
  margin: 0;
  color: var(--muted);
}

.privacy-copy p + p {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 72%, var(--surface-strong)), var(--surface-strong));
}

.bottom-cta h2 {
  max-width: 18ch;
}

.bottom-cta p:not(.eyebrow) {
  margin: 12px 0 0;
  max-width: 42rem;
  color: var(--muted);
}

.bottom-cta .button {
  flex: 0 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a,
.related-card a,
.support-card a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.article-hero {
  padding: 46px 0 18px;
}

.article-hero .card {
  padding: 38px;
}

.article-hero h1 {
  max-width: 15ch;
}

.article-copy {
  max-width: 780px;
}

.article-copy > p,
.article-copy > ul,
.article-copy > ol {
  color: var(--muted);
}

.article-copy li + li {
  margin-top: 8px;
}

.notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.report-preview {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.report-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.report-meta div,
.report-point {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.report-meta dt,
.report-point .label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-meta dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.feature-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 88%, transparent), color-mix(in srgb, var(--surface-soft) 94%, transparent));
}

.feature-card p,
.detail-card p,
.legal-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.gallery-card {
  display: grid;
  gap: 12px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 600 / 1300;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-card:hover img {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.12);
}

.gallery-card strong {
  font-size: 15px;
}

.gallery-card span,
.detail-card ul,
.faq-card p {
  color: var(--muted);
}

.detail-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.detail-card li + li {
  margin-top: 8px;
}

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

.faq-card summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-card p {
  margin: 12px 0 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-list a {
  text-decoration: none;
  color: var(--accent-strong);
  font-weight: 700;
}

.footer {
  padding: 32px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.footer .shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

body.theme-field .hero-copy {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(232, 240, 248, 0.72)),
    linear-gradient(135deg, rgba(34, 95, 147, 0.08), transparent 46%);
}

body.theme-field .hero-shot {
  background: linear-gradient(180deg, #132a45, #1a2434);
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-field .feature-card {
  border-left: 3px solid var(--accent);
}

body.theme-field .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-field .gallery-card:nth-child(2) {
  transform: translateY(22px);
}

body.theme-progress .hero-copy {
  order: 2;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(252, 247, 244, 0.82)),
    linear-gradient(145deg, rgba(126, 97, 245, 0.08), transparent 50%);
}

body.theme-progress .hero-side {
  order: 1;
  transform: translateY(22px);
}

body.theme-progress .hero-note {
  background: linear-gradient(145deg, rgba(255, 244, 235, 0.96), rgba(126, 97, 245, 0.08));
}

body.theme-progress .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.theme-progress .gallery-card:nth-child(odd) {
  transform: translateY(22px);
}

body.theme-progress .feature-card {
  border-top: 0;
  border-bottom: 3px solid var(--accent);
}

body.theme-video .landing-header {
  background: rgba(8, 10, 13, 0.84);
}

body.theme-video .card {
  background: rgba(15, 17, 21, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-video .header-links a,
body.theme-video .eyebrow,
body.theme-video .section-head p,
body.theme-video .lede,
body.theme-video .chip-row li,
body.theme-video .feature-card p,
body.theme-video .detail-card ul,
body.theme-video .gallery-card span,
body.theme-video .faq-card p,
body.theme-video .hero-note p,
body.theme-video .footer {
  color: var(--muted);
}

body.theme-video .hero-shot {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.35));
}

body.theme-video .hero-shot::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 44px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(215, 103, 61, 0.28) 0 18%, transparent 18% 22%, rgba(215, 103, 61, 0.58) 22% 58%, transparent 58% 62%, rgba(61, 132, 148, 0.4) 62% 100%);
  filter: blur(0.3px);
  z-index: 0;
}

body.theme-video .hero-shot img {
  margin-bottom: 58px;
}

body.theme-video .feature-card {
  border-top: 3px solid rgba(215, 103, 61, 0.5);
}

body.theme-video .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-watermark .hero-copy {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 248, 0.82)),
    linear-gradient(120deg, rgba(18, 117, 125, 0.08), transparent 48%);
}

body.theme-watermark .hero-shot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 247, 0.78)),
    repeating-conic-gradient(from 45deg, rgba(18, 117, 125, 0.04) 0deg 90deg, rgba(255, 255, 255, 0.9) 90deg 180deg);
  background-size: auto, 28px 28px;
}

body.theme-watermark .feature-card {
  border-top: 0;
  border-left: 0;
  box-shadow: inset 0 -3px 0 rgba(18, 117, 125, 0.36);
}

body.theme-watermark .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-watermark .gallery-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 248, 0.88));
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-soft {
  0%, 100% {
    transform: scale(1.015) translateY(0);
  }
  50% {
    transform: scale(1.015) translateY(-6px);
  }
}

@media (max-width: 920px) {
  .hero-panel,
  .privacy-panel,
  .workflow-grid,
  body.theme-field .gallery-grid,
  body.theme-video .gallery-grid,
  body.theme-watermark .gallery-grid,
  body.theme-progress .gallery-grid {
    grid-template-columns: 1fr;
  }

  .landing-header .shell {
    padding: 14px 0;
    align-items: flex-start;
    min-height: 0;
    flex-direction: column;
  }

  body.theme-progress .hero-copy,
  body.theme-progress .hero-side {
    order: initial;
    transform: none;
  }

  body.theme-progress .gallery-card:nth-child(odd),
  body.theme-field .gallery-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 760px);
  }

  .hero-copy,
  .hero-side,
  .feature-card,
  .gallery-card,
  .detail-card,
  .faq-card,
  .legal-card,
  .outcome-card,
  .workflow-card,
  .fit-card,
  .related-card,
  .support-card,
  .privacy-panel,
  .bottom-cta,
  .article-hero .card,
  .report-preview {
    padding: 18px;
  }

  /* Responsive boundary: stack proof and CTA content so narrow screens never require horizontal scrolling. */
  .bottom-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .button,
  .header-links .store-link {
    width: 100%;
  }

  .title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-line {
    display: grid;
  }

  .price-line span::before {
    content: none;
  }

  .app-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  h1 {
    max-width: none;
  }
}

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

  .hero-copy,
  .hero-side,
  .feature-card,
  .gallery-card,
  .detail-card,
  .faq-card,
  .legal-card,
  .hero-shot img {
    animation: none;
    transform: none;
    opacity: 1;
  }

  .button,
  .gallery-card img {
    transition: none;
  }
}
