/* Design tokens */
:root {
  --white: #FFFFFF;
  --background: #F9F9F9;
  --surface: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #444748;
  --text-tertiary: #A1A1A1;
  --blue: #007AFF;
  --green: #34C759;
  --purple: #AF52DE;
  --red: #FF3B30;
  --amber: #FF9500;
  --dark: #1A1A1A;
  --shadow: 0px 4px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0px 8px 32px rgba(0,0,0,0.10);
  --radius-card: 16px;
  --radius-pill: 9999px;
  --radius-badge: 9999px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --selection-color: #CC7C5E;
  --selection-gradient: linear-gradient(90deg, #FF3B30 0%, #FF9500 20%, #34C759 44%, #007AFF 68%, #AF52DE 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(0, 122, 255, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
}

::selection {
  background-color: var(--selection-color);
  background-image: var(--selection-gradient);
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.18);
}

::-moz-selection {
  background-color: var(--selection-color);
  background-image: var(--selection-gradient);
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.18);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 900px;
}

.container--thin {
  max-width: 800px;
}

.page-section {
  padding: 120px 0;
}

.section-white {
  background: var(--white);
}

.section-muted {
  background: var(--background);
}

.text-center {
  text-align: center;
}

.headline-xl,
.headline-lg,
.headline-md,
.headline-sm {
  margin: 0;
  color: var(--text-primary);
}

.headline-xl {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.headline-lg {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.headline-md {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.headline-sm {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.body-lg {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.body-md {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.small-caps {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.accent-blue {
  color: var(--blue);
}

.accent-green {
  color: var(--green);
}

.accent-purple {
  color: var(--purple);
}

.accent-red {
  color: var(--red);
}

.accent-amber {
  color: var(--amber);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 196px;
}

.nav-brand__row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.nav-beta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-pill);
  color: var(--dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.nav-sub {
  display: block;
  margin-top: 3px;
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

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

.nav-link {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 148px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
}

.mobile-menu__close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu__links {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu__links a {
  color: var(--text-primary);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.mobile-menu__bottom {
  padding: 0 24px 40px;
}

.mobile-menu__bottom .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Buttons */
.btn-primary,
.btn-ghost,
.btn-store,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
}

.btn-primary:hover {
  background: #333333;
  transform: translateY(-1px);
}

.btn-primary--full {
  width: 100%;
}

.btn-ghost {
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  border-radius: var(--radius-pill);
}

.btn-ghost:hover {
  color: var(--text-secondary);
}

.btn-ghost--light {
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--white);
}

.btn-ghost--light:hover {
  color: rgba(255,255,255,0.76);
}

.btn-white {
  padding: 14px 28px;
  background: var(--white);
  color: var(--text-primary);
  border-radius: var(--radius-pill);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.btn-store {
  padding: 12px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  font-size: 14px;
}

.apple-logo {
  display: block;
  width: 14px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.apple-logo--store {
  width: 16px;
  height: 19px;
}

.btn-white .apple-logo {
  filter: brightness(0);
}

/* Badges and cards */
.icon-badge {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-badge .material-symbols-outlined {
  font-size: 24px;
}

.icon-badge--blue {
  background: rgba(0,122,255,0.12);
  color: var(--blue);
}

.icon-badge--green {
  background: rgba(52,199,89,0.12);
  color: var(--green);
}

.icon-badge--purple {
  background: rgba(175,82,222,0.12);
  color: var(--purple);
}

.icon-badge--red {
  background: rgba(255,59,48,0.12);
  color: var(--red);
}

.icon-badge--amber {
  background: rgba(255,149,0,0.12);
  color: var(--amber);
}

.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.feature-card {
  padding: 32px;
  text-align: left;
}

.feature-card h3,
.problem-card h3 {
  margin: 16px 0 8px;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.feature-card p,
.problem-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Hero */
.hero {
  background: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 80px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  padding: 8px 16px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.hero-badge .material-symbols-outlined {
  font-size: 14px;
}

.hero-copy .body-lg {
  max-width: 480px;
  margin-top: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.5;
}

.hero-media,
.showcase-media,
.ai-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

/* Home: breathing gradient belt */
.gradient-belt {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  isolation: isolate;
}

.gradient-belt::before,
.gradient-belt::after {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background:
    radial-gradient(ellipse at 18% 54%, rgba(0,122,255,0.24) 0%, rgba(0,122,255,0.08) 28%, transparent 56%),
    radial-gradient(ellipse at 44% 46%, rgba(175,82,222,0.30) 0%, rgba(175,82,222,0.10) 32%, transparent 62%),
    radial-gradient(ellipse at 72% 56%, rgba(255,149,0,0.24) 0%, rgba(255,149,0,0.10) 30%, transparent 58%),
    radial-gradient(ellipse at 86% 38%, rgba(52,199,89,0.18) 0%, rgba(52,199,89,0.08) 28%, transparent 54%);
  filter: blur(32px) saturate(1.14);
  opacity: 0.88;
  transform: translate3d(0,0,0) scale(1);
  animation: beltCloudDrift 14s ease-in-out infinite alternate;
}

.gradient-belt::after {
  inset: -75% -35%;
  background:
    linear-gradient(100deg, transparent 10%, rgba(255,255,255,0.52) 34%, transparent 56%),
    radial-gradient(ellipse at 24% 62%, rgba(255,59,48,0.14) 0%, transparent 48%),
    radial-gradient(ellipse at 62% 44%, rgba(0,122,255,0.18) 0%, transparent 56%),
    radial-gradient(ellipse at 82% 60%, rgba(175,82,222,0.20) 0%, transparent 52%);
  filter: blur(42px) saturate(1.2);
  mix-blend-mode: multiply;
  opacity: 0.64;
  animation: beltCloudPulse 18s ease-in-out infinite alternate;
}

.gradient-belt__cloud {
  position: absolute;
  z-index: 1;
  width: 48vw;
  min-width: 420px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.58), rgba(255,255,255,0));
  filter: blur(28px);
  opacity: 0.62;
  transform: rotate(-4deg);
  animation: beltWave 12s ease-in-out infinite alternate;
}

.gradient-belt__cloud--one {
  left: -10%;
  top: 36px;
}

.gradient-belt__cloud--two {
  right: -14%;
  top: 92px;
  animation-delay: -4s;
}

.gradient-belt__cloud--three {
  left: 28%;
  bottom: -42px;
  width: 58vw;
  opacity: 0.46;
  animation-delay: -8s;
}

.gradient-belt__stats {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.gradient-stat {
  text-align: center;
}

.gradient-stat__number {
  display: block;
  color: #07111F;
  font-size: clamp(44px, 6.8vw, 82px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-shadow: 0 12px 42px rgba(255,255,255,0.52);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.gradient-stat__number.is-counting {
  filter: blur(0.2px);
  transform: translateY(-1px);
}

.gradient-stat span {
  display: block;
  max-width: 190px;
  margin: 16px auto 0;
  color: rgba(26,26,26,0.62);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

@keyframes beltCloudDrift {
  0% {
    transform: translate3d(-2%, -4%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 2%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-1%, 5%, 0) scale(1.02);
  }
}

@keyframes beltCloudPulse {
  0% {
    transform: translate3d(3%, 3%, 0) scale(1.02);
    opacity: 0.52;
  }
  100% {
    transform: translate3d(-3%, -2%, 0) scale(1.12);
    opacity: 0.78;
  }
}

@keyframes beltWave {
  0% {
    transform: translateX(-3%) rotate(-4deg) scaleX(1);
  }
  100% {
    transform: translateX(4%) rotate(-2deg) scaleX(1.12);
  }
}

/* iPhone mockups */
.phone-mockup {
  position: relative;
  display: flex;
  width: 280px;
  height: 560px;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 8px solid var(--dark);
  border-radius: 40px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.16);
}

.phone-mockup--float {
  animation: float 4s ease-in-out infinite;
}

.phone-mockup--dark {
  border-color: #333333;
  box-shadow: 0 28px 70px rgba(0,0,0,0.36);
}

.phone-screen {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 28px;
  color: var(--text-tertiary);
  text-align: center;
}

.phone-screen--image {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--white);
  border-radius: 30px;
  scrollbar-width: none;
}

.phone-screen--image::-webkit-scrollbar {
  width: 0;
}

.phone-screen__image {
  width: 100%;
  min-height: 100%;
  height: auto;
}

.phone-screen__icon {
  color: var(--text-primary);
  font-size: 56px;
}

.phone-screen__label {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 600;
}

.phone-mockup--dark .phone-screen__icon,
.phone-mockup--dark .phone-screen__label {
  color: var(--white);
}

.mockup-review {
  width: min(280px, 86vw);
  margin: 0;
  color: var(--text-primary);
  text-align: center;
}

.mockup-review blockquote {
  margin: 0;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
}

.mockup-review figcaption {
  margin-top: 8px;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.mockup-review--dark {
  color: var(--white);
}

.mockup-review--dark figcaption {
  color: rgba(255,255,255,0.56);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Home: problem */
.problem-section {
  background: var(--background);
  text-align: center;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading .body-lg {
  max-width: 600px;
  margin: 20px auto 0;
}

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

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Home: showcase */
.showcase-section {
  background: var(--white);
}

.showcase-row {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.showcase-row:first-child {
  padding-top: 0;
}

.showcase-row:last-child {
  padding-bottom: 0;
}

.showcase-row--reverse {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.showcase-copy .body-lg {
  margin: 24px 0;
  max-width: 520px;
}

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

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
}

.bullet-dot--blue {
  background: var(--blue);
}

.bullet-dot--green {
  background: var(--green);
}

.bullet-dot--purple {
  background: var(--purple);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
  opacity: 0.78;
  transform: translateX(2px);
}

/* Home: AI */
.ai-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.ai-section .headline-lg {
  color: var(--white);
  font-size: 56px;
}

.ai-section .body-lg {
  max-width: 520px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.78);
}

.ai-badge {
  margin: 0 auto 24px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 20px;
  background: #2A2A2A;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.ai-phone-wrap {
  margin-top: 64px;
}

.ai-section .btn-ghost {
  margin-top: 40px;
}

/* Home: feature grid */
.feature-grid {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  text-align: left;
}

.testimonial-quote {
  margin: 0 0 24px;
  color: var(--text-primary);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-name {
  margin: 0;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.testimonial-location {
  margin: 2px 0 0;
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.4;
}

/* Pricing */
.pricing-preview .section-heading {
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  max-width: 720px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-grid--large {
  max-width: 920px;
}

.pricing-card {
  position: relative;
  padding: 32px;
  text-align: left;
}

.pricing-card--highlight {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-hover);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 16px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-card__sub {
  margin: 6px 0 24px;
  color: var(--text-tertiary);
  font-size: 14px;
}

.pricing-card__sub--tight {
  margin-bottom: 8px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.price__amount {
  color: var(--text-primary);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price__period {
  color: var(--text-tertiary);
  font-size: 18px;
}

.save-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(52,199,89,0.1);
  color: var(--green);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.pricing-divider {
  height: 1px;
  margin: 24px 0;
  background: #F0F0F0;
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-features .check,
.pricing-features .cross,
.comparison-table .check,
.comparison-table .cross {
  display: inline-flex;
  width: 18px;
  flex: 0 0 18px;
  justify-content: center;
  font-weight: 800;
}

.check {
  color: var(--green);
}

.cross {
  color: var(--red);
  font-size: 18px;
  line-height: 1.1;
}

.pricing-card .btn-primary {
  margin-top: 32px;
}

.pricing-card__fineprint {
  margin: 12px 0 0;
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.pricing-preview__link,
.pricing-page__link {
  margin-top: 32px;
  color: var(--blue);
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 40px auto 56px;
  padding: 6px;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

.pricing-toggle__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  background: #F3F3F3;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
}

.pricing-toggle__button.active {
  background: var(--dark);
  color: var(--white);
}

.pricing-toggle__save {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  background: rgba(52,199,89,0.14);
  color: var(--green);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
}

.comparison {
  background: var(--background);
  padding: 80px 0 120px;
}

.comparison-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
}

.comparison-table th {
  color: var(--text-primary);
  font-weight: 800;
}

.comparison-table th:nth-child(3) {
  background: var(--blue);
  color: var(--white);
}

.comparison-table tr:nth-child(even) td {
  background: var(--background);
}

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #F0F0F0;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-question .material-symbols-outlined {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* Feature pages */
.page-hero {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.page-hero .body-lg {
  max-width: 600px;
  margin: 24px auto 0;
}

.split-hero {
  background: var(--white);
  padding: 100px 0 120px;
}

.split-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 80px;
  align-items: center;
}

.split-hero .body-lg {
  max-width: 560px;
  margin-top: 24px;
}

.feature-category {
  padding: 100px 0;
}

.feature-category__intro {
  max-width: 900px;
  margin: 0 auto 64px;
}

.feature-category__title {
  margin: 0 0 8px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.feature-category__sub {
  margin: 0;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.5;
}

.feature-list {
  max-width: 900px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row h3,
.detail-feature h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-row p,
.detail-feature p {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.detail-feature {
  padding: 88px 0;
}

.detail-feature__inner {
  max-width: 800px;
  margin: 0 auto;
}

.detail-feature .icon-badge {
  margin-bottom: 20px;
}

.tinted-cta {
  padding: 96px 0;
  text-align: center;
}

.tinted-cta--blue {
  background: #F0F8FF;
}

.tinted-cta--green {
  background: #F0FFF4;
}

.tinted-cta--purple {
  background: #FAF0FF;
}

.tinted-cta .btn-primary {
  margin-top: 32px;
}

.tinted-cta__note {
  margin: 16px 0 0;
  color: var(--text-tertiary);
  font-size: 13px;
}

/* CTA and footer */
.dark-cta {
  background: var(--dark);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.dark-cta .headline-lg {
  color: var(--white);
  font-size: 56px;
}

.dark-cta .body-lg {
  margin-top: 16px;
  color: rgba(255,255,255,0.78);
}

.dark-cta .btn-white {
  margin-top: 40px;
}

.dark-cta__note {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid #F0F0F0;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr minmax(220px, 1fr);
  gap: 56px;
}

.footer-brand__logo {
  margin: 0;
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.footer-brand__sub,
.footer-brand__tagline,
.footer-store__note {
  margin: 8px 0 0;
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.5;
}

.footer-brand__tagline {
  margin-top: 4px;
  font-size: 13px;
  font-style: italic;
}

.footer-brand__url {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a,
.footer-links span {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 2;
}

.footer-links a {
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-store {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #F0F0F0;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.5;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.card.reveal.in-view:hover {
  transform: translateY(-2px);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .split-hero__grid,
  .showcase-row,
  .showcase-row--reverse {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy,
  .split-hero__copy {
    max-width: none;
    text-align: center;
  }

  .hero-copy .body-lg,
  .split-hero .body-lg {
    margin-right: auto;
    margin-left: auto;
  }

  .button-row {
    justify-content: center;
  }

  .showcase-copy {
    order: -1;
    text-align: center;
  }

  .showcase-copy .body-lg {
    margin-right: auto;
    margin-left: auto;
  }

  .bullet-list {
    display: inline-grid;
    text-align: left;
  }

  .problem-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .page-section,
  .hero,
  .dark-cta {
    padding: 80px 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .headline-xl {
    font-size: 40px;
  }

  .headline-lg,
  .ai-section .headline-lg,
  .dark-cta .headline-lg {
    font-size: 32px;
  }

  .headline-md {
    font-size: 28px;
  }

  .body-lg {
    font-size: 17px;
  }

  .hero-grid,
  .split-hero__grid {
    gap: 48px;
  }

  .hero-badge {
    margin-bottom: 28px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn-primary,
  .button-row .btn-ghost,
  .tinted-cta .btn-primary,
  .dark-cta .btn-white {
    width: 100%;
  }

  .phone-mockup {
    width: min(280px, 86vw);
    height: min(560px, 172vw);
  }

  .gradient-belt {
    height: 360px;
  }

  .gradient-belt::before {
    inset: -72% -42%;
  }

  .gradient-belt::after {
    inset: -82% -56%;
  }

  .gradient-belt__cloud {
    min-width: 340px;
    height: 140px;
    filter: blur(24px);
  }

  .gradient-belt__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
    align-content: center;
  }

  .gradient-stat__number {
    font-size: 48px;
  }

  .gradient-stat span {
    max-width: 150px;
    margin-top: 10px;
    font-size: 13px;
  }
  .showcase-row {
    padding: 64px 0;
  }

  .pricing-grid,
  .pricing-grid--large {
    grid-template-columns: 1fr;
  }

  .pricing-toggle {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
  }

  .pricing-toggle__button {
    flex: 1;
    justify-content: center;
    padding-right: 12px;
    padding-left: 12px;
  }

  .page-hero,
  .split-hero,
  .feature-category,
  .detail-feature,
  .tinted-cta {
    padding: 80px 0;
  }

  .feature-category__title {
    font-size: 32px;
  }

  .feature-category__sub {
    font-size: 18px;
  }

  .feature-row {
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-shell,
  .mobile-menu__top,
  .mobile-menu__bottom {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-section,
  .hero,
  .dark-cta,
  .page-hero,
  .split-hero,
  .feature-category,
  .detail-feature,
  .tinted-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 24px;
  }

  .price__amount {
    font-size: 46px;
  }

  .gradient-belt {
    height: 390px;
  }

  .gradient-belt__cloud {
    min-width: 280px;
    height: 118px;
  }

  .gradient-belt__cloud--one {
    left: -28%;
  }

  .gradient-belt__cloud--two {
    right: -34%;
  }

  .gradient-belt__cloud--three {
    left: 12%;
  }

  .gradient-belt__stats {
    gap: 30px 14px;
  }

  .gradient-stat__number {
    font-size: 40px;
  }

  .gradient-stat span {
    max-width: 132px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}
