/* ═══════════════════════════════════════════════════════
   GlowMe — Global Styles
   Soft pink cream liquid-glass design system
   ═══════════════════════════════════════════════════════ */

:root {
  /* Light cream / blush backgrounds */
  --bg: #FEF8FA;
  --bg-warm: #FDF3F7;
  --surface-1: #FFFFFF;
  --surface-2: #FFF0F7;
  --surface-3: #FFE5F0;

  /* Typography colors (dark on light) */
  --text: #1A0812;
  --text-secondary: rgba(26, 8, 18, 0.62);
  --text-tertiary: rgba(26, 8, 18, 0.42);
  --text-muted: rgba(26, 8, 18, 0.28);

  /* Primary pink */
  --pink: #FF2D6B;
  --pink-deep: #E0185A;
  --pink-glow: rgba(255, 45, 107, 0.28);
  --pink-light: #FF94BB;
  --blush: #FFDCE8;

  /* Gold accent (for stars, premium badges) */
  --gold: #E8A030;
  --gold-deep: #CF8A18;
  --gold-glow: rgba(232, 160, 48, 0.32);
  --platinum: #5A3A4A;
  --silver: #A07888;

  /* Lilac accent */
  --lilac: #C8A6E8;
  --lilac-soft: rgba(200, 166, 232, 0.25);

  /* Functional accent (pink-based) */
  --accent: #FF2D6B;
  --accent-soft: rgba(255, 45, 107, 0.85);
  --accent-glow: rgba(255, 45, 107, 0.35);

  /* Success / status */
  --green: #22C97B;
  --green-glow: rgba(34, 201, 123, 0.22);
  --red-soft: rgba(239, 68, 68, 0.12);

  /* Glass tokens (on light cream) */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-heavy: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 45, 107, 0.12);
  --glass-border-strong: rgba(255, 45, 107, 0.22);
  --glass-shadow: rgba(200, 20, 80, 0.10);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --font: "Nunito", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  --font-title: "Nunito", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--bg);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(255, 45, 107, 0.07), transparent 62%),
    radial-gradient(ellipse 900px 520px at 78% 42%, rgba(200, 166, 232, 0.04), transparent 70%);
  pointer-events: none;
  z-index: -2;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ── Liquid Background (ambient glows) ────────────── */

.liquid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.liquid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
  mix-blend-mode: multiply;
}

.blob-pink {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 45, 107, 0.18), rgba(255, 130, 170, 0.06) 45%, transparent 68%);
  top: -22%;
  left: -6%;
  animation: blob-drift-1 28s ease-in-out infinite;
}

.blob-blush {
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(255, 180, 210, 0.22), rgba(255, 220, 235, 0.08) 50%, transparent 72%);
  top: 28%;
  right: -14%;
  animation: blob-drift-2 34s ease-in-out infinite;
}

.blob-lilac {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(200, 166, 232, 0.18), transparent 68%);
  bottom: -12%;
  left: 6%;
  animation: blob-drift-3 24s ease-in-out infinite;
}

.blob-side-left {
  width: 560px;
  height: 860px;
  background: radial-gradient(ellipse, rgba(255, 45, 107, 0.06), rgba(200, 166, 232, 0.04) 55%, transparent 72%);
  left: -10%;
  top: 45%;
  animation: blob-drift-3 30s ease-in-out infinite;
}

.blob-side-right {
  width: 520px;
  height: 760px;
  background: radial-gradient(ellipse, rgba(255, 180, 200, 0.08), rgba(255, 45, 107, 0.03) 55%, transparent 72%);
  right: -10%;
  top: 55%;
  animation: blob-drift-1 26s ease-in-out infinite;
}

.blob-bottom-left {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 120, 160, 0.08), transparent 72%);
  left: 5%;
  bottom: 5%;
  animation: blob-drift-2 28s ease-in-out infinite;
}

@keyframes blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.1); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}

@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -50px) scale(1.05); }
  66% { transform: translate(-40px, 80px) scale(0.9); }
}

@keyframes blob-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -60px) scale(1.08); }
  66% { transform: translate(70px, 30px) scale(0.92); }
}

/* Sparkle overlay */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 45, 107, 0.4), transparent 60%),
    radial-gradient(1px 1px at 78% 22%, rgba(255, 45, 107, 0.35), transparent 60%),
    radial-gradient(1px 1px at 42% 72%, rgba(200, 166, 232, 0.45), transparent 60%),
    radial-gradient(1px 1px at 88% 86%, rgba(255, 45, 107, 0.3), transparent 60%),
    radial-gradient(1px 1px at 24% 52%, rgba(200, 166, 232, 0.35), transparent 60%),
    radial-gradient(1px 1px at 62% 12%, rgba(255, 45, 107, 0.3), transparent 60%),
    radial-gradient(1.2px 1.2px at 6% 88%, rgba(232, 160, 48, 0.3), transparent 60%),
    radial-gradient(1px 1px at 94% 48%, rgba(255, 45, 107, 0.25), transparent 60%);
  opacity: 0.6;
}

/* ── Glass Morphism (light) ───────────────────────── */

.glass {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.glass-card {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 45, 107, 0.10);
  border-radius: var(--radius-lg);
  box-shadow:
    0 10px 40px rgba(255, 45, 107, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 45, 107, 0.05);
  transition: all 0.6s var(--spring);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 107, 0.22);
  box-shadow:
    0 28px 64px rgba(255, 45, 107, 0.14),
    0 4px 16px rgba(255, 45, 107, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.glass-grey {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 45, 107, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(255, 45, 107, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.glass-heavy {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(44px) saturate(180%);
  -webkit-backdrop-filter: blur(44px) saturate(180%);
  border: 1px solid rgba(255, 45, 107, 0.14);
  border-radius: var(--radius-lg);
  box-shadow:
    0 16px 56px rgba(255, 45, 107, 0.10),
    inset 0 2px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(255, 45, 107, 0.05);
}

/* ── Navigation ──────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.5s var(--smooth);
}

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

.nav.scrolled {
  background: rgba(254, 248, 250, 0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid rgba(255, 45, 107, 0.10);
  box-shadow: 0 4px 30px rgba(255, 45, 107, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blush);
  box-shadow:
    0 0 24px rgba(255, 45, 107, 0.20),
    0 4px 18px rgba(255, 45, 107, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s var(--smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  border-radius: 1px;
  transition: width 0.3s var(--spring);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--pink);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.4s var(--spring);
  border: 1px solid rgba(255, 45, 107, 0.35);
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(255, 45, 107, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.btn-download:hover {
  transform: scale(1.05);
  box-shadow:
    0 12px 36px rgba(255, 45, 107, 0.40),
    0 0 0 1px rgba(255, 45, 107, 0.4);
}

.btn-download svg {
  width: 18px;
  height: 18px;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 0;
  border-radius: 2px;
  flex-shrink: 0;
  transition: transform 0.3s var(--smooth), opacity 0.3s var(--smooth);
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Container ───────────────────────────────────── */

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ─────────────────────────────── */

section {
  padding: 96px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 72% 54% at 50% 38%,
    rgba(255, 45, 107, 0.06) 0%,
    rgba(255, 45, 107, 0.02) 38%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  isolation: isolate;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(44px, 8.5vw, 90px);
  font-weight: 900;
  letter-spacing: -0.033em;
  line-height: 1.06;
  margin-bottom: 28px;
  color: var(--text);
  position: relative;
}

.hero-hl-wrap {
  display: block;
  text-align: center;
  line-height: inherit;
}

/* Desktop: headline stays on exactly 2 lines */
@media (min-width: 769px) {
  .hero-title {
    font-size: clamp(40px, 5.8vw, 68px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-hl-wrap {
    white-space: nowrap;
  }

  .hero-inner {
    max-width: 900px;
  }
}

.hero-hl {
  display: inline;
  background-image: linear-gradient(
    to bottom,
    transparent 74%,
    rgba(255, 45, 107, 0.40) 74%
  );
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 0.06em;
}

.hero-hl.hl-active {
  background-size: 100% 100%;
}

#hl-2.hl-active {
  transition-delay: 0.28s;
}

.hero-hl::after {
  display: none !important;
}

.hero-lead {
  font-size: clamp(16px, 2.8vw, 20px);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-br {
  display: none;
}

@media (min-width: 480px) {
  .hero-br { display: inline; }
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.stars-gold {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 15px;
  text-shadow: 0 0 16px rgba(232, 160, 48, 0.5);
}

.hero-proof-text {
  color: var(--text-secondary);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: scroll-hint 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 45, 107, 0.4), transparent);
}

@keyframes scroll-hint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(8px); }
}

/* ── Hero floating emoji particles ──────────────────── */
.hero-emojis {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.he {
  position: absolute;
  font-size: clamp(20px, 3vw, 36px);
  opacity: 0;
  animation: hero-emoji-float 10s ease-in-out infinite;
  filter: blur(0.3px);
  user-select: none;
  will-change: transform, opacity;
}

.e1  { top: 12%; left: 7%;      animation-delay: 0s;   animation-duration: 9s; }
.e2  { top: 28%; right: 8%;     animation-delay: 1.6s; animation-duration: 11s; }
.e3  { top: 62%; left: 10%;     animation-delay: 0.9s; animation-duration: 10s; }
.e4  { top: 18%; right: 14%;    animation-delay: 2.4s; animation-duration: 8.5s; }
.e5  { top: 72%; right: 7%;     animation-delay: 0.4s; animation-duration: 12s; }
.e6  { top: 48%; left: 4%;      animation-delay: 3.2s; animation-duration: 9.5s; }
.e7  { bottom: 18%; right: 10%; animation-delay: 1.2s; animation-duration: 10.5s; }
.e8  { top: 42%; right: 4%;     animation-delay: 2.8s; animation-duration: 9s; }
.e9  { top: 80%; left: 18%;     animation-delay: 0.6s; animation-duration: 11.5s; }
.e10 { top: 8%;  right: 22%;    animation-delay: 1.8s; animation-duration: 8s; }

@keyframes hero-emoji-float {
  0%   { transform: translateY(12px) rotate(-6deg) scale(0.88); opacity: 0; }
  15%  { opacity: 0.16; }
  50%  { transform: translateY(-14px) rotate(6deg) scale(1.05); opacity: 0.24; }
  85%  { opacity: 0.16; }
  100% { transform: translateY(12px) rotate(-6deg) scale(0.88); opacity: 0; }
}

/* ── App Store Button ─────────────────────────────────── */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  background: var(--pink);
  color: #FFFFFF;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--spring);
  box-shadow:
    0 12px 40px rgba(255, 45, 107, 0.32),
    0 4px 14px rgba(255, 45, 107, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.btn-appstore::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.85s ease;
}

.btn-appstore:hover::before,
.btn-appstore:focus-visible::before {
  left: 170%;
}

.btn-appstore:hover,
.btn-appstore:focus-visible {
  transform: scale(1.04) translateY(-2px);
  box-shadow:
    0 22px 64px rgba(255, 45, 107, 0.42),
    0 6px 20px rgba(255, 45, 107, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  outline: none;
}

.btn-appstore:active {
  transform: scale(0.97) translateY(0);
}

.appstore-apple {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: #FFFFFF;
}

.appstore-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.appstore-copy span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.appstore-copy strong {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.btn-appstore-center {
  padding: 16px 34px;
}

.btn-appstore-center .appstore-apple {
  width: 32px;
  height: 32px;
}

.btn-appstore-center .appstore-copy strong {
  font-size: 20px;
}

/* ── Hero CTA animated float ─────────────────────────── */
@keyframes hero-btn-float {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -5px; }
}

.hero-btn-animate {
  animation: hero-btn-float 2.8s ease-in-out infinite;
}

.hero-btn-animate:hover,
.hero-btn-animate:focus-visible {
  animation-play-state: paused;
  translate: 0 0;
}

/* ── Ghost button ────────────────────────────────────── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 45, 107, 0.20);
  border-radius: 100px;
  background: rgba(255, 45, 107, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s var(--smooth);
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 45, 107, 0.35);
  background: rgba(255, 45, 107, 0.08);
  transform: translateY(-2px);
}

/* ── Nav mobile CTA ──────────────────────────────────── */
.nav-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .nav-mobile-cta {
    display: list-item;
    list-style: none;
    padding: 8px 2px 2px;
  }
  .nav-mobile-cta a {
    display: block !important;
    text-align: center;
    font-size: 15px;
    padding: 12px 0;
  }
}

/* ── Stats Bar ───────────────────────────────────── */

.stats-bar {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 45, 107, 0.25);
  filter: blur(20px);
  opacity: 0.35;
  transition: opacity 0.4s;
}

.stat-item:nth-child(2)::before { background: rgba(232, 160, 48, 0.6); }
.stat-item:nth-child(4)::before { background: rgba(34, 201, 123, 0.5); }

.stat-item:hover::before {
  opacity: 0.65;
}

.stat-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 45, 107, 0.18));
}

.stat-number {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--pink);
}

.stat-item:nth-child(2) .stat-number {
  color: var(--gold);
}

.stat-item:nth-child(4) .stat-number {
  color: #22C97B;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.stat-item:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ── Problem Section ─────────────────────────────── */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.problem-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--spring);
}

.problem-item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 45, 107, 0.20);
}

.problem-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 45, 107, 0.06);
  border: 1px solid rgba(255, 45, 107, 0.12);
}

.problem-item h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.problem-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.comparison-card {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.comparison-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: all 0.4s var(--spring);
}

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

.comparison-row.old {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.14);
}

.comparison-row.new {
  background: rgba(255, 45, 107, 0.06);
  border: 1px solid rgba(255, 45, 107, 0.18);
  box-shadow: inset 0 0 30px rgba(255, 45, 107, 0.04);
}

.comparison-row:hover {
  transform: translateX(6px);
}

.comparison-emoji {
  font-size: 28px;
  display: inline-block;
  transition: transform 0.3s var(--spring);
}

.comparison-label {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.comparison-flow {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ── How It Works ────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

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

.step-card {
  padding: 44px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  transition: all 0.5s var(--spring);
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 45, 107, 0.25);
}

.step-emoji {
  font-size: 44px;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 0 14px rgba(255, 45, 107, 0.18));
  transition: transform 0.3s var(--spring);
}

.step-card:hover .step-emoji {
  animation: emoji-bounce 0.7s var(--spring);
}

@keyframes emoji-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-18px) scale(1.14); }
  55% { transform: translateY(-4px) scale(1.03); }
  75% { transform: translateY(-8px) scale(1.06); }
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Feature Cards Grid ──────────────────────────────── */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.feat-card {
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all 0.5s var(--spring);
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, -100%) var(--my, -100%),
    rgba(255, 45, 107, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

.feat-card:hover::after {
  opacity: 1;
}

.feat-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 45, 107, 0.20));
  transition: transform 0.35s var(--spring), filter 0.35s;
  position: relative;
  z-index: 1;
}

.feat-card:hover .feat-icon {
  transform: scale(1.18) translateY(-3px);
  filter: drop-shadow(0 0 20px rgba(255, 45, 107, 0.35));
}

.feat-card h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.feat-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.62;
  position: relative;
  z-index: 1;
}

/* ── 3D Glass card shimmer ──────────────────────── */
.glass-card {
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    480px circle at var(--mx, -200%) var(--my, -200%),
    rgba(255, 45, 107, 0.06),
    transparent 55%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s;
}

/* ── Feature Highlight Sections ──────────────────── */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

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

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-visual {
  position: relative;
}

.feature-visual-card {
  padding: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--spring);
}

.feature-visual-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 45, 107, 0.22);
}

.feature-visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%,
    rgba(255, 45, 107, 0.05) 0%,
    transparent 70%);
  pointer-events: none;
}

.feature-visual-emoji {
  font-size: 128px;
  filter: drop-shadow(0 0 40px rgba(255, 45, 107, 0.22));
  transition: transform 0.3s var(--spring);
  position: relative;
  z-index: 1;
}

.feature-visual-card:hover .feature-visual-emoji {
  animation: emoji-pulse 1.2s ease-in-out;
}

@keyframes emoji-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(255, 45, 107, 0.22)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 60px rgba(255, 45, 107, 0.40)); }
}

.feature-content .section-label {
  margin-bottom: 12px;
}

.feature-content h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text);
}

.feature-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 12px rgba(255, 45, 107, 0.28);
}

/* ── Polaroid Card ───────────────────────────────── */

.polaroid-card {
  flex-direction: column;
  padding: 20px 20px 28px;
  min-height: 360px;
  background: #FFFFFF !important;
  border: 1px solid rgba(255, 45, 107, 0.12) !important;
  box-shadow:
    0 20px 60px rgba(255, 45, 107, 0.12),
    4px 4px 0 rgba(255, 45, 107, 0.08),
    8px 8px 0 rgba(200, 166, 232, 0.06) !important;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--spring), box-shadow 0.5s var(--spring) !important;
}

.polaroid-card:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow:
    0 32px 80px rgba(255, 45, 107, 0.18),
    0 4px 20px rgba(0,0,0,0.06) !important;
}

.polaroid-inner {
  width: 100%;
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--blush);
  min-height: 240px;
}

.polaroid-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.polaroid-score-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255, 45, 107, 0.4);
  z-index: 2;
}

.polaroid-score-chip strong {
  font-size: 18px;
  display: block;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.polaroid-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 14px;
  padding: 0 4px;
}

/* ── Score Card (Before/After) ───────────────────── */

.score-card {
  width: 100%;
  max-width: 320px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 14px;
  margin: 0 auto;
  text-align: center;
}

.score-card-top,
.score-card-bot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.score-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 45, 107, 0.15);
  background: rgba(255, 45, 107, 0.04);
}

.score-chip.gold {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 45, 107, 0.4);
  background: var(--pink);
  box-shadow: 0 4px 14px rgba(255, 45, 107, 0.30);
}

.score-num {
  font-family: var(--font-title);
  font-size: 84px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--text);
}

.score-num.gold {
  color: var(--pink);
  text-shadow: 0 0 26px rgba(255, 45, 107, 0.22);
}

.score-card-mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-arrow {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-tertiary);
}

.score-caption {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ── Case Studies (Before/After) ─────────────────── */

.case-study-block {
  margin-top: 36px;
}

.case-study-heading {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.case-study-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.case-study-card {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  text-align: left;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.case-study-meta strong {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.case-study-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
}

.case-study-score {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.case-study-score strong {
  color: var(--pink);
  font-weight: 900;
  font-size: 18px;
}

.case-study-summary {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.case-study-routine {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study-routine li {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text);
  padding-left: 0;
}

.case-study-routine li span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 3px;
}

/* ── Testimonials ────────────────────────────────── */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  text-align: left;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(232, 160, 48, 0.35);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-attr {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.testimonial-attr strong {
  color: var(--text-secondary);
  font-weight: 700;
}

/* ── Pricing ─────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 60px auto 0;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  position: relative;
  text-align: center;
}

.pricing-card.glass-card {
  overflow: visible;
}

.pricing-card.featured {
  border: 1.5px solid rgba(255, 45, 107, 0.35);
  padding-top: 48px;
  background: rgba(255, 45, 107, 0.03);
  box-shadow:
    0 20px 60px rgba(255, 45, 107, 0.12),
    0 0 40px rgba(255, 45, 107, 0.06),
    inset 0 1px 0 rgba(255, 45, 107, 0.12);
}

.pricing-card.featured:hover {
  border-color: rgba(255, 45, 107, 0.50);
  box-shadow:
    0 28px 72px rgba(255, 45, 107, 0.18),
    0 0 48px rgba(255, 45, 107, 0.10),
    inset 0 1px 0 rgba(255, 45, 107, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 22px;
  background: var(--pink);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(255, 45, 107, 0.40);
  z-index: 3;
}

.pricing-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-amount {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
}

.pricing-period {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.pricing-note {
  font-size: 13px;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 800;
}

.btn-pricing {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--spring);
  letter-spacing: -0.01em;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-pricing.primary {
  background: var(--pink);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 45, 107, 0.28);
}

.btn-pricing.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 45, 107, 0.40);
}

.btn-pricing.secondary {
  background: rgba(255, 45, 107, 0.06);
  color: var(--text);
  border: 1.5px solid rgba(255, 45, 107, 0.20);
}

.btn-pricing.secondary:hover {
  background: rgba(255, 45, 107, 0.10);
  border-color: rgba(255, 45, 107, 0.35);
}

.pricing-trial {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── CTA Section ─────────────────────────────────── */

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

.cta-card {
  padding: 90px 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 45, 107, 0.08), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(200, 166, 232, 0.08), transparent 50%);
  animation: cta-glow 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes cta-glow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(2%, 2%) rotate(3deg); }
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 5.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text);
}

.cta-card p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ── Footer ──────────────────────────────────────── */

footer {
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 45, 107, 0.08);
  background: rgba(255, 240, 247, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-tertiary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 45, 107, 0.08);
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-tertiary);
  transition: color 0.3s;
  font-weight: 500;
}

.footer-bottom-links a:hover {
  color: var(--pink);
}

/* ── Scroll Animations ───────────────────────────── */

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring);
}

.animate.slide-left { transform: translateX(-40px); }
.animate.slide-right { transform: translateX(40px); }
.animate.scale-in { transform: scale(0.92); }
.animate.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.stagger > .animate:nth-child(1) { transition-delay: 0ms; }
.stagger > .animate:nth-child(2) { transition-delay: 80ms; }
.stagger > .animate:nth-child(3) { transition-delay: 160ms; }
.stagger > .animate:nth-child(4) { transition-delay: 240ms; }
.stagger > .animate:nth-child(5) { transition-delay: 320ms; }
.stagger > .animate:nth-child(6) { transition-delay: 400ms; }
.stagger > .animate:nth-child(7) { transition-delay: 480ms; }
.stagger > .animate:nth-child(8) { transition-delay: 560ms; }

/* ── Legal Pages ─────────────────────────────────── */

.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
}

.legal-page h1 {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-meta {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 45, 107, 0.35);
  transition: text-decoration-color 0.3s;
}

.legal-content a:hover {
  text-decoration-color: var(--pink);
}

/* ── Page Hero (inner pages) ─────────────────────── */

.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Support / FAQ ───────────────────────────────── */

.support-page-hero .support-cta-card {
  max-width: 500px;
  margin: 48px auto 0;
  padding: 36px 32px 40px;
  text-align: center;
}

.support-cta-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.support-cta-email {
  font-size: clamp(17px, 3.5vw, 22px);
  font-weight: 600;
  margin-bottom: 24px;
  word-break: break-all;
  color: var(--text);
}

.support-cta-email a {
  color: var(--pink);
  transition: opacity 0.3s var(--smooth);
}

.support-cta-email a:hover {
  opacity: 0.85;
}

.support-quick-section {
  padding-top: 0;
  padding-bottom: 100px;
}

.support-section-heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.support-section-lead {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.support-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.support-quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px;
  text-align: left;
  color: inherit;
  transition: transform 0.45s var(--spring), box-shadow 0.45s var(--spring);
}

.support-quick-card:hover {
  transform: translateY(-4px);
}

.support-quick-icon {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 12px;
  line-height: 1;
  color: var(--pink);
}

.support-quick-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}

.support-quick-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.support-faq-section {
  padding-top: 40px;
}

.support-faq-section .section-title,
.support-faq-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-category {
  margin-bottom: 56px;
}

.faq-category:last-of-type {
  margin-bottom: 0;
}

.faq-category-title {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 45, 107, 0.18);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0.55) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 45, 107, 0.10);
  overflow: hidden;
  transition: border-color 0.35s var(--smooth), box-shadow 0.35s var(--smooth);
}

.faq-item:hover {
  border-color: rgba(255, 45, 107, 0.22);
}

.faq-item[open] {
  border-color: rgba(255, 45, 107, 0.28);
  box-shadow:
    0 8px 32px rgba(255, 45, 107, 0.08),
    0 0 24px rgba(255, 45, 107, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 22px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  user-select: none;
  transition: color 0.25s var(--smooth);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-tertiary);
  border-bottom: 2px solid var(--text-tertiary);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.45s var(--spring), border-color 0.25s;
}

.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
  border-color: var(--pink);
}

.faq-item[open] summary {
  padding-bottom: 12px;
}

.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(255, 45, 107, 0.06);
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 12px;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 22px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer li:last-child,
.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-steps {
  list-style: decimal;
}

.faq-answer a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 45, 107, 0.35);
  transition: text-decoration-color 0.25s;
}

.faq-answer a:hover {
  text-decoration-color: var(--pink);
}

.faq-inline-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.faq-inline-links li {
  margin-bottom: 10px;
}

/* ── Mission card top-border colors ──────────────── */
.mission-card { transition: all 0.5s var(--spring); }
.mission-card:hover { transform: translateY(-6px) scale(1.01); }

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.4s var(--smooth);
}

.mission-card:hover::before { opacity: 1; }

.mission-card.m1::before { background: linear-gradient(90deg, var(--pink), rgba(255, 45, 107, 0.35)); }
.mission-card.m2::before { background: linear-gradient(90deg, var(--gold), rgba(232, 160, 48, 0.40)); }
.mission-card.m3::before { background: linear-gradient(90deg, var(--lilac), rgba(200, 166, 232, 0.4)); }
.mission-card.m4::before { background: linear-gradient(90deg, var(--pink-light), rgba(255, 130, 170, 0.4)); }
.mission-card.m5::before { background: linear-gradient(90deg, var(--pink), rgba(200, 166, 232, 0.6)); }
.mission-card.m6::before { background: linear-gradient(90deg, var(--lilac), rgba(255, 45, 107, 0.4)); }

/* ── Analysis score bars ─────────────────────────── */

.analysis-bars {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.analysis-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 34px;
  align-items: center;
  gap: 12px;
}

.analysis-bar-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.analysis-bar-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 45, 107, 0.10);
  overflow: hidden;
}

.analysis-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(255, 45, 107, 0.28);
}

.analysis-bar-score {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  text-align: right;
}

/* ── Waveform dividers ───────────────────────────── */

.wave-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 28px;
  height: 28px;
}

.wave-divider span {
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 45, 107, 0.6), rgba(200, 166, 232, 0.3));
  animation: wave-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 45, 107, 0.18);
}

.wave-divider span:nth-child(1) { height: 10px; animation-delay: 0s; }
.wave-divider span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.wave-divider span:nth-child(3) { height: 26px; animation-delay: 0.2s; }
.wave-divider span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.wave-divider span:nth-child(5) { height: 22px; animation-delay: 0.4s; }
.wave-divider span:nth-child(6) { height: 10px; animation-delay: 0.5s; }
.wave-divider span:nth-child(7) { height: 18px; animation-delay: 0.6s; }

@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── Section accent glows ────────────────────────── */

#problem::before,
#score-reveal::before,
#analysis::before,
#how-it-works::before,
#transformation::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

#problem::before { background: var(--pink); top: 15%; left: -100px; }
#score-reveal::before { background: var(--pink); top: 20%; left: -100px; }
#analysis::before { background: var(--lilac); top: 20%; right: -100px; }
#how-it-works::before { background: var(--pink); bottom: 15%; right: -100px; }
#transformation::before { background: var(--pink); top: 20%; right: -100px; }

/* ── iPhone Demo Mockup ──────────────────────────────── */
.demo-section {
  padding: 100px 0 110px;
  overflow: hidden;
  position: relative;
}

.demo-top {
  margin-bottom: 48px;
}

.demo-top-btn {
  margin-top: 28px;
}

.demo-phone-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 16px;
  position: relative;
}

.iphone-mockup {
  position: relative;
  width: 300px;
  max-width: 76vw;
  flex-shrink: 0;
}

.iphone-frame {
  position: relative;
  background: linear-gradient(155deg, #2C2C34 0%, #1C1C22 45%, #141418 100%);
  border-radius: 52px;
  padding: 14px 12px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.16),
    0 0 0 3px rgba(0, 0, 0, 0.85),
    0 50px 100px rgba(0, 0, 0, 0.55),
    0 24px 50px rgba(255, 45, 107, 0.12),
    inset 0 1.5px 1px rgba(255, 255, 255, 0.14),
    inset 0 -1px 1px rgba(0, 0, 0, 0.35);
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
}

.iphone-frame::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 26%;
  width: 5px;
  height: 30px;
  background: linear-gradient(to right, #111114, #1e1e22);
  border-radius: 3px 0 0 3px;
  box-shadow: 0 42px 0 rgba(28, 28, 34, 0.95), 0 78px 0 rgba(28, 28, 34, 0.95);
}

.iphone-frame::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 30%;
  width: 5px;
  height: 62px;
  background: linear-gradient(to left, #111114, #1e1e22);
  border-radius: 0 3px 3px 0;
}

.iphone-dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #050507;
  border-radius: 20px;
  z-index: 20;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.iphone-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.iphone-home-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 4px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  z-index: 20;
}

.iphone-glow {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(255, 45, 107, 0.18) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.demo-bottom {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ── Pill strip ─────────────────────────────────────── */
.pills-strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg, transparent 0%, black 7%, black 93%, transparent 100%
  );
  mask-image: linear-gradient(
    90deg, transparent 0%, black 7%, black 93%, transparent 100%
  );
  border-top: 1px solid rgba(255, 45, 107, 0.06);
  border-bottom: 1px solid rgba(255, 45, 107, 0.06);
  background: rgba(255, 45, 107, 0.02);
  position: relative;
  z-index: 1;
}

.pills-track {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.pills-strip:hover .pills-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 45, 107, 0.05);
  border: 1px solid rgba(255, 45, 107, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  user-select: none;
}

/* ── About page mission/values ───────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.value-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
}

.value-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 45, 107, 0.18));
}

.value-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-row {
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .nav {
    padding: 0 14px;
  }

  .nav-inner {
    height: 66px;
  }

  .nav-logo {
    font-size: 18px;
    gap: 8px;
  }

  .nav-logo img {
    width: 32px;
    height: 32px;
  }

  .btn-download {
    display: none;
  }

  section {
    padding: 80px 0;
    overflow-x: hidden;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg,
      rgba(254, 248, 250, 0.97) 0%,
      rgba(255, 240, 247, 0.95) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    gap: 20px;
    border-bottom: 1px solid rgba(255, 45, 107, 0.10);
    z-index: 999;
    box-shadow: 0 8px 32px rgba(255, 45, 107, 0.10);
    max-height: calc(100svh - 66px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 2px;
    font-size: 16px;
  }

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

  .hero {
    padding: max(100px, calc(env(safe-area-inset-top, 0px) + 82px)) 20px 86px;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-title {
    font-size: clamp(36px, 11vw, 60px);
    margin-bottom: 20px;
  }

  .hero-lead {
    font-size: clamp(15px, 4vw, 17px);
    margin-bottom: 28px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-appstore,
  .btn-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 32px;
  }

  .feat-card {
    padding: 24px 18px;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 6px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 34px;
  }

  .problem-grid,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .feature-visual-card {
    min-height: 260px;
  }

  .feature-visual-emoji {
    font-size: 88px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pathways-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

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

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .liquid-blob {
    opacity: 0.35;
  }

  .blob-pink,
  .blob-blush {
    width: 100vw;
    height: 100vw;
  }

  .cta-card {
    padding: 60px 24px;
  }

  .cta-card h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .comparison-card {
    padding: 28px 20px;
  }

  .comparison-flow {
    font-size: 12px;
    line-height: 1.5;
  }

  .analysis-bars {
    max-width: 100%;
  }

  .analysis-bar-row {
    grid-template-columns: 76px 1fr 28px;
    gap: 8px;
  }

  .analysis-bar-label {
    font-size: 11px;
  }

  .score-num {
    font-size: clamp(56px, 19vw, 72px);
  }

  .score-caption {
    font-size: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .support-quick-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 16px 40px 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .demo-section {
    padding: 80px 0 90px;
  }

  .iphone-mockup {
    width: 260px;
  }

  .demo-top {
    margin-bottom: 36px;
  }

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

@media (max-width: 768px) {
  .blob-side-left,
  .blob-side-right,
  .blob-bottom-left {
    display: none;
  }
}

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

@media (max-width: 480px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding: max(96px, calc(env(safe-area-inset-top, 0px) + 78px)) 16px 76px;
  }

  .hero-title {
    font-size: clamp(34px, 11.5vw, 50px);
    letter-spacing: -0.04em;
  }

  .container,
  .container-narrow {
    padding: 0 16px;
  }

  .cta-card {
    padding: 44px 20px;
  }

  .step-card,
  .pricing-card,
  .testimonial-card {
    padding: 28px 20px;
  }

  .feature-visual-card {
    min-height: 220px;
    padding: 30px 20px;
  }

  .feature-visual-emoji {
    font-size: 72px;
  }

  .feature-list-item {
    font-size: 14px;
  }

  .feature-check {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .pricing-card.featured {
    padding-top: 42px;
  }

  .pricing-badge {
    top: -12px;
  }

  .section-title {
    font-size: clamp(28px, 9vw, 42px);
  }

  .btn-appstore-center {
    padding: 14px 26px;
  }

  .he {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .liquid-blob,
  .wave-divider span,
  .hero-scroll-hint {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   iOS / Android mobile polish — readable, scrollable
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  html {
    scroll-padding-top: calc(66px + env(safe-area-inset-top, 0px));
  }

  .nav-inner {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .nav-links a,
  .btn-download {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .hero {
    min-height: auto;
    padding-top: max(108px, calc(env(safe-area-inset-top, 0px) + 88px));
    padding-bottom: max(48px, env(safe-area-inset-bottom, 0px));
  }

  .hero-title {
    font-size: clamp(32px, 9.5vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    max-width: 100%;
  }

  .hero-hl-wrap {
    white-space: normal;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
    padding: 0 4px;
  }

  .hero-cta {
    width: 100%;
    padding: 0 8px;
  }

  .btn-appstore,
  .btn-ghost,
  .btn-pricing {
    min-height: 48px;
  }

  section {
    scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px));
  }

  .container,
  .container-narrow {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .section-title {
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 1.65;
  }

  .feature-row {
    margin-bottom: 64px;
  }

  .comparison-card,
  .feature-visual-card {
    max-width: 100%;
  }

  .pricing-card .pricing-features li {
    font-size: 15px;
  }

  .footer-bottom {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .faq-item summary {
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.45;
  }

  .demo-section {
    overflow: visible;
  }

  .iphone-mockup {
    width: min(280px, 82vw);
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(28px, 10vw, 36px);
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-number {
    font-size: 30px;
  }
}
