:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--page-bg);
  color: var(--text);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --content-width: 1120px;
  --header-width: 1320px;
  --page-bg: #f7f8fa;
  --text: #121417;
  --text-strong: #050608;
  --text-invert: #f8fafc;
  --muted: #5f6773;
  --muted-strong: #3f4650;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-soft: rgba(241, 243, 246, 0.92);
  --surface-raised: rgba(255, 255, 255, 0.96);
  --header-bg: rgba(255, 255, 255, 0.78);
  --mobile-panel-bg: rgba(255, 255, 255, 0.97);
  --border: rgba(15, 23, 42, 0.12);
  --border-strong: rgba(15, 23, 42, 0.18);
  --interactive-soft: rgba(15, 23, 42, 0.055);
  --interactive-hover: rgba(15, 23, 42, 0.085);
  --accent: #09b86f;
  --accent-contrast: #03100a;
  --accent-cyan: #0ea5b7;
  --accent-purple: #7c3aed;
  --accent-soft: rgba(9, 184, 111, 0.12);
  --focus: #0ea5b7;
  --store-bg: #07080b;
  --store-border: rgba(255, 255, 255, 0.18);
  --store-muted: #c8ced8;
  --phone-bg: #0a0b10;
  --phone-highlight: rgba(255, 255, 255, 0.12);
  --shadow-soft: rgba(15, 23, 42, 0.12);
  --shadow-medium: rgba(15, 23, 42, 0.2);
  --body-background:
    radial-gradient(circle at 18% 14%, rgba(9, 184, 111, 0.11), transparent 22rem),
    radial-gradient(circle at 88% 6%, rgba(124, 58, 237, 0.07), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 48%, #eceff3 100%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --page-bg: #050507;
    --text: #f5f7fb;
    --text-strong: #ffffff;
    --text-invert: #f8fafc;
    --muted: #b7beca;
    --muted-strong: #d7dce7;
    --surface: rgba(18, 19, 24, 0.78);
    --surface-solid: #111217;
    --surface-soft: rgba(255, 255, 255, 0.055);
    --surface-raised: rgba(18, 19, 24, 0.96);
    --header-bg: rgba(6, 6, 9, 0.78);
    --mobile-panel-bg: rgba(10, 10, 14, 0.97);
    --border: rgba(255, 255, 255, 0.11);
    --border-strong: rgba(255, 255, 255, 0.18);
    --interactive-soft: rgba(255, 255, 255, 0.06);
    --interactive-hover: rgba(255, 255, 255, 0.1);
    --accent: #26d98f;
    --accent-contrast: #04110b;
    --accent-cyan: #63e6f5;
    --accent-purple: #a78bfa;
    --accent-soft: rgba(38, 217, 143, 0.13);
    --focus: #63e6f5;
    --store-bg: #05050a;
    --store-border: rgba(255, 255, 255, 0.22);
    --store-muted: #c7ced8;
    --phone-bg: #07080d;
    --phone-highlight: rgba(255, 255, 255, 0.11);
    --shadow-soft: rgba(0, 0, 0, 0.28);
    --shadow-medium: rgba(0, 0, 0, 0.45);
    --body-background:
      radial-gradient(circle at 18% 16%, rgba(38, 217, 143, 0.1), transparent 23rem),
      radial-gradient(circle at 88% 8%, rgba(167, 139, 250, 0.1), transparent 27rem),
      linear-gradient(135deg, #050507 0%, #0b0c10 54%, #101216 100%);
  }
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --page-bg: #050507;
  --text: #f5f7fb;
  --text-strong: #ffffff;
  --text-invert: #f8fafc;
  --muted: #b7beca;
  --muted-strong: #d7dce7;
  --surface: rgba(18, 19, 24, 0.78);
  --surface-solid: #111217;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --surface-raised: rgba(18, 19, 24, 0.96);
  --header-bg: rgba(6, 6, 9, 0.78);
  --mobile-panel-bg: rgba(10, 10, 14, 0.97);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.18);
  --interactive-soft: rgba(255, 255, 255, 0.06);
  --interactive-hover: rgba(255, 255, 255, 0.1);
  --accent: #26d98f;
  --accent-contrast: #04110b;
  --accent-cyan: #63e6f5;
  --accent-purple: #a78bfa;
  --accent-soft: rgba(38, 217, 143, 0.13);
  --focus: #63e6f5;
  --store-bg: #05050a;
  --store-border: rgba(255, 255, 255, 0.22);
  --store-muted: #c7ced8;
  --phone-bg: #07080d;
  --phone-highlight: rgba(255, 255, 255, 0.11);
  --shadow-soft: rgba(0, 0, 0, 0.28);
  --shadow-medium: rgba(0, 0, 0, 0.45);
  --body-background:
    radial-gradient(circle at 18% 16%, rgba(38, 217, 143, 0.1), transparent 23rem),
    radial-gradient(circle at 88% 8%, rgba(167, 139, 250, 0.1), transparent 27rem),
    linear-gradient(135deg, #050507 0%, #0b0c10 54%, #101216 100%);
}

:root[data-theme='light'] {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--body-background);
}

a {
  color: inherit;
}

main {
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.site-header-inner {
  width: min(var(--header-width), 100%);
  margin: 0 auto;
  padding: 12px clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.brand,
.site-nav-link,
.mobile-nav-link,
.store-link,
.site-footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.header-store {
  display: flex;
  align-items: center;
}

.platform-store {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.platform-store[data-platform='ios'] .platform-store-android,
.platform-store[data-platform='android'] .platform-store-ios {
  display: none;
}

.platform-store-compact .store-link {
  min-width: 0;
  min-height: 40px;
  gap: 8px;
  padding: 6px 12px;
  box-shadow: none;
}

.platform-store-compact .store-link svg {
  width: 18px;
  height: 18px;
}

.platform-store-compact .store-link small {
  font-size: 0.58rem;
}

.platform-store-compact .store-link strong {
  margin-top: 1px;
  font-size: 0.82rem;
}

.site-nav-link:hover {
  color: var(--text-strong);
  background: var(--interactive-soft);
}

.site-nav-link[aria-current="page"] {
  color: var(--accent-contrast);
  background: var(--accent);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  background: var(--interactive-soft);
  cursor: pointer;
  list-style: none;
}

.mobile-nav-toggle::-webkit-details-marker,
.mobile-nav-toggle::marker {
  display: none;
}

.mobile-nav-toggle:hover,
.mobile-nav[open] .mobile-nav-toggle {
  background: var(--interactive-hover);
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.burger,
.burger::before,
.burger::after {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, top 160ms ease, background 160ms ease;
}

.burger {
  position: relative;
}

.burger::before,
.burger::after {
  position: absolute;
  left: 0;
  content: "";
}

.burger::before {
  top: -5px;
}

.burger::after {
  top: 5px;
}

.mobile-nav[open] .burger {
  background: transparent;
}

.mobile-nav[open] .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav[open] .burger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(280px, calc(100vw - 36px));
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--mobile-panel-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px var(--shadow-medium);
}

.mobile-nav[open] .mobile-nav-panel {
  display: flex;
}

.mobile-nav-link,
.mobile-nav-cta {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.mobile-nav-link {
  color: var(--text);
}

.mobile-nav-link[aria-current="page"] {
  color: var(--accent-cyan);
  background: var(--accent-soft);
}

.mobile-nav-store {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.mobile-nav-store .platform-store {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.mobile-nav-store .store-link {
  width: auto;
  min-width: 0;
  box-shadow: none;
}

.mobile-nav-theme {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.theme-toggle {
  width: 48px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: var(--interactive-soft);
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--interactive-hover);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.theme-toggle-track {
  position: relative;
  width: 34px;
  height: 20px;
  display: block;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-raised);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  box-shadow: 0 3px 8px var(--shadow-soft);
  transition: transform 180ms ease;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-toggle-thumb {
    transform: translateX(14px);
  }
}

:root[data-theme='dark'] .theme-toggle-thumb {
  transform: translateX(14px);
}

.theme-toggle-sun,
.theme-toggle-moon {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.theme-toggle-sun {
  left: 6px;
  background: #f8c246;
}

.theme-toggle-moon {
  right: 6px;
  background: var(--accent-purple);
}

.hero {
  min-height: calc(92vh - 64px);
  padding: 28px clamp(20px, 5vw, 72px) 72px;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  width: min(var(--content-width), 100%);
  margin: auto;
  padding-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 700px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.66;
}

.compare {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto 78px;
}

.compare-intro {
  max-width: 680px;
  margin-bottom: 34px;
}

.compare-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
}

.compare-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 58ch;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.75fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: stretch;
}

.compare-panel {
  margin: 0;
  display: grid;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(22px);
}

.compare-panel figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.compare-panel figcaption strong {
  color: var(--text-strong);
  font-size: 1.02rem;
  font-weight: 800;
}

.compare-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.compare-badge-before {
  color: #fff5f5;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.compare-badge-after {
  color: var(--accent-contrast);
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
}

.browser-stack {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 360px;
  margin-top: 4px;
  overflow: hidden;
}

.browser-window {
  position: absolute;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface-raised);
  box-shadow: 0 18px 40px var(--shadow-soft);
}

.browser-window-back {
  top: 18px;
  left: 0;
  width: min(78%, 360px);
  transform: rotate(-3.5deg);
  opacity: 0.78;
  z-index: 1;
}

.browser-window-mid {
  top: 8px;
  right: 0;
  width: min(74%, 340px);
  transform: rotate(3deg);
  opacity: 0.88;
  z-index: 2;
}

.browser-window-front {
  top: 54px;
  left: 50%;
  width: min(92%, 430px);
  transform: translateX(-50%);
  z-index: 3;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px 10px 0;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
}

.browser-traffic {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
}

.browser-traffic span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}

.browser-traffic span:nth-child(2) {
  background: #febc2e;
}

.browser-traffic span:nth-child(3) {
  background: #28c840;
}

.browser-tabs {
  display: flex;
  flex: 1 1 auto;
  gap: 3px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: none;
}

.browser-tabs::-webkit-scrollbar {
  display: none;
}

.browser-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.browser-tab i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.browser-tab.is-active {
  color: var(--text-strong);
  background: var(--surface-raised);
  border-color: var(--border);
}

.browser-toolbar {
  padding: 8px 12px;
  color: var(--muted);
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-page {
  min-height: 168px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--surface-solid);
}

.browser-page-news .fake-kicker {
  width: 72px;
  margin-bottom: 10px;
  padding: 4px 0;
  color: #bb1919;
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fake-headline,
.fake-rows span,
.fake-post span,
.fake-fpl-grid span {
  display: block;
  border-radius: 6px;
  background: var(--interactive-soft);
}

.fake-headline {
  width: 92%;
  height: 12px;
  margin-bottom: 8px;
}

.fake-headline.short {
  width: 64%;
}

.fake-rows {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.fake-rows span {
  height: 28px;
}

.browser-page-reddit {
  display: grid;
  gap: 10px;
}

.fake-post {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-soft);
}

.fake-post strong {
  color: var(--text-strong);
  font-size: 0.72rem;
}

.fake-post span {
  width: 78%;
  height: 8px;
}

.browser-page-fpl {
  padding: 0;
  background: #220a2a;
}

.fake-fpl-bar {
  padding: 12px 14px;
  color: #f8fafc;
  background: linear-gradient(135deg, #37003c, #1a0520);
  font-size: 0.74rem;
  font-weight: 850;
}

.fake-fpl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
}

.fake-fpl-grid span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.fake-fpl-grid span:nth-child(1),
.fake-fpl-grid span:nth-child(5),
.fake-fpl-grid span:nth-child(9) {
  background: rgba(0, 255, 135, 0.18);
}

.fake-fpl-note {
  padding: 0 14px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.4;
}

.compare-phone {
  width: min(280px, 100%);
  margin: 0 auto;
}

.compare-phone .app-screenshot {
  aspect-ratio: auto;
  width: 100%;
  height: min(420px, 58vw);
  max-height: 420px;
  object-fit: cover;
  object-position: center 58%;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.store-link {
  min-width: 168px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--text-invert);
  background: var(--store-bg);
  border: 1px solid var(--store-border);
  border-radius: 8px;
  box-shadow: 0 18px 44px var(--shadow-soft);
}

.store-link svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.store-link-apple svg {
  fill: currentColor;
}

.play-blue {
  fill: #00a0ff;
}

.play-green {
  fill: #00d084;
}

.play-yellow {
  fill: #ffcf42;
}

.play-red {
  fill: #ff4b55;
}

.store-link span,
.store-link small,
.store-link strong {
  display: block;
}

.store-link small {
  font-size: 0.72rem;
  line-height: 1;
  color: var(--store-muted);
}

.store-link strong {
  margin-top: 3px;
  font-size: 1.12rem;
  line-height: 1.05;
}

.delete-demo {
  width: 100%;
  margin: 0;
}

.delete-demo-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 12%, rgba(38, 217, 143, 0.22), transparent 5.8rem),
    radial-gradient(circle at 80% 8%, rgba(124, 58, 237, 0.2), transparent 6.2rem),
    linear-gradient(145deg, #11131a, #050608 68%);
  box-shadow: 0 18px 44px var(--shadow-soft);
}

.delete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 18px;
  align-items: start;
  padding: 18px 24px 16px;
}

.delete-app {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  animation: app-jiggle 6s ease-in-out infinite;
}

.delete-app-old {
  z-index: 2;
  animation:
    app-jiggle 6s ease-in-out infinite,
    old-app-delete 6s ease-in-out infinite;
}

.delete-app-new {
  animation:
    app-jiggle 6s ease-in-out infinite,
    new-app-slide 6s ease-in-out infinite;
}

.delete-app-news {
  animation:
    app-jiggle 6s ease-in-out infinite,
    grid-shift-left 6s ease-in-out infinite;
}

.delete-app-live {
  animation:
    app-jiggle 6s ease-in-out infinite,
    grid-shift-left 6s ease-in-out infinite;
  animation-delay: 0s, 70ms;
}

.delete-app-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  box-shadow: 0 10px 22px var(--shadow-soft);
}

.delete-app-icon {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.delete-app-old .delete-app-icon {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.34), transparent 1.1rem),
    linear-gradient(135deg, #35145f, #1b1f2a);
}

.delete-app-news .delete-app-icon {
  background: linear-gradient(135deg, #2563eb, #0f172a);
}

.delete-app-live .delete-app-icon {
  background: linear-gradient(135deg, #0f9f6e, #083624);
}

.delete-app-icon-meta {
  padding: 7px;
  background: #050608;
}

.delete-app-icon-meta img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
}

.delete-app-label {
  max-width: 78px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.delete-badge {
  position: absolute;
  top: -9px;
  left: calc(50% - 36px);
  z-index: 3;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: #ff3b30;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  line-height: 1;
  opacity: 0;
  animation: delete-badge 6s ease-in-out infinite;
}

.delete-menu {
  position: absolute;
  z-index: 6;
  top: 10px;
  left: 88px;
  display: grid;
  min-width: 176px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(34, 34, 38, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: scale(0.94) translateY(8px);
  transform-origin: 12px 12px;
  animation: delete-menu 6s ease-in-out infinite;
}

.delete-menu span,
.delete-menu strong {
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
}

.delete-menu strong {
  color: #ff453a;
}

.delete-menu strong:last-child {
  border-bottom: 0;
}

.delete-finger {
  position: absolute;
  left: 48px;
  top: 38px;
  z-index: 7;
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 48% 48%;
  background: linear-gradient(135deg, #fafafa, #d6dae2);
  box-shadow:
    0 10px 24px var(--shadow-medium),
    inset -3px -4px 8px rgba(15, 23, 42, 0.18);
  transform: translate(70px, 22px) scale(0.96);
  animation: delete-finger 6s ease-in-out infinite;
}

.delete-finger::after {
  position: absolute;
  right: 3px;
  bottom: -11px;
  width: 10px;
  height: 16px;
  content: "";
  border-radius: 0 0 8px 8px;
  background: inherit;
}

.phone-shell {
  position: relative;
  width: min(370px, 100%);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--border-strong);
  border-radius: 38px;
  background:
    linear-gradient(180deg, var(--phone-highlight), transparent),
    var(--phone-bg);
  box-shadow:
    0 38px 88px var(--shadow-medium),
    inset 0 0 0 6px rgba(0, 0, 0, 0.22);
}

.app-screenshot {
  display: block;
  width: 100%;
  aspect-ratio: 944 / 2048;
  border-radius: 30px;
  object-fit: cover;
}

.journey-step,
.download-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(22px);
}

.journey {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 64px auto 78px;
}

.section-heading {
  max-width: 650px;
}

.section-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-cyan);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.journey-steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.journey-steps::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(
    180deg,
    transparent,
    var(--border-strong) 12%,
    var(--border-strong) 88%,
    transparent
  );
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 200px);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  min-height: 260px;
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.journey-steps.is-enhanced .journey-step {
  opacity: 0;
  transform: translateY(42px);
}

.journey-step:nth-child(even) {
  grid-template-columns: minmax(150px, 200px) minmax(0, 1.45fr);
}

.journey-step-demo,
.journey-step-demo:nth-child(even) {
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  min-height: 0;
}

.journey-step:nth-child(even) .journey-copy {
  order: 2;
}

.journey-step:nth-child(even) .journey-visual {
  order: 1;
}

.journey-step-demo:nth-child(even) .journey-copy {
  order: 1;
}

.journey-step-demo:nth-child(even) .journey-visual {
  order: 2;
}

.journey-steps.is-enhanced .journey-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-step.is-visible .journey-visual {
  transform: translateY(0) rotate(0);
}

.journey-copy {
  max-width: none;
}

.journey-count {
  display: inline-flex;
  margin-right: 10px;
  margin-bottom: 14px;
  color: var(--accent-purple);
  font-size: 0.78rem;
  font-weight: 850;
}

.journey-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: var(--accent-contrast);
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.journey-step h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.14;
  max-width: 36rem;
}

.journey-step p,
.download-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.journey-step p {
  max-width: 52ch;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.journey-visual {
  justify-self: center;
  width: min(190px, 100%);
  height: 176px;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background:
    linear-gradient(180deg, var(--phone-highlight), transparent),
    var(--phone-bg);
  box-shadow: 0 20px 44px var(--shadow-soft);
  transform: translateY(18px) rotate(1.2deg);
  transition: transform 560ms ease;
}

.journey-step:nth-child(even) .journey-visual {
  transform: translateY(18px) rotate(-1.2deg);
}

.journey-step:nth-child(even).is-visible .journey-visual {
  transform: translateY(0) rotate(0);
}

.journey-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
}

.journey-visual-demo {
  width: min(560px, 100%);
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.journey-visual-demo .delete-demo {
  width: 100%;
}

.download-panel {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 8px;
}

.download-panel img {
  width: 100%;
  max-width: 220px;
  border-radius: 28px;
  box-shadow: 0 24px 60px var(--shadow-medium);
}

.site-footer {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--text);
  font-weight: 700;
}

.legal-page {
  min-height: 100vh;
  padding: 40px clamp(20px, 5vw, 72px) 72px;
}

.legal-page .download-panel,
.legal-page .site-footer {
  width: min(var(--content-width), 100%);
}

.legal-document {
  width: min(860px, 100%);
  margin: 0 auto;
  padding-bottom: 36px;
}

.legal-document h1 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.legal-updated {
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.legal-document section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.12;
}

.legal-document p {
  color: var(--muted-strong);
  font-size: 1.04rem;
  line-height: 1.72;
}

.legal-document a {
  color: var(--accent-cyan);
  font-weight: 800;
}

.legal-document p a {
  margin-left: 0.25em;
}

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

.features-catalog-intro {
  width: min(var(--content-width), 100%);
  margin: 0 auto 8px;
}

.features-catalog-intro h1 {
  max-width: 920px;
}

.features-catalog {
  width: min(var(--content-width), 100%);
  margin: 0 auto 72px;
}

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

.catalog-card {
  min-height: 228px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(22px);
  border-radius: 8px;
  padding: 24px;
}

.catalog-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--accent-contrast);
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
}

.catalog-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.catalog-card p {
  color: var(--muted);
  line-height: 1.58;
}

@media (max-width: 900px) {
  .site-header-inner {
    gap: 12px;
    min-height: 56px;
    padding-block: 10px;
  }

  .site-nav,
  .header-store {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    padding-top: 28px;
  }

  .legal-page {
    padding-top: 28px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-grid,
  .compare-grid,
.journey-step,
.journey-step:nth-child(even),
.journey-step-demo,
.journey-step-demo:nth-child(even),
  .download-panel {
    grid-template-columns: 1fr;
  }

  .compare {
    margin-bottom: 60px;
  }

  .compare-intro {
    margin-bottom: 24px;
  }

  .compare-intro h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .compare-intro p {
    font-size: 0.98rem;
  }

  .browser-stack {
    min-height: 0;
  }

  .browser-window-back,
  .browser-window-mid {
    display: none;
  }

  .browser-window-front {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 420px);
    margin: 0 auto;
    transform: none;
  }

  .browser-page {
    min-height: 0;
  }

  .fake-fpl-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 12px;
  }

  .fake-fpl-grid span:nth-child(n + 9) {
    display: none;
  }

  .phone-shell.compare-phone {
    width: min(220px, 72%);
  }

  .compare-phone .app-screenshot {
    height: min(340px, 70vw);
  }

  .journey {
    margin-top: 48px;
    margin-bottom: 60px;
  }

  .journey-steps::before {
    left: 24px;
  }

  .journey-step,
  .journey-step:nth-child(even) {
    min-height: auto;
    padding: 18px;
  }

  .journey-steps.is-enhanced .journey-step,
  .journey-steps.is-enhanced .journey-step:nth-child(even) {
    transform: translateY(28px);
  }

  .journey-step:nth-child(even) .journey-copy,
  .journey-step:nth-child(even) .journey-visual,
  .journey-step-demo:nth-child(even) .journey-copy,
  .journey-step-demo:nth-child(even) .journey-visual {
    order: initial;
  }

  .journey-visual {
    width: min(100%, 280px);
    height: 168px;
    margin-top: 4px;
  }

  .journey-visual-demo {
    width: 100%;
    height: auto;
  }

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

  .phone-shell {
    width: min(340px, 100%);
  }

  .download-panel img {
    max-width: 140px;
  }
}

@media (max-width: 520px) {
  .site-header-inner,
  .hero,
  .legal-page {
    padding-inline: 18px;
  }

  .compare {
    width: min(var(--content-width), calc(100% - 36px));
  }

  .compare-panel {
    gap: 12px;
    padding: 14px;
  }

  .compare-panel figcaption strong {
    font-size: 0.95rem;
  }

  .browser-traffic {
    display: none;
  }

  .browser-chrome {
    gap: 0;
    padding: 6px 6px 0;
  }

  .browser-tab {
    padding: 6px 7px;
    font-size: 0.62rem;
  }

  .browser-toolbar {
    padding: 7px 10px;
    font-size: 0.64rem;
  }

  .fake-fpl-bar {
    padding: 10px 12px;
    font-size: 0.7rem;
  }

  .fake-fpl-note {
    padding: 0 12px 12px;
    font-size: 0.64rem;
  }

  .phone-shell.compare-phone {
    width: min(200px, 68%);
  }

  .compare-phone .app-screenshot {
    height: min(300px, 78vw);
  }

  .journey {
    width: min(var(--content-width), calc(100% - 36px));
  }

  .journey-step {
    padding: 16px;
  }

  .journey-step h3 {
    font-size: clamp(1.12rem, 6.4vw, 1.55rem);
  }

  .journey-visual {
    width: 100%;
    height: 170px;
  }

  .journey-visual-demo {
    height: auto;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.85rem);
  }

  .store-row .store-link {
    width: 100%;
  }

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

@keyframes delete-finger {
  0%,
  8% {
    opacity: 0;
    transform: translate(-18px, 18px) scale(0.96);
  }

  14%,
  34% {
    opacity: 1;
    transform: translate(0, 0) scale(0.9);
  }

  46%,
  62% {
    opacity: 1;
    transform: translate(72px, 8px) scale(0.9);
  }

  74%,
  100% {
    opacity: 0;
    transform: translate(86px, 4px) scale(0.96);
  }
}

@keyframes delete-menu {
  0%,
  18% {
    opacity: 0;
    transform: scale(0.94) translateY(8px);
  }

  26%,
  62% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(0.96) translateY(4px);
  }
}

@keyframes old-app-delete {
  0%,
  56% {
    opacity: 1;
  }

  72%,
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes app-jiggle {
  0%,
  20%,
  72%,
  100% {
    transform: rotate(0);
  }

  23%,
  35%,
  47%,
  59% {
    transform: rotate(-1.6deg);
  }

  29%,
  41%,
  53%,
  65% {
    transform: rotate(1.6deg);
  }
}

@keyframes delete-badge {
  0%,
  20%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }

  26%,
  66% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes grid-shift-left {
  0%,
  68% {
    transform: translateX(0);
  }

  82%,
  100% {
    transform: translateX(calc(-100% - 12px));
  }
}

@keyframes new-app-slide {
  0%,
  68% {
    transform: translateX(0);
  }

  82%,
  100% {
    transform: translateX(calc(-100% - 12px)) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-step,
  .journey-visual,
  .delete-app-old,
  .delete-app-new,
  .delete-menu,
  .delete-finger,
  .theme-toggle-thumb,
  .site-header {
    animation: none;
    transition-duration: 0.01ms;
  }

  .journey-steps.is-enhanced .journey-step,
  .journey-visual,
  .journey-step:nth-child(even) .journey-visual {
    opacity: 1;
    transform: none;
  }

  .delete-app-old {
    opacity: 0;
  }

  .delete-menu,
  .delete-finger {
    display: none;
  }
}
