:root {
  /* Brand — app logo palette (purple · magenta · yellow accent) */
  --brand-purple: #6b4de6;
  --brand-purple-dark: #5a3fd4;
  --brand-purple-light: #8557f5;
  --brand-magenta: #d946c8;
  --brand-magenta-light: #e85ab8;
  --brand-yellow: #ffc42e;
  --primary-rgb: 107, 77, 230;
  --magenta-rgb: 217, 70, 200;

  /* Color tokens */
  --surface: #f8f9ff;
  --surface-dim: #cbdbf5;
  --surface-bright: #f8f9ff;
  --surface-lowest: #ffffff;
  --surface-low: #eff4ff;
  --surface-container: #e5eeff;
  --surface-high: #dce9ff;
  --surface-highest: #d3e4fe;
  --on-surface: #0b1c30;
  --on-surface-variant: #5c403a;
  --inverse-surface: #213145;
  --inverse-on-surface: #eaf1ff;
  --outline: #906f68;
  --outline-variant: #e5beb5;
  --surface-tint: var(--brand-purple);
  --primary: var(--brand-purple);
  --on-primary: #ffffff;
  --primary-container: var(--brand-purple-light);
  --on-primary-container: #fffbff;
  --secondary: #565e74;
  --on-secondary: #ffffff;
  --secondary-container: #dae2fd;
  --on-secondary-container: #5c647a;
  --tertiary: #0058be;
  --on-tertiary: #ffffff;
  --tertiary-container: #2170e4;
  --on-tertiary-container: #fefcff;

  --background: #f8f9ff;

  /* Typography */
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  --display-lg: 700 36px/44px var(--font);
  --display-md: 700 30px/38px var(--font);
  --headline-lg: 600 24px/32px var(--font);
  --headline-md: 600 20px/28px var(--font);
  --body-lg: 400 18px/28px var(--font);
  --body-md: 400 16px/24px var(--font);
  --label-lg: 600 14px/20px var(--font);
  --label-md: 500 12px/16px var(--font);

  /* Spacing (8pt rhythm, 4px base) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;

  /* Radii */
  --r-sm: 0.25rem;
  --r: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-full: 9999px;

  /* Layout */
  --container: 1200px;

  /* Shadows (ambient tonal layers) */
  --shadow-1: 0px 4px 20px rgba(15, 23, 42, 0.05);
  --shadow-2: 0px 8px 24px rgba(15, 23, 42, 0.08);

  /* Theme surfaces */
  --text-muted: rgba(11, 28, 48, 0.72);
  --border-soft: rgba(144, 111, 104, 0.14);
  --header-bg: rgba(255, 255, 255, 0.7);
  --card-bg: rgba(255, 255, 255, 0.86);
  --panel-bg: rgba(255, 255, 255, 0.92);
  --chip-bg: rgba(255, 255, 255, 0.72);
  --input-bg: rgba(255, 255, 255, 0.92);
  --footer-bg: rgba(255, 255, 255, 0.6);
  --nav-menu-bg: rgba(255, 255, 255, 0.96);
  --theme-toggle-bg: rgba(255, 255, 255, 0.92);
  --body-grad-1: rgba(var(--primary-rgb), 0.04);
  --body-grad-2: rgba(33, 112, 228, 0.04);
  --theme-color: #6b4de6;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --background: #0b1020;
  --surface: #0b1020;
  --surface-bright: #12182a;
  --surface-lowest: #151b2e;
  --surface-low: #171e33;
  --surface-container: #1c243b;
  --surface-high: #232c46;
  --surface-highest: #2a3452;
  --on-surface: #e8eefc;
  --on-surface-variant: #b8c0d6;
  --inverse-surface: #e8eefc;
  --inverse-on-surface: #12182a;
  --secondary: #a8b0c6;
  --secondary-container: #2a3452;
  --on-secondary-container: #d5dbeb;
  --text-muted: rgba(232, 238, 252, 0.72);
  --border-soft: rgba(168, 176, 214, 0.16);
  --header-bg: rgba(11, 16, 32, 0.82);
  --card-bg: rgba(22, 28, 48, 0.92);
  --panel-bg: rgba(22, 28, 48, 0.96);
  --chip-bg: rgba(30, 38, 62, 0.9);
  --input-bg: rgba(18, 24, 42, 0.95);
  --footer-bg: rgba(11, 16, 32, 0.85);
  --nav-menu-bg: rgba(18, 24, 42, 0.98);
  --theme-toggle-bg: rgba(30, 38, 62, 0.95);
  --body-grad-1: rgba(var(--primary-rgb), 0.14);
  --body-grad-2: rgba(var(--magenta-rgb), 0.1);
  --shadow-1: 0px 4px 20px rgba(0, 0, 0, 0.28);
  --shadow-2: 0px 10px 28px rgba(0, 0, 0, 0.38);
  --theme-color: #1a1430;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: radial-gradient(1200px 600px at 10% 10%, var(--body-grad-1), transparent 55%),
    radial-gradient(900px 500px at 85% 20%, var(--body-grad-2), transparent 50%),
    var(--background);
  color: var(--on-surface);
  font-family: var(--font);
  transition: background-color 0.25s ease, color 0.25s ease;
}
body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: var(--s-4);
  background: var(--inverse-surface);
  color: var(--inverse-on-surface);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r);
  z-index: 9999;
}
.skip-link:focus {
  left: var(--s-4);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(var(--s-4), env(safe-area-inset-left, 0px));
  padding-right: max(var(--s-4), env(safe-area-inset-right, 0px));
}

.nowrap {
  white-space: nowrap;
}

.subtle {
  color: var(--text-muted);
}

.display-lg {
  font: var(--display-lg);
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-4);
}

.display-md {
  font: var(--display-md);
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
}

.headline-lg {
  font: var(--headline-lg);
  margin: 0 0 var(--s-3);
}

.headline-md {
  font: var(--headline-md);
  margin: 0 0 var(--s-2);
}

.body-lg {
  font: var(--body-lg);
  margin: 0;
}

.body-md {
  font: var(--body-md);
  margin: 0;
}

.mt-md {
  margin-top: var(--s-4);
}
.mt-lg {
  margin-top: var(--s-8);
}
.center {
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.site-header .brand {
  gap: 12px;
  font: 700 17px/24px var(--font);
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: var(--label-lg);
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}
.brand-logo--sm {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 3px 10px rgba(var(--primary-rgb), 0.16);
}
.brand-name {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  position: relative;
  flex: 1;
  min-width: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.nav-link {
  font: var(--label-lg);
  color: var(--text-muted);
  position: relative;
  padding: var(--s-2) 2px;
}
.nav-link:hover {
  color: var(--on-surface);
}
.nav-link.is-active {
  color: var(--primary);
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: var(--r-full);
  background: var(--primary);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  border: 1px solid var(--border-soft);
  background: var(--theme-toggle-bg);
  box-shadow: var(--shadow-1);
  color: var(--on-surface);
}
.nav-toggle-bars {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars {
  background: transparent;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: var(--r-full);
  background: var(--on-surface);
}
.nav-toggle-bars::before {
  top: 0;
}
.nav-toggle-bars::after {
  bottom: 0;
}

/* Buttons */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--r);
  border: 1px solid var(--border-soft);
  background: var(--theme-toggle-bg);
  box-shadow: var(--shadow-1);
  color: var(--on-surface);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.theme-toggle:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
}
.theme-toggle:active {
  transform: translateY(1px);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
.theme-toggle .theme-toggle__sun {
  display: none;
}
.theme-toggle .theme-toggle__moon {
  display: block;
}
html[data-theme="dark"] .theme-toggle .theme-toggle__sun {
  display: block;
}
html[data-theme="dark"] .theme-toggle .theme-toggle__moon {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  border-radius: var(--r);
  padding: 12px 16px;
  font: var(--label-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn-sm {
  padding: 10px 14px;
}
.btn-primary {
  color: var(--on-primary);
  background: linear-gradient(180deg, var(--brand-purple-light), var(--brand-purple));
  box-shadow: 0px 10px 22px rgba(var(--primary-rgb), 0.22);
}
.btn-primary:hover {
  box-shadow: 0px 14px 26px rgba(var(--primary-rgb), 0.28);
}
.btn-tertiary {
  color: var(--on-tertiary);
  background: linear-gradient(180deg, #2170e4, #0058be);
  box-shadow: 0px 12px 22px rgba(0, 88, 190, 0.14);
}

/* Chips / tags */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(144, 111, 104, 0.14);
  background: rgba(255, 255, 255, 0.85);
  font: var(--label-md);
  letter-spacing: 0.04em;
  color: rgba(11, 28, 48, 0.75);
}
.chip-hot {
  border-color: rgba(var(--primary-rgb), 0.22);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.03));
  color: rgba(11, 28, 48, 0.8);
}
.chip-active {
  border-color: rgba(var(--primary-rgb), 0.28);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.14), rgba(var(--primary-rgb), 0.05));
  color: var(--brand-purple-dark);
  letter-spacing: 0.02em;
  font-weight: 700;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
}
.dot-hot {
  background: radial-gradient(circle at 30% 30%, #d4c4ff, var(--primary));
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.14);
}

/* Sections */
.section {
  padding: 72px 0;
}
.section-muted {
  background: linear-gradient(180deg, rgba(239, 244, 255, 0.35), rgba(255, 255, 255, 0.12));
  border-top: 1px solid rgba(144, 111, 104, 0.08);
  border-bottom: 1px solid rgba(144, 111, 104, 0.08);
}
.section-head {
  margin-bottom: var(--s-10);
}
.section-head.center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 360px at 12% 18%, rgba(var(--primary-rgb), 0.09), transparent 62%),
    radial-gradient(560px 420px at 88% 12%, rgba(var(--magenta-rgb), 0.1), transparent 58%),
    radial-gradient(480px 320px at 72% 88%, rgba(var(--primary-rgb), 0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  margin: 0 0 14px;
  font: 600 12px/1 var(--font);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.92);
}
.hero-title {
  margin: 0;
  letter-spacing: -0.03em;
}
.hero-gradient {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  margin-top: 18px;
}
.hero-copy .body-lg {
  max-width: 520px;
}
.hero-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  font: var(--label-md);
  color: rgba(11, 28, 48, 0.78);
}
.hero-point__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.14), rgba(255, 255, 255, 0.9));
  color: var(--brand-purple);
}
.hero-point__icon svg {
  width: 12px;
  height: 12px;
  display: block;
}
.hero-actions {
  margin-top: var(--s-8);
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 11px 16px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #12243a 0%, #0b1c30 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(11, 28, 48, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 186px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 28, 48, 0.22);
}
.store-badge--soon {
  opacity: 0.92;
  cursor: pointer;
}
.store-badge--soon:hover {
  transform: none;
}
.store-badge--light {
  background: rgba(255, 255, 255, 0.92);
  color: #0b1c30;
  border-color: rgba(144, 111, 104, 0.16);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.store-badge--light:hover {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}
.store-badge__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  opacity: 0.95;
}
.store-badge__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.store-badge__small {
  display: block;
  font: var(--label-md);
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.store-badge__big {
  display: block;
  font: var(--label-lg);
  letter-spacing: -0.01em;
}

.stats {
  margin-top: var(--s-8);
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.stat-value {
  font: var(--headline-lg);
  color: var(--primary);
}
.stat-label {
  font: var(--label-md);
  letter-spacing: 0.04em;
  color: rgba(11, 28, 48, 0.7);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  padding: 12px 0 8px;
}
.hero-visual__mesh {
  position: absolute;
  inset: 4% 0;
  border-radius: 28px;
  background:
    linear-gradient(rgba(var(--primary-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.hero-visual__stage {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  min-height: 500px;
  margin: 0 auto;
  overflow: visible;
}
.hero-visual__phones {
  position: relative;
  width: 100%;
  min-height: 500px;
  animation: hero-phones-float 6s ease-in-out infinite;
}
.phone-device {
  position: absolute;
  width: 76%;
  max-width: 268px;
}
.phone-device__shell {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border-radius: 36px;
  background: linear-gradient(160deg, #3a3a40 0%, #18181c 42%, #0d0d10 100%);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.phone-device__shell .hero-shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: contain;
  object-position: center center;
  border-radius: 27px;
  background: #0d0d10;
}
.phone-device__island {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 21px;
  transform: translateX(-50%);
  border-radius: var(--r-full);
  background: #0d0d10;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-device__shine {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.04) 24%,
    transparent 42%
  );
  pointer-events: none;
}
.phone-device--back {
  top: 10%;
  right: -2%;
  z-index: 1;
  opacity: 0.72;
  transform: perspective(1100px) rotateY(-18deg) rotateX(4deg) scale(0.94);
  filter: saturate(0.92);
}
.phone-device--front {
  top: 4%;
  left: 2%;
  z-index: 2;
  transform: perspective(1100px) rotateY(-10deg) rotateX(3deg);
  transform-origin: center center;
}
@keyframes hero-phones-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual__phones {
    animation: none;
  }
}
.phone-stage {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(211, 228, 254, 0.55), rgba(255, 255, 255, 0.65));
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(144, 111, 104, 0.14);
  padding: 18px;
}
.phone-stage--device {
  max-width: 280px;
  margin: 0 auto;
  padding: 9px;
  border-radius: 32px;
  background: #fff;
  border-color: rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}
.phone-stage--device .hero-shot {
  border-radius: 24px;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
}
.hero-shot {
  border-radius: 20px;
  display: block;
  max-width: 100%;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--r-md);
  font: var(--label-md);
  letter-spacing: 0.04em;
}
.tag svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
.tag-discount {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.18), rgba(var(--primary-rgb), 0.08));
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  color: rgba(11, 28, 48, 0.86);
}
.tag-nearby {
  background: linear-gradient(180deg, rgba(33, 112, 228, 0.14), rgba(0, 88, 190, 0.06));
  border: 1px solid rgba(0, 88, 190, 0.18);
  color: rgba(11, 28, 48, 0.86);
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: var(--s-6);
}
.card:hover {
  box-shadow: var(--shadow-2);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  border: 1px solid rgba(144, 111, 104, 0.16);
  background: linear-gradient(180deg, rgba(218, 226, 253, 0.5), rgba(255, 255, 255, 0.75));
  color: rgba(11, 28, 48, 0.82);
}
.card-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.card-icon--hot {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.14), rgba(255, 255, 255, 0.75));
  border-color: rgba(var(--primary-rgb), 0.22);
  color: var(--brand-purple);
}
.card-icon--blue {
  background: linear-gradient(180deg, rgba(var(--magenta-rgb), 0.12), rgba(255, 255, 255, 0.75));
  border-color: rgba(var(--magenta-rgb), 0.22);
  color: var(--brand-magenta);
}
.card-icon--muted {
  background: linear-gradient(180deg, rgba(203, 219, 245, 0.42), rgba(255, 255, 255, 0.75));
  color: rgba(86, 94, 116, 0.95);
}
.card-icon--pink {
  background: linear-gradient(180deg, rgba(var(--magenta-rgb), 0.14), rgba(255, 255, 255, 0.75));
  border-color: rgba(var(--magenta-rgb), 0.28);
  color: var(--brand-magenta);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

/* Features showcase */
.section-features {
  position: relative;
  overflow: clip;
}
.section-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 280px at 8% 20%, rgba(var(--primary-rgb), 0.06), transparent 62%),
    radial-gradient(480px 320px at 92% 72%, rgba(var(--primary-rgb), 0.07), transparent 58%);
  pointer-events: none;
}
.features-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.features-showcase__tabs {
  display: grid;
  gap: 12px;
}
.features-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 16px 18px 16px 20px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(144, 111, 104, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}
.features-tab:hover {
  border-color: rgba(var(--primary-rgb), 0.18);
  transform: translateX(4px);
}
.features-tab.is-active {
  border-color: rgba(var(--primary-rgb), 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 255, 0.88));
  box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.08);
  transform: translateX(6px);
}
.features-tab__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(var(--primary-rgb), 0.1);
}
.features-tab__progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--brand-purple), var(--brand-magenta));
  border-radius: 0 2px 2px 0;
}
.features-tab.is-active .features-tab__progress::after {
  animation: feature-progress 6s linear forwards;
}
.features-tab__icon {
  width: 42px;
  height: 42px;
  margin-top: 2px;
}
.features-tab__icon svg {
  width: 20px;
  height: 20px;
}
.features-tab__content {
  display: grid;
  gap: 0;
  min-width: 0;
}
.features-tab__label {
  font: 600 17px/24px var(--font);
  letter-spacing: -0.01em;
  color: rgba(11, 28, 48, 0.88);
}
.features-tab__panel {
  display: grid;
  gap: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font: var(--body-md);
  color: rgba(11, 28, 48, 0.68);
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    margin-top 0.35s ease;
}
.features-tab.is-active .features-tab__panel {
  max-height: 160px;
  opacity: 1;
  margin-top: 8px;
}
.features-tab__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.features-showcase__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.features-showcase__mesh {
  position: absolute;
  inset: 6% 4%;
  border-radius: 28px;
  background:
    linear-gradient(rgba(var(--primary-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 48%, #000 38%, transparent 76%);
  pointer-events: none;
}
.features-showcase__glow {
  position: absolute;
  width: min(72%, 340px);
  aspect-ratio: 1;
  border-radius: var(--r-full);
  filter: blur(48px);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.features-showcase__glow.is-active {
  opacity: 1;
}
.features-showcase__glow--0 {
  background: rgba(var(--primary-rgb), 0.18);
  top: 18%;
  left: 12%;
}
.features-showcase__glow--1 {
  background: rgba(var(--magenta-rgb), 0.18);
  top: 22%;
  right: 8%;
}
.features-showcase__glow--2 {
  background: rgba(var(--primary-rgb), 0.16);
  bottom: 24%;
  left: 18%;
}
.features-showcase__glow--3 {
  background: rgba(229, 190, 181, 0.28);
  bottom: 18%;
  right: 14%;
}
.features-showcase__phone-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  animation: features-phone-float 5.5s ease-in-out infinite;
}
.features-phone {
  position: relative;
}
.features-phone__shell {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border-radius: 36px;
  background: linear-gradient(160deg, #3a3a40 0%, #18181c 42%, #0d0d10 100%);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.features-slides {
  position: relative;
  aspect-ratio: 390 / 844;
  border-radius: 27px;
  overflow: hidden;
  background: #0d0d10;
}
.features-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(18px) scale(0.97);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.features-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.features-slide.is-leaving {
  opacity: 0;
  transform: translateX(-18px) scale(0.97);
}
.features-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0d0d10;
}
.features-orbit {
  position: absolute;
  inset: -8% -14%;
  pointer-events: none;
  z-index: 2;
}
.features-orbit__chip {
  position: absolute;
  padding: 8px 12px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(144, 111, 104, 0.14);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  font: 600 12px/1 var(--font);
  color: rgba(11, 28, 48, 0.78);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.features-orbit__chip.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.features-orbit__chip--0:nth-of-type(1) {
  top: 8%;
  left: -4%;
  animation: features-chip-float 4.2s ease-in-out infinite;
}
.features-orbit__chip--0:nth-of-type(2) {
  bottom: 14%;
  right: -6%;
  animation: features-chip-float 4.8s ease-in-out infinite 0.4s;
}
.features-orbit__chip--1:nth-of-type(3) {
  top: 10%;
  right: -8%;
  animation: features-chip-float 4.5s ease-in-out infinite;
}
.features-orbit__chip--1:nth-of-type(4) {
  bottom: 18%;
  left: -8%;
  animation: features-chip-float 5s ease-in-out infinite 0.3s;
}
.features-orbit__chip--2:nth-of-type(5) {
  top: 6%;
  left: -2%;
  animation: features-chip-float 4.6s ease-in-out infinite;
}
.features-orbit__chip--2:nth-of-type(6) {
  bottom: 10%;
  right: -4%;
  animation: features-chip-float 4.3s ease-in-out infinite 0.5s;
}
.features-orbit__chip--3:nth-of-type(7) {
  top: 12%;
  right: -6%;
  animation: features-chip-float 4.7s ease-in-out infinite;
}
.features-orbit__chip--3:nth-of-type(8) {
  bottom: 16%;
  left: -6%;
  animation: features-chip-float 4.4s ease-in-out infinite 0.2s;
}
.features-showcase__caption {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  max-width: 320px;
  text-align: center;
  transition: opacity 0.35s ease;
}
.features-showcase__caption.is-changing {
  opacity: 0;
}
@keyframes feature-progress {
  to {
    height: 100%;
  }
}
@keyframes features-phone-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}
@keyframes features-chip-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .features-showcase__phone-wrap,
  .features-orbit__chip,
  .features-tab.is-active .features-tab__progress::after {
    animation: none;
  }
  .features-tab,
  .features-tab__panel,
  .features-slide,
  .features-showcase__glow,
  .features-orbit__chip {
    transition: none;
  }
}

.features-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-8);
  align-items: start;
}
.features-visual {
  position: sticky;
  top: 92px;
}
.features-visual__caption {
  margin-top: var(--s-4);
  text-align: center;
}
.card-feature {
  padding: var(--s-6);
}
.card-feature--span {
  grid-column: 1 / -1;
}
.card-feature__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-6);
  align-items: center;
}
.media {
  margin-top: var(--s-4);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(144, 111, 104, 0.14);
  background: rgba(211, 228, 254, 0.35);
}
.media--wide {
  aspect-ratio: 16 / 9;
}
.media--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media--tall {
  aspect-ratio: 4 / 3;
}
.media--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media--wide img {
  object-position: center;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.callout {
  margin-top: var(--s-4);
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(239, 244, 255, 0.8), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(144, 111, 104, 0.12);
  padding: var(--s-4);
}
.callout-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.14);
}
.callout-title {
  font: var(--label-lg);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  padding-top: 10px;
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step-number {
  position: absolute;
  top: -8px;
  left: 10px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: var(--r-full);
  background: var(--surface-highest);
  border: 1px solid rgba(144, 111, 104, 0.16);
  display: grid;
  place-items: center;
  font: 600 12px/1 var(--font);
  color: rgba(11, 28, 48, 0.78);
}
.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  border: 1px solid rgba(144, 111, 104, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-1);
  padding: 22px 14px 14px;
}
.step-card .headline-md {
  margin: 0 0 8px;
  font: 600 16px/22px var(--font);
  letter-spacing: -0.01em;
  min-height: 44px;
}
.step-card .body-md {
  margin: 0;
  font: 400 13px/19px var(--font);
}
.step-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  background: rgba(203, 219, 245, 0.55);
  border: 1px solid rgba(144, 111, 104, 0.12);
  margin: 6px 0 10px 4px;
  color: var(--brand-purple);
}
.step-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.step-highlight .step-card {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0px 8px 20px rgba(var(--primary-rgb), 0.08);
}

/* Community */
.section-community {
  position: relative;
  overflow: clip;
}
.section-community::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 300px at 12% 18%, rgba(var(--primary-rgb), 0.07), transparent 62%),
    radial-gradient(460px 280px at 88% 78%, rgba(var(--magenta-rgb), 0.06), transparent 58%);
  pointer-events: none;
}
.section-community .container {
  position: relative;
  z-index: 1;
}
.community-eyebrow {
  margin: 0 0 10px;
  font: 600 12px/1 var(--font);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.88);
}
.community-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: var(--s-10);
}
.community-stats {
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.community-stat {
  padding: 16px 14px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(144, 111, 104, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-1);
}
.community-stat__value {
  display: block;
  font: 700 24px/1 var(--font);
  letter-spacing: -0.02em;
  color: var(--brand-purple);
  margin-bottom: 6px;
}
.community-stat__label {
  display: block;
  font: var(--label-md);
  color: rgba(11, 28, 48, 0.62);
  line-height: 1.35;
}
.community-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.community-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font: var(--body-md);
  color: rgba(11, 28, 48, 0.72);
}
.community-points__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.14), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(var(--primary-rgb), 0.16);
  color: var(--brand-purple);
}
.community-points__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.community-showcase__visual {
  display: flex;
  justify-content: center;
}
.community-phone {
  width: min(100%, 260px);
}
.community-phone__shell {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border-radius: 36px;
  background: linear-gradient(160deg, #3a3a40 0%, #18181c 42%, #0d0d10 100%);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.2);
}
.community-phone__shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: contain;
  object-position: center center;
  background: #0d0d10;
  border-radius: 27px;
}
.community-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}
.community-pillar {
  padding: var(--s-6);
  display: grid;
  gap: 0;
}
.community-pillar__icon {
  margin-bottom: var(--s-3);
}
.community-pillar .headline-md {
  margin: 0 0 var(--s-2);
}
.community-pillar .body-md {
  margin: 0;
}
.community-guidelines {
  padding: var(--s-8);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(239, 244, 255, 0.72)
  );
}
.community-guidelines__head {
  margin-bottom: var(--s-6);
  max-width: 560px;
}
.community-guidelines__head .headline-lg {
  margin: 0 0 8px;
}
.community-guidelines__head .body-md {
  margin: 0;
}
.community-guidelines__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-4);
}
.community-guideline {
  padding: var(--s-5);
  border-radius: var(--r-lg);
  border: 1px solid rgba(144, 111, 104, 0.12);
  background: rgba(255, 255, 255, 0.8);
}
.community-guideline__num {
  display: block;
  font: 700 13px/1 var(--font);
  letter-spacing: 0.08em;
  color: rgba(var(--primary-rgb), 0.55);
  margin-bottom: 10px;
}
.community-guideline__title {
  margin: 0 0 8px;
  font: 600 16px/22px var(--font);
  letter-spacing: -0.01em;
  color: rgba(11, 28, 48, 0.88);
}
.community-guideline .body-md {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

/* Plans */
.section-plans {
  position: relative;
}
.plans-eyebrow {
  margin: 0 0 10px;
  font: 600 12px/1 var(--font);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.88);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-6);
  max-width: 880px;
  margin: 0 auto;
}
.plan-card {
  position: relative;
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.plan-card--featured {
  border-color: rgba(var(--primary-rgb), 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 255, 0.88));
  box-shadow: 0 14px 36px rgba(var(--primary-rgb), 0.1);
}
.plan-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-magenta));
  color: #fff;
  font: 600 11px/1 var(--font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-card__head .headline-md {
  margin: 0 0 6px;
}
.plan-card__price {
  margin: 0 0 8px;
  font: 700 32px/1 var(--font);
  letter-spacing: -0.03em;
  color: var(--brand-purple);
}
.plan-card__price--muted {
  font-size: 22px;
  color: rgba(11, 28, 48, 0.72);
}
.plan-card__head .body-md {
  margin: 0;
}
.plan-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
}
.plan-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font: var(--body-md);
  color: var(--text-muted);
}
.plan-card__list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background-color: var(--brand-purple);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.plan-card__cta {
  width: 100%;
  justify-content: center;
}
.plan-card__note {
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--border-soft);
}
.plans-disclaimer {
  max-width: 720px;
  margin: var(--s-8) auto 0;
  text-align: center;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.faq {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  background: var(--panel-bg);
  box-shadow: var(--shadow-1);
  cursor: pointer;
  font: var(--label-lg);
  color: var(--on-surface);
  transition: box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.faq:hover {
  box-shadow: var(--shadow-2);
}
.faq[aria-expanded="true"] {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: var(--panel-bg);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq .chev {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
.faq[aria-expanded="true"] .chev {
  transform: rotate(-135deg);
}
.faq-panel {
  grid-column: span 1;
  margin-top: 0;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  border: 1px solid var(--border-soft);
  border-top: 0;
  background: var(--panel-bg);
  box-shadow: var(--shadow-1);
  padding: 0 22px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-panel.is-open {
  padding: 12px 22px 18px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-6);
  align-items: stretch;
}
.contact-side {
  display: grid;
  gap: var(--s-6);
  height: 100%;
}
.contact-form-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form-card h3 {
  margin-bottom: var(--s-4);
}
.form {
  display: grid;
  gap: var(--s-4);
  flex: 1;
  align-content: start;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.field {
  display: grid;
  gap: var(--s-2);
}
.label {
  font: var(--label-md);
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
input,
select,
textarea {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--border-soft);
  background: var(--input-bg);
  color: var(--on-surface);
  padding: 12px 12px;
  outline: none;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(var(--primary-rgb), 0.7);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.14);
}
.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--r);
  font: var(--body-md);
}
.form-status--success {
  background: rgba(22, 163, 74, 0.14);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #86efac;
}
html:not([data-theme="dark"]) .form-status--success {
  color: #166534;
}
.form-status--error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
}
html:not([data-theme="dark"]) .form-status--error {
  color: #991b1b;
}
.form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.link {
  color: var(--brand-purple);
  font: var(--label-lg);
}
.link:hover {
  text-decoration: underline;
}
.socials {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-2);
}
.social {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  border: 1px solid var(--border-soft);
  background: rgba(var(--primary-rgb), 0.12);
  box-shadow: var(--shadow-1);
  color: var(--on-surface);
}
.social svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Footer */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  background: var(--footer-bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-4);
}
.brand--footer {
  gap: 12px;
  font: 700 17px/24px var(--font);
}
.brand--footer .brand-logo--sm {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
.footer-links {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  justify-content: center;
  font: var(--label-md);
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-meta {
  justify-self: end;
  font: var(--label-md);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 36px 0 48px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-visual {
    min-height: 0;
    padding: 0;
    margin-top: -4px;
  }
  .hero-visual__stage {
    width: min(100%, 280px);
    min-height: 0;
    margin: 0 auto;
  }
  .hero-visual__phones {
    min-height: 0;
    animation: none;
    display: flex;
    justify-content: center;
  }
  .phone-device--back {
    display: none;
  }
  .phone-device--front {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 268px;
    margin: 0 auto;
    transform: none;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .community-showcase {
    grid-template-columns: 1fr;
  }
  .community-showcase__visual {
    order: -1;
  }
  .community-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .community-pillars {
    grid-template-columns: 1fr;
  }
  .community-guidelines__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --display-lg: 700 30px/38px var(--font);
    --display-md: 700 26px/34px var(--font);
    --headline-lg: 600 22px/30px var(--font);
    --headline-md: 600 18px/26px var(--font);
    --body-lg: 400 17px/26px var(--font);
  }

  .section {
    padding: 56px 0;
  }
  .section-head {
    margin-bottom: var(--s-8);
  }

  .header-controls {
    flex: 0 0 auto;
    gap: 8px;
    position: relative;
  }
  .nav {
    flex: 0 0 auto;
    justify-content: flex-end;
    order: 2;
  }
  .header-actions {
    gap: 8px;
    order: 1;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(300px, calc(100vw - 24px));
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2px;
    padding: var(--s-3);
    background: var(--nav-menu-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-2);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 120;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: var(--r);
  }
  .nav-link.is-active::after {
    display: none;
  }
  .nav-link.is-active {
    background: rgba(var(--primary-rgb), 0.08);
  }
  .header-cta-link {
    display: none;
  }

  .hero {
    padding: 28px 0 40px;
    scroll-margin-top: 72px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .body-lg {
    max-width: none;
    margin-inline: auto;
  }
  .hero-points {
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .store-badge {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .stats {
    justify-content: center;
    gap: var(--s-6);
  }
  .hero .nowrap {
    white-space: normal;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
  .features-showcase {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .features-showcase__visual {
    order: -1;
    min-height: 380px;
  }
  .features-showcase__phone-wrap {
    width: min(100%, 250px);
  }
  .features-orbit {
    display: none;
  }
  .features-tab:hover,
  .features-tab.is-active {
    transform: none;
  }
  .features-tab.is-active .features-tab__panel {
    max-height: 220px;
  }
  .community-stats {
    grid-template-columns: 1fr;
  }
  .community-guidelines {
    padding: var(--s-6);
  }
  .community-guidelines__grid {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .features-layout {
    grid-template-columns: 1fr;
  }
  .features-visual {
    position: static;
  }
  .card-feature__split {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-5);
  }
  .brand--footer {
    justify-self: center;
  }
  .footer-links {
    justify-content: center;
    gap: var(--s-3) var(--s-4);
  }
  .footer-meta {
    justify-self: center;
  }
  .site-footer {
    padding: 24px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .doc-wrap {
    padding: 32px 0 48px;
  }
  .doc-card {
    padding: var(--s-6);
  }
  .header-inner .doc-back {
    font-size: 13px;
    white-space: nowrap;
  }
  .info-panels,
  .split-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .step-card .headline-md {
    min-height: 0;
  }
  .community-stats {
    grid-template-columns: 1fr;
  }
  .community-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: 14px 16px;
  }
  .community-stat__value {
    margin-bottom: 0;
    font-size: 22px;
  }
  .community-stat__label {
    text-align: right;
    max-width: 58%;
  }
  .plan-card__badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  :root {
    --display-lg: 700 26px/34px var(--font);
    --display-md: 700 22px/30px var(--font);
    --headline-lg: 600 20px/28px var(--font);
  }

  .container {
    padding-left: max(var(--s-3), env(safe-area-inset-left, 0px));
    padding-right: max(var(--s-3), env(safe-area-inset-right, 0px));
  }
  .section {
    padding: 44px 0;
  }
  .header-inner {
    height: 64px;
  }
  .site-header .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .site-header .brand {
    gap: 10px;
    font-size: 16px;
  }
  .nav-links {
    width: min(300px, calc(100vw - 24px));
    top: calc(100% + 6px);
  }
  .hero-point {
    width: 100%;
    justify-content: center;
  }
  .features-showcase__visual {
    min-height: 340px;
  }
  .features-tab {
    padding: 14px 16px 14px 18px;
    gap: 12px;
  }
  .features-tab__label {
    font-size: 16px;
    line-height: 22px;
  }
  .faq {
    padding: 14px 16px;
    font-size: 13px;
    line-height: 18px;
  }
  .faq-panel.is-open {
    padding: 10px 16px 14px;
  }
  .plan-card {
    padding: var(--s-6);
  }
  .plan-card__price {
    font-size: 28px;
  }
  .card {
    padding: var(--s-5);
  }
  .contact-form-card .btn {
    width: 100%;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
  }
  .doc-title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .store-badge:hover,
  .features-tab:hover {
    transform: none;
  }
}

/* Docs (Privacy / Terms) */
.doc-wrap {
  padding: 56px 0 72px;
}
.doc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font: var(--label-lg);
  color: var(--text-muted);
}
.doc-back:hover {
  color: var(--primary);
}
.doc-title {
  font: var(--display-md);
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-2);
}
.doc-updated {
  font: var(--label-md);
  letter-spacing: 0.04em;
  color: rgba(11, 28, 48, 0.6);
  margin: 0 0 var(--s-6);
}
.doc-card {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--s-8);
}
.doc-section {
  margin-top: var(--s-8);
}
.doc-section:first-of-type {
  margin-top: 0;
}
.doc-h {
  font: var(--headline-md);
  margin: 0 0 var(--s-3);
}
.doc-p {
  font: var(--body-md);
  color: var(--text-muted);
  margin: 0;
}
.doc-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font: var(--body-md);
}
.doc-list li {
  margin: 8px 0;
}
.doc-h3 {
  font: 600 16px/24px var(--font);
  margin: var(--s-5) 0 var(--s-2);
  color: var(--on-surface);
}
.doc-ol {
  margin: var(--s-2) 0 0;
  padding-left: 22px;
  color: rgba(11, 28, 48, 0.72);
  font: var(--body-md);
}
.doc-ol li {
  margin: 8px 0;
}
.doc-table-wrap {
  overflow-x: auto;
  margin-top: var(--s-3);
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
  font: var(--body-md);
  color: rgba(11, 28, 48, 0.72);
}
.doc-table th,
.doc-table td {
  border: 1px solid rgba(144, 111, 104, 0.14);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.doc-table th {
  background: rgba(218, 226, 253, 0.35);
  font: var(--label-md);
  color: rgba(11, 28, 48, 0.86);
}
.doc-placeholder {
  color: rgba(11, 28, 48, 0.5);
  font-style: italic;
}
.info-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-top: var(--s-4);
}
.info-panel {
  border-radius: var(--r-lg);
  border: 1px solid rgba(144, 111, 104, 0.14);
  background: linear-gradient(180deg, rgba(239, 244, 255, 0.85), rgba(255, 255, 255, 0.7));
  padding: var(--s-5);
}
.info-title {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font: var(--label-lg);
  margin: 0 0 var(--s-3);
  color: rgba(11, 28, 48, 0.86);
}
.info-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  border: 1px solid rgba(144, 111, 104, 0.14);
  background: rgba(218, 226, 253, 0.55);
}
.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-top: var(--s-4);
}
.panel {
  border-radius: var(--r-lg);
  border: 1px solid rgba(144, 111, 104, 0.14);
  background: rgba(255, 255, 255, 0.85);
  padding: var(--s-5);
}
.panel-title {
  font: var(--label-lg);
  margin: 0 0 var(--s-2);
}
.note {
  margin: var(--s-4) 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(var(--magenta-rgb), 0.18);
  background: linear-gradient(180deg, rgba(237, 233, 254, 0.92), rgba(255, 255, 255, 0.75));
  padding: var(--s-4) var(--s-5);
  position: relative;
}
.note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: var(--r-full);
  background: rgba(var(--magenta-rgb), 0.6);
}
.note-title {
  font: var(--label-lg);
  margin: 0 0 4px;
}
.contact-lines {
  margin-top: var(--s-3);
  display: grid;
  gap: 10px;
}
.contact-line {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font: var(--body-md);
  color: rgba(11, 28, 48, 0.72);
}
.contact-bullet {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  border: 1px solid rgba(144, 111, 104, 0.14);
  background: rgba(218, 226, 253, 0.45);
  color: var(--brand-purple);
  flex-shrink: 0;
}
.contact-bullet svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Dark mode — remaining surfaces */
html[data-theme="dark"] .section-muted {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(11, 16, 32, 0.2));
  border-top-color: var(--border-soft);
  border-bottom-color: var(--border-soft);
}
html[data-theme="dark"] .hero-point,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .features-tab,
html[data-theme="dark"] .community-stat,
html[data-theme="dark"] .community-guideline,
html[data-theme="dark"] .store-badge--light {
  background: var(--chip-bg);
  border-color: var(--border-soft);
  color: var(--on-surface);
}
html[data-theme="dark"] .features-tab.is-active {
  background: linear-gradient(135deg, rgba(30, 38, 62, 0.98), rgba(36, 28, 64, 0.92));
  border-color: rgba(var(--primary-rgb), 0.35);
}
html[data-theme="dark"] .features-tab__label,
html[data-theme="dark"] .features-tab__panel,
html[data-theme="dark"] .community-points li,
html[data-theme="dark"] .community-stat__label,
html[data-theme="dark"] .community-guideline .body-md,
html[data-theme="dark"] .step-card .body-md,
html[data-theme="dark"] .doc-updated,
html[data-theme="dark"] .doc-ol,
html[data-theme="dark"] .contact-line {
  color: var(--text-muted);
}
html[data-theme="dark"] .step-card .headline-md,
html[data-theme="dark"] .community-guideline__title,
html[data-theme="dark"] .doc-title,
html[data-theme="dark"] .doc-h {
  color: var(--on-surface);
}
html[data-theme="dark"] .hero-point {
  box-shadow: none;
  color: var(--on-surface);
}
html[data-theme="dark"] .store-badge--light {
  color: var(--on-surface);
}
html[data-theme="dark"] .hero-point__icon,
html[data-theme="dark"] .community-points__icon,
html[data-theme="dark"] .features-tab__icon,
html[data-theme="dark"] .card-icon,
html[data-theme="dark"] .step-icon,
html[data-theme="dark"] .contact-bullet,
html[data-theme="dark"] .community-pillar__icon {
  background: linear-gradient(180deg, var(--brand-purple-light), var(--brand-purple));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.28);
}
html[data-theme="dark"] .card-icon--hot,
html[data-theme="dark"] .card-icon--blue,
html[data-theme="dark"] .card-icon--pink,
html[data-theme="dark"] .card-icon--muted {
  background: linear-gradient(180deg, var(--brand-purple-light), var(--brand-purple));
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
html[data-theme="dark"] .community-guidelines {
  background: linear-gradient(180deg, rgba(22, 28, 48, 0.95), rgba(18, 24, 42, 0.88));
}
html[data-theme="dark"] .plan-card--featured {
  background: linear-gradient(180deg, rgba(30, 38, 62, 0.98), rgba(36, 28, 64, 0.9));
}
html[data-theme="dark"] .note {
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.9), rgba(22, 28, 48, 0.85));
  border-color: rgba(var(--magenta-rgb), 0.28);
}
html[data-theme="dark"] .doc-table {
  border-color: var(--border-soft);
}
html[data-theme="dark"] .doc-table th {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--on-surface);
}
html[data-theme="dark"] .doc-table td {
  color: var(--text-muted);
  border-color: var(--border-soft);
}
html[data-theme="dark"] option {
  background: #151b2e;
  color: var(--on-surface);
}

