@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-var.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: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext-var.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 {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #fcfcfc;
  --bg-warm: #fbfaf8;
  --ink: #171717;
  --ink-soft: #3f3f46;
  --muted: #6b7280;
  --line: #efefef;
  --line-strong: #e5e7eb;
  --accent: #3b82f6;
  --accent-strong: #2563eb;
  --violet: #7c3aed;
  --green: #16a34a;
  --amber: #f59e0b;
  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow-2: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-3: 0 18px 45px rgba(17, 24, 39, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-phone: 24px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.45);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 999;
  transform: translateY(-140%);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: var(--shadow-2);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(239, 239, 239, 0.92);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

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

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

.brand-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: var(--shadow-1);
}

.mobile-nav-cta {
  display: none;
}

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

.nav-links a {
  border-radius: 8px;
  color: #52525b;
  padding: 9px 10px;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #f4f4f5;
  color: var(--ink);
}

.nav-links .nav-cta {
  margin-left: 4px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow-1);
}

.nav-links .nav-cta:hover {
  background: var(--accent-strong);
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 54%, #f7fbff 100%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0;
}

.icon {
  flex: 0 0 auto;
}

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

.hero h1,
.page-hero h1,
.article-hero h1,
.section-heading h2,
.split-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.45rem, 8vw, 5.8rem);
}

.hero-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
  line-height: 1.7;
}

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

.play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 10px;
  transition: transform 160ms ease, filter 160ms ease;
}

.play-badge:hover {
  transform: translateY(-1px);
  filter: saturate(1.04);
}

.play-badge img {
  width: 162px;
  height: auto;
}

.hero-badge img {
  width: 190px;
}

.qr-download-card {
  display: none;
  grid-template-columns: 82px minmax(0, 180px);
  align-items: center;
  gap: 12px;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 14px 10px 10px;
  text-align: left;
  box-shadow: var(--shadow-2);
}

.qr-download-card img {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.qr-download-card strong,
.qr-download-card span {
  display: block;
}

.qr-download-card strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.2;
}

.qr-download-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.hero-qr {
  transform: translateY(1px);
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .qr-download-card {
    display: inline-grid;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-secondary {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow-1);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  border: 1px solid #dcfce7;
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 720;
}

.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof {
  list-style: none;
  padding-left: 0;
}

.hero-proof li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #52525b;
  padding: 7px 12px;
  font-size: 0.86rem;
  font-weight: 650;
  box-shadow: var(--shadow-1);
}

.hero-visual {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(10px, 2vw, 24px);
  margin-top: 42px;
}

.phone-shot {
  width: min(100%, 280px);
  min-width: min(220px, 100%);
  margin: 0 auto;
  border: 0;
  border-radius: var(--radius-phone);
  background: transparent;
  padding: 0;
  cursor: zoom-in;
  box-shadow: var(--shadow-3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.phone-shot:nth-child(2),
.phone-shot:nth-child(4) {
  transform: translateY(18px);
}

.phone-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

.phone-shot:nth-child(2):hover,
.phone-shot:nth-child(4):hover {
  transform: translateY(10px);
}

.phone-shot img,
.article-cover {
  width: 100%;
  height: auto;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-phone);
  background: #0f172a;
}

.section {
  padding: 88px 0;
}

.intro-band {
  border-block: 1px solid var(--line);
  background: var(--bg-warm);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: end;
}

.split-copy h2,
.section-heading h2,
.final-cta h2 {
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.split-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.section-heading {
  margin-bottom: 28px;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.feature-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.review-card,
.blog-card,
.hero-mini-panel,
.article-cta-block,
.faq-section details,
.related-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-1);
}

.feature-card {
  padding: 24px;
}

.feature-card .icon {
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card:nth-child(2) .icon {
  color: var(--violet);
}

.feature-card:nth-child(3) .icon {
  color: var(--amber);
}

.feature-card:nth-child(4) .icon {
  color: var(--green);
}

.feature-card h3,
.blog-card h3,
.review-card strong {
  color: var(--ink);
  letter-spacing: 0;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature-card p,
.review-card p,
.blog-card p,
.lead,
.page-body p,
.article-body p,
.article-body li {
  color: var(--ink-soft);
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.screenshot-section {
  background: #f8fafc;
  border-block: 1px solid var(--line);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screenshot-grid .phone-shot:nth-child(n) {
  transform: none;
}

.reviews-section {
  background: #ffffff;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: -18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fcfcfc;
  box-shadow: var(--shadow-soft);
}

.review-summary strong {
  color: var(--ink);
  font-size: 1rem;
}

.review-summary span {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-card {
  padding: 24px;
}

.rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fffbeb;
  color: #92400e;
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 820;
}

.review-card p {
  font-size: 1rem;
}

.review-card footer {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.review-card span,
.card-meta,
.related-card small,
.footer-note,
.footer-bottom {
  color: var(--muted);
}

.blog-preview {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

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

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

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f4f5;
  border-bottom: 1px solid var(--line);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 720;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.blog-card h3 a,
.read-more {
  text-decoration: none;
}

.blog-card p {
  flex: 1;
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 780;
}

.read-more .icon {
  width: 16px;
  height: 16px;
}

.final-cta {
  background: #ffffff;
}

.final-cta-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.78), rgba(255, 255, 255, 0.94)),
    #ffffff;
  padding: clamp(28px, 6vw, 56px);
  box-shadow: var(--shadow-2);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.download-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fbfbfb;
  padding: 48px 0 28px;
}

.footer-layout,
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand-block {
  max-width: 410px;
}

.footer-note {
  margin: 12px 0 16px;
  font-size: 0.95rem;
}

.footer-badge img {
  width: 142px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: #52525b;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.sticky-download {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 7px 12px 7px 7px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.15);
  text-decoration: none;
  transform: translateY(110px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.sticky-download.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-download img {
  width: 136px;
  height: auto;
}

.sticky-download span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  white-space: nowrap;
}

.image-dialog {
  width: min(92vw, 520px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.image-dialog::backdrop {
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(4px);
}

.image-dialog img {
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: var(--radius-phone);
}

.image-dialog p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 700;
}

.dialog-close {
  display: block;
  margin: 0 0 12px auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
}

.page-hero,
.article-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 70px 0;
}

.page-hero-grid,
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 36px;
  align-items: center;
}

.page-hero h1 {
  max-width: 830px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero-mini-panel {
  padding: 24px;
}

.hero-mini-panel p {
  margin: 0 0 14px;
  color: #166534;
  font-weight: 780;
}

.blog-index-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-hero {
  padding: 58px 0;
}

.article-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  align-items: end;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent-strong);
  font-weight: 760;
  text-decoration: none;
}

.article-tag {
  display: inline-flex;
  margin: 0 0 14px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--accent-strong);
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 780;
}

.article-hero h1 {
  max-width: 820px;
  font-size: clamp(2.15rem, 6vw, 4.5rem);
}

.article-intro {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.share-links a {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: #52525b;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
  box-shadow: var(--shadow-1);
}

.share-links a:hover {
  color: var(--accent-strong);
  border-color: #bfdbfe;
}

.article-cover {
  width: min(100%, 260px);
  justify-self: center;
  box-shadow: var(--shadow-3);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  padding: 64px 0 28px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 44px 0 14px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.article-body h3 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-size: 1.22rem;
}

.article-body p,
.article-body li {
  font-size: 1.03rem;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3rem;
  margin: 0 0 24px;
}

.article-body a,
.text-link {
  color: var(--accent-strong);
  font-weight: 720;
  text-underline-offset: 4px;
}

.article-callout {
  margin: 28px 0;
  border: 1px solid #dbeafe;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #eff6ff;
  padding: 20px;
}

.article-callout p {
  margin: 0;
  color: #1e3a8a;
}

.article-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 44px 0;
}

.article-cta-block {
  margin: 50px 0;
  padding: 28px;
  background: linear-gradient(180deg, #eff6ff, #ffffff);
}

.article-cta-block h2,
.article-cta-block h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-cta-block p {
  max-width: 520px;
}

.faq-section {
  margin-top: 44px;
}

.faq-section h2 {
  margin-top: 0;
}

.faq-section details {
  margin-bottom: 12px;
  padding: 16px 18px;
}

.faq-section summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 780;
}

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

.related-section {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 56px 0 76px;
}

.related-section h2 {
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  text-decoration: none;
}

.related-card span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 780;
}

.related-card strong {
  line-height: 1.35;
}

.page-body {
  max-width: 760px;
}

.page-body h2 {
  margin: 34px 0 10px;
  font-size: 1.55rem;
}

.page-body ul {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }
}

@media (max-width: 980px) {
  .hero-visual,
  .screenshot-grid,
  .feature-grid,
  .latest-grid,
  .blog-grid,
  .blog-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-copy,
  .page-hero-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-cover {
    justify-self: start;
  }

  .reviews-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .review-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    background: #ffffff;
  }

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

  .site-nav {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 26px rgba(17, 24, 39, 0.04);
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 12px;
    padding: 10px 0 8px;
  }

  .brand {
    font-size: 1.02rem;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 10px;
    background: var(--ink);
    color: #ffffff;
    padding: 0 14px;
    font-size: 0.88rem;
    font-weight: 780;
    text-decoration: none;
    box-shadow: var(--shadow-1);
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding: 3px 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: #ffffff;
    padding: 7px 10px;
    font-size: 0.84rem;
    box-shadow: var(--shadow-1);
  }

  .nav-links .nav-cta {
    display: none;
  }

  .nav-links a[href="/privacy.html"] {
    display: none;
  }

  .hero {
    padding: 34px 0 36px;
    background:
      radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.09), transparent 42%),
      linear-gradient(180deg, #ffffff 0%, #fbfdff 54%, #ffffff 100%);
  }

  .hero-inner {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    padding: 28px 14px 0;
    box-shadow: 0 14px 40px rgba(17, 24, 39, 0.06);
    overflow: hidden;
  }

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

  .eyebrow {
    margin-bottom: 14px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eff6ff;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(2.05rem, 10.8vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 18px;
    color: #3f3f46;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-badge img {
    width: 178px;
  }

  .hero-actions .button {
    min-width: min(100%, 208px);
    min-height: 46px;
  }

  .trust-badge {
    max-width: 100%;
    margin-top: 18px;
    justify-content: center;
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .hero-proof {
    gap: 8px;
    margin: 18px 0 0;
  }

  .hero-proof li {
    background: #ffffff;
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .hero-visual,
  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .phone-shot,
  .phone-shot:nth-child(2),
  .phone-shot:nth-child(4),
  .phone-shot:hover,
  .phone-shot:nth-child(2):hover,
  .phone-shot:nth-child(4):hover {
    width: min(100%, 258px);
    transform: none;
  }

  .hero-visual .phone-shot:nth-child(n + 2) {
    display: none;
  }

  .hero-visual .phone-shot:first-child {
    margin-bottom: -52px;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .latest-grid,
  .blog-grid,
  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .row-heading,
  .footer-layout,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .article-layout {
    padding-top: 42px;
  }

  .sticky-download {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .sticky-download span {
    display: none;
  }

  .hero-qr,
  .qr-download-card {
    display: none;
  }
}

@media (max-width: 410px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .play-badge img,
  .hero-badge img {
    width: 176px;
  }
}
