/* ============================================================
   SPLIT BILL LANDING — LIGHT THEME v3.0
   ============================================================ */

:root {
  --bg: #f5f3ff;
  --bg-surface: #ffffff;
  --glass: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(124, 108, 240, 0.1);
  --glass-hover: rgba(124, 108, 240, 0.06);
  --primary: #7c6cf0;
  --primary-light: #6c5ce7;
  --primary-glow: rgba(124, 108, 240, 0.2);
  --secondary: #00b4a6;
  --secondary-glow: rgba(0, 180, 166, 0.15);
  --accent: #f472b6;
  --text: #1a1a2e;
  --text-soft: rgba(26, 26, 46, 0.6);
  --text-muted: rgba(26, 26, 46, 0.38);
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 32px 80px rgba(124, 108, 240, 0.1);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.06);
  --header-h: 72px;
  --max-w: 1160px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

/* ---- LAYOUT ---- */
.page-wrap {
  position: relative;
  min-height: 100vh;
}

.page-wrap::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 700px at 10% 10%, rgba(124, 108, 240, 0.08), transparent 70%),
    radial-gradient(ellipse 700px 600px at 90% 5%, rgba(0, 212, 200, 0.07), transparent 70%),
    radial-gradient(ellipse 800px 500px at 50% 70%, rgba(244, 114, 182, 0.05), transparent 70%),
    radial-gradient(ellipse 500px 400px at 80% 95%, rgba(124, 108, 240, 0.05), transparent 70%);
}

.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(245, 243, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(124, 108, 240, 0.15);
}

.brand-lockup__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-lockup__copy {
  display: flex;
  flex-direction: column;
}

.brand-lockup__copy strong {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.brand-lockup__copy small {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}

.site-nav a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 10px 24px var(--primary-glow);
  transition: transform .2s var(--ease), box-shadow .2s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--primary-glow);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.4);
  backdrop-filter: blur(8px);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  padding: 80px 28px 28px;
  background: var(--bg-surface);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
}

.mobile-drawer__panel a {
  display: block;
  padding: 14px 0;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
  transition: color .2s;
}

.mobile-drawer__panel a:hover {
  color: var(--text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  padding: calc(var(--header-h) + 80px) 0 100px;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero__copy {
  max-width: 520px;
}

.hero h1 {
  margin-top: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 5vw + 1rem, 4.8rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--text);
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  margin-top: 18px;
  max-width: 38ch;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__trust {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
}

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  transition: transform .2s var(--ease), box-shadow .2s;
  overflow: hidden;
  position: relative;
}

.store-btn:hover {
  transform: translateY(-3px);
}

.store-btn--apple {
  background: var(--text);
  color: #fff;
  border: 1px solid transparent;
}

.store-btn--play {
  background: var(--gradient);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px var(--primary-glow);
}

.store-btn__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-btn__icon svg {
  width: 100%;
  height: 100%;
}

.store-btn small {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  display: block;
}

.store-btn strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .98rem;
  letter-spacing: -.02em;
  text-transform: none;
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  background: #111;
  border-radius: 46px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 40px 100px rgba(124, 108, 240, 0.15),
    0 0 80px rgba(124, 108, 240, 0.08);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s var(--ease);
}

.phone-mockup:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

.phone-mockup__dynamic-island {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 74px;
  height: 25px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 0 4px rgba(0,0,0,0.8), inset 0 0 2px rgba(255,255,255,0.1);
}

.phone-mockup__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19.5;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
}

.phone-mockup__screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}

.phone-mockup__screen img.is-active {
  opacity: 1;
}

/* Floating orbs behind hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb--1 {
  width: 380px;
  height: 380px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(124, 108, 240, 0.12), transparent 70%);
}

.hero-orb--2 {
  width: 280px;
  height: 280px;
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(0, 212, 200, 0.1), transparent 70%);
  animation-delay: -5s;
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.proof-strip__icon {
  font-size: 1.3rem;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(124, 108, 240, 0.08);
  border: 1px solid rgba(124, 108, 240, 0.15);
  font-size: .76rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw + .5rem, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--text);
}

.section-header p {
  margin-top: 12px;
  max-width: 48ch;
  margin-inline: auto;
  color: var(--text-soft);
  font-size: 1rem;
}

.content-section {
  padding: 80px 0;
}

/* ============================================================
   FEATURES — GLASS TILES
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(124, 108, 240, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 108, 240, 0.2);
  box-shadow: 0 24px 60px rgba(124, 108, 240, 0.1);
}

.feature-card__emoji {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(124, 108, 240, 0.08);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}

.feature-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.6;
}

/* ============================================================
   SHOWCASE CAROUSEL (3-UP)
   ============================================================ */
.showcase-carousel {
  position: relative;
  width: 100%;
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-viewport {
  width: 100%;
  padding: 40px 0 60px;
  position: relative;
}

.carousel-track {
  position: relative;
  width: 100%;
  min-height: 750px;
  margin: 0 auto;
}

.carousel-slide {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 270px;
  border-radius: 44px;
  background: #111;
  padding: 11px;
  transform: translateX(-50%) scale(0.6);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.6s, visibility 0.6s;
}

.carousel-slide.is-active {
  transform: translateX(-50%) scale(1.12);
  opacity: 1;
  visibility: visible;
  z-index: 10;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 40px 100px rgba(124, 108, 240, 0.18),
    0 0 120px rgba(124, 108, 240, 0.06);
}

.carousel-slide.is-prev {
  transform: translateX(calc(-50% - 310px)) scale(0.82);
  opacity: 0.5;
  visibility: visible;
  z-index: 5;
}

.carousel-slide.is-next {
  transform: translateX(calc(-50% + 310px)) scale(0.82);
  opacity: 0.5;
  visibility: visible;
  z-index: 5;
}

/* Dynamic Island overlay */
.phone-mockup__dynamic-island,
.carousel-slide__dynamic-island {
  position: absolute;
  left: 50%;
  top: 17px;
  width: 74px;
  height: 25px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 0 4px rgba(0,0,0,1), inset 0 0 2px rgba(255,255,255,0.1);
}

.carousel-slide__screen {
  width: 100%;
  aspect-ratio: 9/19.5;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}

.carousel-slide__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glassmorphic overlay — Tricount-style tile */
.glass-overlay {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s var(--ease);
  pointer-events: none;
}

.carousel-slide.is-active .glass-overlay {
  opacity: 1;
  transform: translateY(0);
}

.glass-overlay h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.glass-overlay p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* Carousel nav arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.carousel-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav--left { left: 20px; }
.carousel-nav--right { right: 20px; }
.carousel-nav svg { width: 26px; height: 26px; }

/* Showcase pill buttons */
.showcase-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.showcase-btn {
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.showcase-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.showcase-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px var(--primary-glow);
}

/* Dot indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124, 108, 240, 0.15);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.dot.is-active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}

/* ============================================================
   HOW IT WORKS — ANIMATED STEPS
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Connecting line between steps */
.steps-row::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glass-border), var(--glass-border), transparent);
  z-index: 0;
  border-radius: 2px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(124, 108, 240, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Staggered entrance */
.step-card[data-reveal].is-visible { transition-delay: 0s; }
.step-card[data-reveal].is-visible:nth-child(2) { transition-delay: 0.15s; }
.step-card[data-reveal].is-visible:nth-child(3) { transition-delay: 0.3s; }

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 108, 240, 0.08);
}

.step-card.is-active {
  transform: translateY(-8px);
  border-color: var(--secondary);
  animation: borderGlow 2.5s ease-in-out infinite;
}

.step-card.is-active .step-card__num {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.15);
  animation: numberPulse 2s ease-in-out infinite;
}

.step-card__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 3px 0 0;
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 108, 240, 0.12), rgba(0, 180, 166, 0.08));
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(124, 108, 240, 0.1);
  transition: all 0.4s var(--ease);
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}

.step-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.55;
}

/* ============================================================
   PRICING — 3 COLUMNS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(124, 108, 240, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(124, 108, 240, 0.1);
}

.price-card--popular {
  border-color: rgba(124, 108, 240, 0.25);
  background: linear-gradient(170deg, rgba(255,255,255,0.9), rgba(124, 108, 240, 0.06));
  position: relative;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(124, 108, 240, 0.12);
  z-index: 2;
}

.price-card--popular:hover {
  transform: scale(1.05) translateY(-6px);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px var(--primary-glow);
}

.price-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.price-card__price {
  margin-top: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.price-card__price span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-card__divider {
  height: 1px;
  background: var(--glass-border);
  margin: 20px 0;
}

.price-card__features {
  list-style: none;
  display: grid;
  gap: 12px;
  flex-grow: 1;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: .88rem;
  line-height: 1.5;
}

.price-card__features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--secondary);
  font-weight: 800;
}

.price-card__note {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 0;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  transition: transform .2s var(--ease), box-shadow .2s;
}

.price-card__cta:hover {
  transform: translateY(-2px);
}

.price-card__cta--free {
  background: rgba(124, 108, 240, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.price-card__cta--popular {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 24px var(--primary-glow);
}

.price-card__cta--monthly {
  background: var(--text);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ============================================================
   LANGUAGES
   ============================================================ */
.lang-section {
  text-align: center;
}

.lang-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 2rem;
}

.lang-list {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: .85rem;
  max-width: 54ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(124, 108, 240, 0.08);
  overflow: hidden;
  transition: border-color .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.faq-item:hover {
  border-color: rgba(124, 108, 240, 0.2);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

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

.faq-marker {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.4rem;
  transition: transform .2s;
}

.faq-item[open] .faq-marker {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.65;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 60px 40px;
  border-radius: var(--radius-xl);
  background: var(--gradient);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 80px var(--primary-glow);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
  animation: orbFloat 12s ease-in-out infinite reverse;
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}

.cta-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-band .store-btn--apple {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-band .store-btn--apple:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cta-band .store-btn--play {
  background: #fff;
  color: var(--primary);
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.cta-band .store-btn--play .store-btn__icon svg path {
  fill: var(--primary);
}

.cta-band__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
}

.cta-band__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}

.cta-band__links a:hover {
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.4);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__brand-top img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-footer__brand-top strong {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  color: var(--text);
}

.site-footer__brand>p {
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.55;
}

.site-footer__col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.site-footer__col a {
  display: block;
  padding: 4px 0;
  color: var(--text-soft);
  font-size: .88rem;
  font-weight: 500;
  transition: color .2s;
}

.site-footer__col a:hover {
  color: var(--primary);
}

.site-footer__copy {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: .8rem;
  text-align: center;
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.support-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 150;
}

.support-modal.is-open {
  display: block;
}

.support-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.support-modal__panel {
  position: relative;
  width: min(480px, calc(100% - 32px));
  margin: 12vh auto 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  box-shadow: 0 32px 80px rgba(124, 108, 240, 0.15);
  animation: modalIn .3s var(--ease);
}

.support-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  background: rgba(124, 108, 240, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-modal__panel .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 108, 240, 0.08);
  border: 1px solid rgba(124, 108, 240, 0.15);
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.support-modal__panel h2 {
  margin-top: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}

.support-modal__panel>p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: .9rem;
}

.support-modal__email {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(124, 108, 240, 0.05);
  border: 1px solid var(--glass-border);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  word-break: break-all;
}

.support-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.support-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 130px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s var(--ease);
}

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

.support-modal__action--primary {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px var(--primary-glow);
}

.support-modal__action--ghost {
  background: transparent;
  border-color: var(--glass-border);
}

.support-modal__feedback {
  margin-top: 14px;
  min-height: 20px;
  color: var(--secondary);
  font-size: .85rem;
  font-weight: 700;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  padding-top: calc(var(--header-h) + 60px);
  text-align: center;
}

.legal-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-top: 14px;
  color: var(--text);
}

.legal-hero p {
  color: var(--text-soft);
  margin-top: 8px;
}

.legal-shell {
  padding: 28px 0 80px;
}

.legal-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(124, 108, 240, 0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.legal-card h2 {
  margin-top: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-15px, 25px, 0) scale(1.08); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1.15); box-shadow: 0 0 20px var(--primary-glow); }
  50% { transform: scale(1.22); box-shadow: 0 0 40px var(--primary-glow), 0 0 60px var(--secondary-glow); }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 180, 166, 0.1), 0 0 0 1px rgba(0, 180, 166, 0.2);
  }
  50% {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(124, 108, 240, 0.12), 0 0 0 2px rgba(124, 108, 240, 0.25);
  }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet landscape / small desktop */
@media (max-width: 1200px) {
  .carousel-slide.is-prev { transform: translateX(calc(-50% - 270px)) scale(0.78); }
  .carousel-slide.is-next { transform: translateX(calc(-50% + 270px)) scale(0.78); }
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__copy {
    max-width: none;
    margin-inline: auto;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 30px);
  }

  .hero__visual {
    margin-top: 20px;
  }

  .phone-mockup {
    transform: perspective(1200px) rotateY(0) rotateX(2deg);
  }

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

  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-slide.is-prev { transform: translateX(calc(-50% - 240px)) scale(0.75); opacity: 0.4; }
  .carousel-slide.is-next { transform: translateX(calc(-50% + 240px)) scale(0.75); opacity: 0.4; }

  .pricing-grid {
    max-width: 820px;
  }
}

/* Tablet portrait / mobile breakpoint */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .phone-mockup {
    width: 240px;
    border-radius: 38px;
    padding: 10px;
  }

  .phone-mockup__screen {
    border-radius: 30px;
  }

  .feature-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .steps-row::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .price-card--popular {
    transform: none;
    order: -1;
  }

  .price-card--popular:hover {
    transform: translateY(-6px);
  }

  /* Carousel: hide prev/next, show only active */
  .carousel-slide.is-prev,
  .carousel-slide.is-next {
    opacity: 0;
    visibility: hidden;
  }

  .carousel-slide.is-active {
    transform: translateX(-50%) scale(1);
  }

  .carousel-track {
    min-height: 620px;
  }

  .carousel-nav--left { left: 8px; }
  .carousel-nav--right { right: 8px; }
  .carousel-nav { width: 44px; height: 44px; }
  .carousel-nav svg { width: 22px; height: 22px; }

  .showcase-btns {
    gap: 6px;
  }

  .showcase-btn {
    padding: 8px 14px;
    font-size: .8rem;
  }

  .proof-strip__inner {
    gap: 24px;
  }

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

  .cta-band {
    padding: 40px 24px;
  }

  .cta-band__links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

  .carousel-slide {
    width: 250px;
  }

  .carousel-slide.is-active {
    transform: translateX(-50%) scale(0.95);
  }

  .carousel-track {
    min-height: 570px;
  }

  .lang-flags {
    font-size: 1.6rem;
    gap: 12px;
  }

  .cta-band {
    border-radius: var(--radius-lg);
  }

  .cta-band__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-band .store-btn {
    width: 100%;
    max-width: 260px;
  }

  .support-modal__actions {
    flex-direction: column;
  }

  .support-modal__action {
    width: 100%;
  }
}