:root {
  --bg: #111111;
  --bg-soft: #1a1a1a;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f6f2eb;
  --muted: rgba(246, 242, 235, 0.74);
  --accent: #db4f29;
  --accent-soft: rgba(219, 79, 41, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(225, 92, 50, 0.24), transparent 30%),
    radial-gradient(circle at top right, rgba(61, 104, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #171513 0%, #0e0e0f 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 32px, 32px 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.32), transparent 70%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
summary,
input,
button {
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(15, 15, 16, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
}

.topbar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topnav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a {
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text);
}

.header-cta,
.nav-toggle {
  display: none;
}

.header-cta {
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header-cta-ios {
  color: #1562ff;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.header-cta-android {
  gap: 10px;
  color: #ffffff;
  background: rgba(8, 8, 9, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.header-cta-android::before {
  content: "";
  width: 14px;
  height: 14px;
  background:
    linear-gradient(135deg, #00d26a 0%, #00d26a 45%, transparent 46%),
    linear-gradient(225deg, #00a2ff 0%, #00a2ff 45%, transparent 46%),
    linear-gradient(315deg, #ffd24a 0%, #ffd24a 45%, transparent 46%),
    linear-gradient(45deg, #ff5b5b 0%, #ff5b5b 45%, transparent 46%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

html.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

html.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

html.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html[data-platform="ios"] .topnav,
html[data-platform="android"] .topnav,
html[data-platform="ios"] .nav-toggle,
html[data-platform="android"] .nav-toggle {
  display: none;
}

html[data-platform="ios"] .topbar-controls,
html[data-platform="android"] .topbar-controls {
  margin-left: auto;
}

html[data-platform="ios"] .header-cta-ios,
html[data-platform="android"] .header-cta-android {
  display: inline-flex;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 64px 0 32px;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin-top: 14px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffd6c8;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text,
.hero-support,
.section-heading p,
.content-card p,
.benefit-card p,
.notify-card p,
.faq-list p,
.footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1.14rem;
}

.hero-support {
  max-width: 56ch;
  margin: 14px 0 0;
}

.hero-actions {
  margin-top: 28px;
}

.hero-actions-mobile {
  display: none;
}

.store-badge-link {
  display: inline-flex;
}

.store-badge {
  width: min(100%, 210px);
  max-width: 100%;
  height: auto;
}

.qr-card .store-badge {
  width: min(100%, 210px);
}

.final-cta-card .store-badge {
  width: min(100%, 220px);
}

.store-banner-mobile {
  display: block;
  width: min(100%, 460px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.microcopy {
  margin-top: 10px;
  font-size: 0.92rem;
  color: rgba(246, 242, 235, 0.86);
  font-weight: 600;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
}

.trust-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a58, var(--accent));
  box-shadow: 0 0 0 8px rgba(225, 92, 50, 0.12);
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.hero-card,
.content-card,
.benefit-card,
.notify-card,
.final-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.app-preview {
  min-height: 520px;
  padding: 28px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: auto auto 18% 18%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(225, 92, 50, 0.22);
  filter: blur(50px);
}

.app-preview::after {
  content: "";
  position: absolute;
  inset: 7% 8%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 62%),
    url("/assets/brand-mark.png") center / 64% no-repeat;
  opacity: 0.1;
  border-radius: 42px;
  filter: blur(1px);
}

.hero-app-icon {
  position: relative;
  z-index: 2;
  width: min(72%, 360px);
  aspect-ratio: 1;
  border-radius: 32px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
}

.topic-cloud {
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
}

.topic-cloud span {
  position: absolute;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff6f2;
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.96);
  animation:
    topic-drift 16s ease-in-out infinite,
    topic-presence 11s linear infinite;
}

.topic-cloud span:nth-child(1) { top: 20px; left: 14px; }
.topic-cloud span:nth-child(2) { top: 72px; right: 22px; }
.topic-cloud span:nth-child(3) { top: 45%; left: -8px; }
.topic-cloud span:nth-child(4) { right: 12px; bottom: 112px; }
.topic-cloud span:nth-child(5) { left: 34px; bottom: 28px; }
.topic-cloud span:nth-child(6) { right: 54px; bottom: 24px; }
.topic-cloud span:nth-child(7) { top: 10%; left: 31%; }
.topic-cloud span:nth-child(8) { top: 13%; right: 30%; }
.topic-cloud span:nth-child(9) { top: 28%; left: 18%; }
.topic-cloud span:nth-child(10) { top: 33%; right: 8%; }
.topic-cloud span:nth-child(11) { top: 54%; left: 14%; }
.topic-cloud span:nth-child(12) { top: 58%; right: 23%; }
.topic-cloud span:nth-child(13) { top: 68%; left: 28%; }
.topic-cloud span:nth-child(14) { top: 72%; right: 6%; }
.topic-cloud span:nth-child(15) { bottom: 18%; left: 8%; }
.topic-cloud span:nth-child(16) { bottom: 12%; left: 24%; }
.topic-cloud span:nth-child(17) { bottom: 28%; right: 15%; }
.topic-cloud span:nth-child(18) { bottom: 34%; right: 31%; }
.topic-cloud span:nth-child(19) { top: 7%; left: 53%; }
.topic-cloud span:nth-child(20) { top: 24%; left: 39%; }
.topic-cloud span:nth-child(21) { top: 39%; left: 56%; }
.topic-cloud span:nth-child(22) { top: 49%; right: 38%; }
.topic-cloud span:nth-child(23) { top: 63%; left: 44%; }
.topic-cloud span:nth-child(24) { bottom: 24%; left: 49%; }
.topic-cloud span:nth-child(25) { bottom: 8%; right: 36%; }
.topic-cloud span:nth-child(26) { top: 19%; right: 43%; }
.topic-cloud span:nth-child(27) { top: 43%; left: 1%; }
.topic-cloud span:nth-child(28) { bottom: 40%; left: 35%; }
.topic-cloud span:nth-child(29) { bottom: 3%; right: 8%; }
.topic-cloud span:nth-child(30) { top: 3%; right: 4%; }
.topic-cloud span:nth-child(31) { top: 83%; left: 12%; }
.topic-cloud span:nth-child(32) { top: 80%; right: 24%; }
.topic-cloud span:nth-child(33) { top: 37%; right: 25%; }
.topic-cloud span:nth-child(34) { top: 61%; right: 2%; }

.topic-cloud span:nth-child(odd) {
  animation-duration: 17s, 12.5s;
}

.topic-cloud span:nth-child(3n) {
  animation-duration: 15s, 9.8s;
}

.topic-cloud span:nth-child(4n) {
  animation-duration: 18.5s, 13.2s;
}

.topic-cloud span:nth-child(5n) {
  animation-duration: 14.5s, 10.7s;
}

.topic-cloud span:nth-child(1) { animation-delay: 0s, -1.8s; }
.topic-cloud span:nth-child(2) { animation-delay: -2.2s, -6.9s; }
.topic-cloud span:nth-child(3) { animation-delay: -5.4s, -4.4s; }
.topic-cloud span:nth-child(4) { animation-delay: -8.1s, -9.8s; }
.topic-cloud span:nth-child(5) { animation-delay: -10.6s, -2.1s; }
.topic-cloud span:nth-child(6) { animation-delay: -12.8s, -7.2s; }
.topic-cloud span:nth-child(7) { animation-delay: -1.4s, -3.9s; }
.topic-cloud span:nth-child(8) { animation-delay: -6.1s, -10.8s; }
.topic-cloud span:nth-child(9) { animation-delay: -9.7s, -5.5s; }
.topic-cloud span:nth-child(10) { animation-delay: -4.9s, -8.6s; }
.topic-cloud span:nth-child(11) { animation-delay: -11.2s, -0.7s; }
.topic-cloud span:nth-child(12) { animation-delay: -7.8s, -6.1s; }
.topic-cloud span:nth-child(13) { animation-delay: -3.6s, -11.4s; }
.topic-cloud span:nth-child(14) { animation-delay: -13.6s, -4.8s; }
.topic-cloud span:nth-child(15) { animation-delay: -0.8s, -9.1s; }
.topic-cloud span:nth-child(16) { animation-delay: -8.7s, -1.9s; }
.topic-cloud span:nth-child(17) { animation-delay: -5.8s, -7.7s; }
.topic-cloud span:nth-child(18) { animation-delay: -12.2s, -3.1s; }
.topic-cloud span:nth-child(19) { animation-delay: -2.7s, -10.2s; }
.topic-cloud span:nth-child(20) { animation-delay: -9.1s, -5.9s; }
.topic-cloud span:nth-child(21) { animation-delay: -6.6s, -0.4s; }
.topic-cloud span:nth-child(22) { animation-delay: -14.1s, -8.3s; }
.topic-cloud span:nth-child(23) { animation-delay: -4.2s, -2.6s; }
.topic-cloud span:nth-child(24) { animation-delay: -10.4s, -11.7s; }
.topic-cloud span:nth-child(25) { animation-delay: -1.9s, -6.4s; }
.topic-cloud span:nth-child(26) { animation-delay: -7.4s, -9.4s; }
.topic-cloud span:nth-child(27) { animation-delay: -11.8s, -4.2s; }
.topic-cloud span:nth-child(28) { animation-delay: -3.1s, -7.1s; }
.topic-cloud span:nth-child(29) { animation-delay: -13.3s, -1.1s; }
.topic-cloud span:nth-child(30) { animation-delay: -5.2s, -10.6s; }
.topic-cloud span:nth-child(31) { animation-delay: -8.3s, -5.1s; }
.topic-cloud span:nth-child(32) { animation-delay: -12.5s, -8.8s; }
.topic-cloud span:nth-child(33) { animation-delay: -6.9s, -2.8s; }
.topic-cloud span:nth-child(34) { animation-delay: -15.1s, -11.2s; }

@keyframes topic-drift {
  0%,
  100% {
    transform: translate3d(0, 10px, 0) scale(0.95);
  }

  18% {
    transform: translate3d(-4px, -6px, 0) scale(1);
  }

  52% {
    transform: translate3d(6px, -18px, 0) scale(1.03);
  }

  78% {
    transform: translate3d(-3px, -4px, 0) scale(0.985);
  }
}

@keyframes topic-presence {
  0%,
  8%,
  100% {
    opacity: 0;
  }

  12%,
  20% {
    opacity: 0.1;
  }

  28%,
  44% {
    opacity: 0.56;
  }

  52%,
  66% {
    opacity: 0.24;
  }

  74%,
  82% {
    opacity: 0.68;
  }

  90% {
    opacity: 0.08;
  }
}

.qr-card {
  padding: 24px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.qr-overline {
  margin: 0;
  justify-self: start;
  text-align: left;
  color: #ffd6c8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qr-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.qr-card p {
  margin: 0;
}

.qr-code {
  width: 176px;
  height: 176px;
  padding: 10px;
  background: #ffffff;
  border-radius: 22px;
}

.stats,
.content-grid,
.benefit-grid,
.seo-page-grid {
  display: grid;
  gap: 18px;
}

.stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 8px 0 24px;
}

.stats article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: 56px 0 18px;
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 12px;
}

.content-grid,
.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.seo-explorer {
  position: relative;
  margin-top: 8px;
  padding: 36px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top left, rgba(219, 79, 41, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(61, 104, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.seo-explorer .section-heading {
  max-width: 74ch;
}

.seo-explorer .eyebrow {
  color: rgba(255, 214, 200, 0.96);
}

.content-card,
.benefit-card,
.seo-page-card {
  padding: 24px;
}

.content-card h3,
.benefit-card h3,
.seo-page-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.seo-page-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.seo-page-card p {
  color: var(--muted);
  margin: 0;
  flex: 1 1 auto;
}

.seo-page-card:hover,
.seo-page-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(219, 79, 41, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.036));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.seo-page-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.split-section {
  position: relative;
}

.split-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(61, 104, 255, 0.11), transparent 28%),
    radial-gradient(circle at left bottom, rgba(225, 92, 50, 0.12), transparent 32%);
  pointer-events: none;
}

.android-section .notify-card {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.notify-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.notify-input {
  min-width: 0;
  padding: 15px 16px;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.notify-input::placeholder {
  color: rgba(246, 242, 235, 0.42);
}

.notify-input:focus {
  border-color: rgba(219, 79, 41, 0.48);
  box-shadow: 0 0 0 4px rgba(219, 79, 41, 0.12);
}

.notify-input[aria-invalid="true"] {
  border-color: rgba(255, 107, 107, 0.58);
}

.notify-button {
  display: grid;
  place-items: center;
  padding: 15px 18px;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(219, 79, 41, 0.92), rgba(191, 64, 29, 0.92));
  border: 1px solid rgba(219, 79, 41, 0.55);
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    transform 160ms ease,
    filter 160ms ease,
    border-color 160ms ease;
}

.notify-button:hover,
.notify-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.notify-button:disabled {
  opacity: 0.72;
  cursor: progress;
  transform: none;
}

.notify-feedback {
  min-height: 1.5em;
  margin: -4px 0 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.notify-feedback[data-state="success"] {
  color: #d7f7d3;
}

.notify-feedback[data-state="error"] {
  color: #ffb8b8;
}

.notify-note {
  margin: 0;
  font-size: 0.95rem;
}

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

.faq-list .faq-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.faq-list h3 {
  font-size: 1.2rem;
}

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

.content-page .section-heading {
  margin-bottom: 30px;
}

.content-prose {
  max-width: 78ch;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.content-prose > :first-child {
  margin-top: 0;
}

.content-prose h2,
.content-prose h3 {
  margin-top: 1.8em;
  margin-bottom: 0.5em;
}

.content-prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.content-prose h3 {
  font-size: 1.15rem;
}

.content-prose p,
.content-prose li {
  color: var(--muted);
}

.content-prose ul {
  padding-left: 1.2rem;
}

.content-prose a {
  color: #ffd6c8;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.editorial-page .section-heading {
  max-width: 92ch;
}

.editorial-prose {
  max-width: 100%;
  padding: 36px 40px;
}

.editorial-prose > * {
  max-width: 76ch;
}

.editorial-prose h2 {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.editorial-prose h2:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.editorial-prose h2 + p {
  font-size: 1.12rem;
  color: rgba(246, 242, 235, 0.84);
}

.editorial-prose p,
.editorial-prose li {
  font-size: 1.04rem;
  line-height: 1.75;
}

.editorial-prose strong {
  color: var(--text);
}

.editorial-prose ul {
  display: grid;
  gap: 12px;
  max-width: 78ch;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.editorial-prose li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.editorial-prose li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a58, var(--accent));
  box-shadow: 0 0 0 8px rgba(225, 92, 50, 0.1);
}

.content-page-cta {
  padding-top: 18px;
}

.content-page-cta-card {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.content-page-cta-card:hover,
.content-page-cta-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

.content-page-cta-card:active {
  transform: translateY(0);
}

.content-page-cta-copy {
  max-width: 48rem;
}

.content-page-cta-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.content-page-cta-copy p:not(.eyebrow):not(.final-cta-hint) {
  margin: 0;
  color: var(--muted);
}

.content-page-cta-support {
  margin-top: 14px;
}

.content-page-cta-inline-link,
.content-page-android-link {
  color: #ffd6c8;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.content-page-cta-desktop-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.content-page-cta-qr {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.content-page-cta-mobile-actions {
  display: none;
  width: 100%;
}

.content-page-cta-mobile-ios,
.content-page-cta-mobile-android {
  display: none;
}

.content-page-cta-mobile-android {
  min-height: 48px;
  width: min(100%, 240px);
}

.final-cta-card {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.final-cta-card:hover,
.final-cta-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

.final-cta-card:active {
  transform: translateY(0);
}

.final-cta-hint {
  margin: 12px 0 0;
  color: #ffd6c8;
  font-size: 0.98rem;
  font-weight: 600;
}

.final-cta-mobile-top {
  display: block;
}

.final-cta-badge {
  flex: 0 0 auto;
  width: min(100%, 210px);
}

.final-cta-badge-mobile {
  display: none;
}

.footer {
  display: grid;
  gap: 4px;
  padding: 38px 0 12px;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer-legal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .topbar {
    gap: 14px;
    padding: 16px;
  }

  .topnav {
    gap: 14px;
    font-size: 0.93rem;
  }

  .hero,
  .stats,
  .content-grid,
  .benefit-grid,
  .seo-page-grid,
  .final-cta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .app-preview {
    min-height: 420px;
  }

  .hero-actions-mobile {
    display: block;
    text-align: center;
  }

  .hero-actions-mobile .store-badge-link {
    justify-content: center;
    width: 100%;
  }

  .hero-actions-mobile .store-badge-link-mobile-banner {
    display: block;
    width: calc(100% + 32px);
    max-width: none;
    margin-left: -16px;
    margin-right: -16px;
  }

  .hero-actions-mobile .store-banner-mobile {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-actions-mobile .microcopy {
    margin-top: 14px;
    font-size: 1rem;
  }

  .qr-card {
    display: none;
  }

  .content-page-cta-desktop-actions {
    display: none;
  }

  .content-page-cta-mobile-actions {
    display: block;
  }

  .content-page-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-page-cta-mobile-actions .store-badge-link,
  .content-page-cta-mobile-actions .header-cta {
    justify-content: flex-start;
  }

  html[data-platform="android"] .content-page-cta-mobile-android {
    display: inline-flex;
  }

  html[data-platform="ios"] .content-page-cta-mobile-ios,
  html[data-platform="other"] .content-page-cta-mobile-ios {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 8px;
    margin-top: 10px;
    padding: 12px;
    gap: 12px;
    border-radius: 24px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.9rem;
  }

  html.js[data-platform="other"] .nav-toggle {
    display: inline-flex;
  }

  html.js[data-platform="other"] .topnav {
    display: none;
    width: 100%;
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.92rem;
  }

  html.js[data-platform="other"].nav-open .topnav {
    display: grid;
  }

  html.js[data-platform="other"] .topnav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 10px;
    text-align: center;
    color: rgba(246, 242, 235, 0.84);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
  }

  html.js[data-platform="other"] .topnav a:hover,
  html.js[data-platform="other"] .topnav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: none;
  }

  .topbar-controls {
    gap: 8px;
  }

  html.js[data-platform="other"] .topbar-controls {
    margin-left: auto;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .section,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .app-preview {
    min-height: 360px;
    padding: 20px;
  }

  .topic-cloud span {
    font-size: 0.78rem;
    max-width: 44vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    align-items: flex-start;
    padding: 22px;
  }

  .content-page-cta-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .content-page-cta-mobile-actions {
    width: 100%;
  }

  .content-page-cta-mobile-actions .store-badge-link,
  .content-page-cta-mobile-actions .header-cta {
    width: 100%;
    justify-content: center;
  }

  .content-page-cta-card .store-badge {
    width: min(100%, 200px);
  }

  .content-prose {
    padding: 22px;
  }

  .editorial-prose {
    padding: 24px;
  }

  .editorial-prose > * {
    max-width: 100%;
  }

  .final-cta-copy {
    width: 100%;
  }

  .final-cta-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin-bottom: 8px;
  }

  .final-cta-mobile-top .eyebrow {
    margin: 0;
  }

  .final-cta-badge-desktop {
    display: none;
  }

  .final-cta-badge-mobile {
    display: block;
    width: min(100%, 168px);
  }

  .hero-actions-mobile .store-badge-link-mobile-banner {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
  }

  .seo-page-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .seo-page-grid::-webkit-scrollbar {
    height: 8px;
  }

  .seo-page-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
  }

  .seo-page-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 250px;
    scroll-snap-align: start;
  }

  .seo-explorer {
    padding: 28px 18px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topic-cloud span {
    animation: none;
    opacity: 0.38;
    transform: none;
  }
}
