:root {
  --bg: #07070A;
  --bg-elevated: rgba(255, 255, 255, 0.03);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --surface-glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --primary: #F59E0B;
  --primary-deep: #D97706;
  --primary-glow: rgba(245, 158, 11, 0.2);
  --primary-dim: rgba(245, 158, 11, 0.1);
  --gradient: linear-gradient(135deg, #F59E0B 0%, #FF8C00 50%, #FF6B35 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
  --gold: #FFD700;
  --orange: #FF6B35;
  --text: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.3);
  --success: #4ADE80;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --radius-pill: 9999px;
  --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.12);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -15%, rgba(245, 158, 11, 0.06), transparent),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(255, 107, 53, 0.05), transparent),
    radial-gradient(ellipse 40% 35% at 0% 60%, rgba(245, 158, 11, 0.03), transparent);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Fluid Island Nav ── */
nav {
  position: fixed;
  top: clamp(8px, 1.5vh, 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(92%, 1120px);
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 8px;
  transition: all 0.4s var(--ease);
}

nav.scrolled {
  background: rgba(7, 7, 10, 0.88);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 8px;
  max-width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
  padding: 4px 12px 4px 4px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.nav-brand:hover {
  border-color: var(--border-light);
  background: var(--surface-hover);
}

.nav-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-brand .brand-logo-full {
  width: auto;
  height: 28px;
  object-fit: contain;
}

/* ── Logo Hero ── */
.logo-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.logo-hero img {
  width: clamp(80px, 12vw, 140px);
  height: auto;
  filter: drop-shadow(0 0 30px var(--primary-glow));
  animation: logoFloat 6s ease-in-out infinite;
}

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

.logo-hero-text {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* ── Icon with border treatment ── */
.icon-bordered {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2px;
  background: var(--surface);
}

.icon-bordered-lg {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.05);
}

/* ── Section with logo watermark ── */
.section-logo-bg {
  position: relative;
  overflow: hidden;
}

.section-logo-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: url('/assets/logo.png') no-repeat center;
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-dim);
}

.nav-download {
  background: var(--gradient) !important;
  color: #000 !important;
  padding: 7px 20px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all 0.4s var(--ease) !important;
}

.nav-download:hover {
  transform: translateY(-1px) scale(1.03) !important;
  box-shadow: 0 8px 32px var(--primary-glow) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 38px;
  height: 38px;
  border: none;
  background: var(--surface);
  border-radius: var(--radius-xs);
  cursor: pointer;
  padding: 10px 8px;
  border: 1px solid var(--border);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); width: 20px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); width: 20px; }

/* ── Hero ── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-dim);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: clamp(14px, 2vw, 20px);
}

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

.hero p {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(36px, 5vw, 52px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Phone Mockup ── */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 60%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.phone-mockup {
  position: relative;
  width: min(300px, 70vw);
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1A1A2E 0%, #0F0F14 100%);
  border-radius: clamp(32px, 5vw, 48px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: clamp(12px, 2vw, 16px);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: clamp(24px, 3.5vw, 30px);
  background: var(--bg);
  border-radius: 0 0 clamp(12px, 1.5vw, 16px) clamp(12px, 1.5vw, 16px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-notch-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: clamp(20px, 3vw, 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0F0F14 0%, #1A1A2E 100%);
  position: relative;
}

/* App UI inside phone */
.app-ui {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 2.5vw, 24px);
  gap: 12px;
}

.app-ui-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.app-ui-status span { font-size: 0.5rem; }

.app-ui-header {
  text-align: center;
  padding: 4px 0;
}

.app-ui-header small {
  font-size: 0.5rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.app-ui-header h3 {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

/* Circular timer */
.app-ui-timer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timer-ring-bg {
  width: clamp(80px, 14vw, 110px);
  height: clamp(80px, 14vw, 110px);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.04);
  position: absolute;
}

.timer-ring {
  width: clamp(80px, 14vw, 110px);
  height: clamp(80px, 14vw, 110px);
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  position: absolute;
  transform: rotate(45deg);
  animation: timerSpin 3s linear infinite;
}

@keyframes timerSpin {
  to { transform: rotate(405deg); }
}

.timer-ring-glow {
  width: clamp(80px, 14vw, 110px);
  height: clamp(80px, 14vw, 110px);
  border-radius: 50%;
  position: absolute;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  animation: timerGlow 3s ease-in-out infinite;
}

@keyframes timerGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.timer-display {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timer-display .hours {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.timer-display .label {
  font-size: 0.45rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Carousel */
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.phone-mockup { position: relative; }

.carousel-dots {
  position: absolute;
  bottom: clamp(6px, 1vw, 10px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
  width: 16px;
  border-radius: 3px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 10, 0.7);
  backdrop-filter: blur(8px);
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
  padding: 0;
  line-height: 1;
}

.carousel-arrow:hover {
  background: rgba(7, 7, 10, 0.9);
  color: var(--text);
  border-color: var(--border-light);
}

.carousel-prev { left: -34px; }
.carousel-next { right: -34px; }

@media (max-width: 768px) {
  .carousel-arrow { display: none; }
}

/* ── Lifestyle Section ── */
.lifestyle-section {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  background-color: #07070A;
  padding: clamp(48px, 6vw, 72px) 0;
}

.lifestyle-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  filter: saturate(0.4) brightness(0.7);
}

.lifestyle-section-sm {
  min-height: 280px;
}

.lifestyle-section .lifestyle-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px);
}

.lifestyle-section .lifestyle-content p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #E2E8F0;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.lifestyle-section .lifestyle-content .section-label {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .lifestyle-section .lifestyle-content h2 { max-width: 100%; }
  .lifestyle-section .lifestyle-content p { max-width: 100%; }
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,10,0.97) 0%, rgba(7,7,10,0.92) 50%, rgba(7,7,10,0.82) 100%);
  z-index: 1;
}

.lifestyle-overlay-right {
  background: linear-gradient(90deg, rgba(7,7,10,0.2) 0%, rgba(7,7,10,0.4) 50%, rgba(7,7,10,0.85) 100%);
}

.lifestyle-overlay-center {
  background: linear-gradient(0deg, rgba(7,7,10,0.9) 0%, rgba(7,7,10,0.3) 50%, rgba(7,7,10,0.1) 100%);
}

.lifestyle-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px);
}

.lifestyle-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 600px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lifestyle-content p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.lifestyle-content .section-label {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .lifestyle-overlay {
    background: linear-gradient(0deg, rgba(7,7,10,0.97) 0%, rgba(7,7,10,0.90) 50%, rgba(7,7,10,0.80) 100%);
  }
  .lifestyle-content h2 { max-width: 100%; }
  .lifestyle-content p { max-width: 100%; }
}

/* ── Section Accent Colors ── */
.section--health .lifestyle-overlay {
  background: linear-gradient(135deg, rgba(7, 7, 10, 0.97) 0%, rgba(74, 222, 128, 0.05) 50%, rgba(7, 7, 10, 0.95) 100%);
}
.section--fitness .lifestyle-overlay {
  background: linear-gradient(135deg, rgba(7, 7, 10, 0.97) 0%, rgba(245, 158, 11, 0.05) 50%, rgba(7, 7, 10, 0.95) 100%);
}
.section--results .lifestyle-overlay {
  background: linear-gradient(135deg, rgba(7, 7, 10, 0.97) 0%, rgba(96, 165, 250, 0.05) 50%, rgba(7, 7, 10, 0.95) 100%);
}
.section--privacy .lifestyle-overlay {
  background: linear-gradient(135deg, rgba(7, 7, 10, 0.97) 0%, rgba(167, 139, 250, 0.05) 50%, rgba(7, 7, 10, 0.95) 100%);
}

/* Section label accent variants */
.section-label--green {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
  color: #4ADE80;
  border-color: rgba(74, 222, 128, 0.3);
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.4);
}
.section-label--amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.3);
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.section-label--blue {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #60A5FA;
  border-color: rgba(96, 165, 250, 0.3);
  text-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}
.section-label--purple {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: #A78BFA;
  border-color: rgba(167, 139, 250, 0.3);
  text-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
}

/* Section title accent variants */
.section-title--green {
  color: #fff;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}
.section-title--amber {
  color: #fff;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}
.section-title--blue {
  color: #fff;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}
.section-title--purple {
  color: #fff;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

/* Section spacing */
.section {
  padding: clamp(40px, 6vw, 60px) 0;
}

.section-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

/* Section Dividers */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: clamp(16px, 3vw, 24px) 0;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Phone UI Mockup (new) */
.phone-ui {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 2.5vw, 24px);
  gap: 12px;
}

.phone-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.phone-ui-time { font-size: 0.6rem; font-weight: 600; }

.phone-ui-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.phone-ui-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.phone-ui-app-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.phone-ui-app-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.phone-ui-app-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.phone-ui-timer {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-ui-timer-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-ui-timer-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.phone-ui-timer-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.phone-ui-timer-label {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.45rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.phone-ui-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(245, 158, 11, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.phone-ui-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.phone-ui-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.phone-ui-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.5rem;
  color: var(--text-dim);
}

/* Lifestyle Features */
.lifestyle-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.lifestyle-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #E2E8F0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  transition: all 0.3s var(--ease);
}

.lifestyle-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-light);
  transform: translateX(4px);
}

.lifestyle-feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Privacy Features */
.privacy-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.privacy-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease);
}

.privacy-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.privacy-feature strong {
  display: block;
  font-size: 1rem;
  color: #F1F5F9;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.privacy-feature p {
  font-size: 0.9rem;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ── Glass Cards (no images) ── */
.modern-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 5vw, 48px);
}

.modern-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--surface-glass);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 36px);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}

.modern-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  background: var(--surface-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.modern-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.08);
}

.modern-card h3 {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.modern-card p {
  font-size: clamp(0.85rem, 1vw, 0.9rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.modern-card-accent {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
  margin-bottom: 14px;
}

/* ── Inline phone screenshot frame ── */
.screenshot-frame {
  position: relative;
  width: min(220px, 65%);
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1A1A2E, #0F0F14);
  border-radius: clamp(20px, 3vw, 32px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  margin: 0 auto;
  flex-shrink: 0;
}

.screenshot-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 18px;
  background: var(--bg);
  border-radius: 0 0 10px 10px;
  z-index: 2;
}

.screenshot-frame::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
  z-index: 3;
}

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

/* ── Premium Lifestyle Split Section ── */
.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
  margin-top: clamp(48px, 8vw, 80px);
  position: relative;
}

.lifestyle-split-image {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Atmospheric background behind the phone */
.lifestyle-split-atmosphere {
  position: absolute;
  inset: -40px;
  border-radius: calc(var(--radius) + 20px);
  overflow: hidden;
  z-index: 0;
}

.lifestyle-split-atmosphere-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.lifestyle-split-atmosphere-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lifestyle-split-atmosphere.no-1 .lifestyle-split-atmosphere-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(245, 158, 11, 0.15), transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(255, 107, 53, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(7, 7, 10, 0.7) 0%, rgba(7, 7, 10, 0.4) 100%);
}

.lifestyle-split-atmosphere.no-2 .lifestyle-split-atmosphere-gradient {
  background:
    radial-gradient(ellipse 70% 50% at 60% 30%, rgba(255, 107, 53, 0.12), transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 80%, rgba(245, 158, 11, 0.08), transparent 60%),
    linear-gradient(225deg, rgba(7, 7, 10, 0.7) 0%, rgba(7, 7, 10, 0.4) 100%);
}

.lifestyle-split-atmosphere.no-3 .lifestyle-split-atmosphere-gradient {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245, 158, 11, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(255, 215, 0, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.75) 0%, rgba(7, 7, 10, 0.35) 100%);
}

.lifestyle-split-atmosphere.no-4 .lifestyle-split-atmosphere-gradient {
  background:
    radial-gradient(ellipse 50% 50% at 40% 60%, rgba(74, 222, 128, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(245, 158, 11, 0.12), transparent 70%),
    linear-gradient(160deg, rgba(7, 7, 10, 0.7) 0%, rgba(7, 7, 10, 0.4) 100%);
}

.lifestyle-split-atmosphere.no-5 .lifestyle-split-atmosphere-gradient {
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(245, 158, 11, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(255, 107, 53, 0.1), transparent 50%),
    linear-gradient(200deg, rgba(7, 7, 10, 0.65) 0%, rgba(7, 7, 10, 0.45) 100%);
}

/* Noise on atmosphere */
.lifestyle-split-atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Floating decorative shapes inside atmosphere */
.lifestyle-split-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.lifestyle-split-shape--ring {
  border: 1.5px solid rgba(245, 158, 11, 0.12);
  background: rgba(245, 158, 11, 0.02);
}

.lifestyle-split-shape--dot {
  background: rgba(245, 158, 11, 0.2);
}

.lifestyle-split-shape--1 {
  width: 80px; height: 80px;
  top: 10%; left: -20px;
  animation: shapeFloat1 16s ease-in-out infinite;
}

.lifestyle-split-shape--2 {
  width: 40px; height: 40px;
  bottom: 15%; right: 10%;
  animation: shapeFloat2 20s ease-in-out infinite;
}

.lifestyle-split-shape--3 {
  width: 24px; height: 24px;
  top: 30%; right: -10px;
  animation: shapeFloat3 14s ease-in-out infinite;
}

@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(120deg); }
  66% { transform: translate(-10px, -35px) rotate(240deg); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.2); }
}

@keyframes shapeFloat3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(10px, -25px); opacity: 0.7; }
}

/* Premium Phone Mockup (floating, glowing) */
.phone-mockup-premium {
  position: relative;
  z-index: 2;
  width: min(260px, 65vw);
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1A1A2E 0%, #0F0F14 100%);
  border-radius: clamp(28px, 4vw, 40px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 120px rgba(245, 158, 11, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: clamp(10px, 1.5vw, 14px);
  overflow: hidden;
  animation: phoneFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.phone-mockup-premium:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 60px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 160px rgba(245, 158, 11, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

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

/* Phone glow behind mockup */
.phone-mockup-premium-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

.phone-mockup-premium .phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: clamp(20px, 3vw, 26px);
  background: var(--bg);
  border-radius: 0 0 clamp(10px, 1.5vw, 14px) clamp(10px, 1.5vw, 14px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup-premium .phone-notch-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.phone-mockup-premium .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: clamp(18px, 2.5vw, 28px);
  overflow: hidden;
}

.phone-mockup-premium .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lifestyle split text */
.lifestyle-split-text {
  position: relative;
}

.lifestyle-split-text .step-number {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -8px;
  position: relative;
}

.lifestyle-split-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}

.lifestyle-split-text p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  max-width: 440px;
}

.lifestyle-split-text ul {
  position: relative;
}

.lifestyle-split-text li {
  position: relative;
}

/* Method cards with background images */
.method-card {
  position: relative;
  overflow: hidden;
}

.method-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transform: scale(1);
  z-index: 0;
}

.method-card:hover .method-card-bg {
  opacity: 0.15;
  transform: scale(1.05);
}

.method-card > *:not(.method-card-bg) {
  position: relative;
  z-index: 1;
}

/* Full-width lifestyle section */
.lifestyle-full {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lifestyle-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

.lifestyle-full-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(245, 158, 11, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.85) 0%, rgba(7, 7, 10, 0.5) 50%, rgba(7, 7, 10, 0.85) 100%);
  pointer-events: none;
}

.lifestyle-full-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px);
  text-align: center;
}

/* Info boxes with glow */
.info-box {
  position: relative;
  overflow: hidden;
}

.info-box-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04), transparent 70%);
  pointer-events: none;
}

/* Premium benefit list */
.benefit-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.benefit-list-item:last-child {
  border-bottom: none;
}

.benefit-list-item:hover {
  padding-left: 8px;
}

.benefit-list-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.08);
}

@media (max-width: 768px) {
  .lifestyle-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lifestyle-split-image {
    min-height: 240px;
    order: -1;
  }
  .lifestyle-split-atmosphere {
    inset: -20px;
  }
  .phone-mockup-premium {
    width: min(220px, 60vw);
  }
  .lifestyle-split-text .step-number {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(12px, 1.5vw, 14px) clamp(24px, 3vw, 32px);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.1vw, 0.92rem);
  text-decoration: none;
  transition: all 0.4s var(--ease);
  border: none;
  cursor: pointer;
  min-height: 48px;
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient);
  color: #000;
  box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--primary-glow);
}

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

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

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

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: var(--surface);
  transform: translateY(-2px);
}

/* ── Sections ── */
section {
  padding: clamp(32px, 5vw, 48px) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(255, 107, 53, 0.08) 100%);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: labelShine 3s ease-in-out infinite;
}

@keyframes labelShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: clamp(16px, 2vw, 24px);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Card Grid (Double-Bezel) ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 5vw, 48px);
}

.card-outer {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5px;
  transition: all 0.4s var(--ease);
}

.card-outer:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-inner {
  background: var(--surface-glass);
  border-radius: calc(var(--radius) - 1.5px);
  padding: clamp(24px, 3vw, 32px);
  height: 100%;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.card-outer:hover .card-inner {
  background: rgba(255, 255, 255, 0.06);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.08);
}

.card-inner h3 {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.card-inner p {
  font-size: clamp(0.82rem, 1.05vw, 0.88rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(32px, 5vw, 48px);
}

.step {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.step:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.step-number {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.08);
}

.step h3 {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: clamp(0.82rem, 1.05vw, 0.88rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Methods ── */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 5vw, 48px);
}

.method-card {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.method-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.method-time {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}

.method-divider {
  width: 32px;
  height: 2px;
  background: var(--gradient);
  margin: 12px auto;
  border-radius: 2px;
  opacity: 0.6;
}

.method-name {
  font-size: clamp(0.85rem, 1.2vw, 0.92rem);
  font-weight: 600;
  margin-bottom: 6px;
}

.method-desc {
  font-size: clamp(0.78rem, 1vw, 0.82rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Discreet Lang ── */
.lang-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.lang-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease);
  padding: 0;
  line-height: 1;
}

.lang-float-btn:hover {
  background: rgba(10, 10, 15, 0.9);
  border-color: var(--border-light);
  transform: scale(1.05);
}

.lang-float-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  min-width: 150px;
  z-index: 999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lang-float-menu.show { display: block; }

.lang-float-opt {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.lang-float-opt:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.lang-float-opt.active {
  color: var(--primary);
  background: var(--primary-dim);
}

@media (max-width: 768px) {
  .lang-float { display: block; }
}

/* ── Split ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 5vw, 48px);
}

/* ── Info box ── */
.info-box {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 36px);
  margin-top: clamp(32px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.info-box h4 {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.info-box p {
  font-size: clamp(0.82rem, 1vw, 0.88rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.info-box ul { padding-left: 18px; }
.info-box li { font-size: clamp(0.82rem, 1vw, 0.88rem); color: var(--text-secondary); line-height: 1.7; margin-bottom: 4px; }
.info-box strong { color: var(--text); }

.info-box.success {
  border-color: rgba(74, 222, 128, 0.15);
  background: rgba(74, 222, 128, 0.04);
}

.info-box.success h4 { color: var(--success); }

/* ── Store buttons ── */
.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(24px, 4vw, 36px);
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 14px);
  padding: clamp(14px, 2vw, 18px) clamp(24px, 4vw, 40px);
  border-radius: var(--radius-sm);
  background: var(--surface-glass);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.4s var(--ease);
  min-width: min(200px, 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.store-btn:hover {
  border-color: rgba(245, 158, 11, 0.2);
  background: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.store-btn-content { text-align: left; }
.store-btn-label { font-size: clamp(0.6rem, 0.9vw, 0.65rem); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.store-btn-name { font-size: clamp(0.88rem, 1.3vw, 1rem); font-weight: 600; }

.store-btn-soon {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 14px);
  padding: clamp(14px, 2vw, 18px) clamp(24px, 4vw, 40px);
  border-radius: var(--radius-sm);
  background: var(--surface-glass);
  border: 1px dashed var(--border);
  color: var(--text-dim);
  text-decoration: none;
  min-width: min(200px, 100%);
  opacity: 0.7;
  transition: all 0.4s var(--ease);
}

.store-btn-soon:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.coming-soon-badge {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 600;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(16px, 3vw, 28px);
  font-size: clamp(0.78rem, 1vw, 0.85rem);
}

.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.25s var(--ease); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-secondary); }
.breadcrumb .sep { color: var(--text-dim); }

/* ── Page ── */
.page {
  padding-top: clamp(24px, 4vh, 40px);
  flex: 1;
}

@media (max-width: 768px) {
  .page {
    padding-top: 72px;
  }
}

.page-header {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  max-width: 560px;
}

/* ── Legal ── */
.legal-section { margin-bottom: 32px; }
.legal-section h2 {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}
.legal-section h3 { font-size: clamp(0.85rem, 1.2vw, 0.95rem); font-weight: 600; margin: 18px 0 8px; }
.legal-section p { font-size: clamp(0.82rem, 1vw, 0.88rem); color: var(--text-secondary); margin-bottom: 8px; }
.legal-section ul { padding-left: 20px; margin-bottom: 8px; }
.legal-section li { font-size: clamp(0.82rem, 1vw, 0.88rem); color: var(--text-secondary); margin-bottom: 4px; }
.legal-section strong { color: var(--text); }

.highlight-box {
  background: var(--primary-dim);
  border-left: 3px solid var(--primary);
  padding: clamp(12px, 2vw, 14px) clamp(14px, 2.5vw, 18px);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  margin: 16px 0;
  font-size: clamp(0.8rem, 1vw, 0.85rem);
  color: var(--text-secondary);
}

/* ── Results grid ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(24px, 4vw, 32px);
}

.result-card {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 24px);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.result-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
  background: var(--surface-hover);
  transform: translateY(-3px);
}

.result-number {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.result-label {
  font-size: clamp(0.75rem, 1vw, 0.82rem);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── CTA box ── */
.cta-box {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 40px);
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.cta-box:hover {
  border-color: rgba(245, 158, 11, 0.15);
}

.cta-box h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  max-width: 480px;
  margin: 0 auto;
}

.cta-box .store-buttons { margin-top: clamp(20px, 3vw, 28px); }

/* ── Page section ── */
.page-section {
  margin-top: clamp(48px, 7vw, 72px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--border);
}

.page-section:first-of-type {
  margin-top: clamp(48px, 8vw, 72px);
}

/* ── App Download Bar ── */
.app-download-bar {
  border-top: 1px solid var(--border);
  padding: clamp(24px, 3vw, 36px) 0;
  background: var(--bg-elevated);
  margin-top: clamp(24px, 4vw, 40px);
}

.app-download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.app-download-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-download-icon {
  border-radius: 12px;
  object-fit: contain;
}

.app-download-info h3 {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  margin-bottom: 2px;
}

.app-download-info p {
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .app-download-inner {
    flex-direction: column;
    text-align: center;
  }
  .app-download-info {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: clamp(28px, 4vw, 40px) 0;
  text-align: center;
  margin-top: auto;
}

footer p { font-size: clamp(0.72rem, 0.9vw, 0.78rem); color: var(--text-dim); }
footer a { color: var(--text-secondary); text-decoration: none; transition: color 0.25s var(--ease); }
footer a:hover { color: var(--primary); }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: clamp(0.75rem, 0.9vw, 0.8rem);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── Animations (CSS) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp 0.8s var(--ease-out) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Intersection Observer ── */
/* Removed: .reveal, .fade-in, .reveal-scale opacity:0 rules — GSAP handles animations */

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: clamp(32px, 5vw, 48px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: clamp(40px, 6vw, 60px);
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }
  .stat-item:last-child { border-bottom: none; }
}

.section-sm {
  padding: clamp(32px, 5vw, 60px) 0;
}

/* ── Gradient text helper ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-text { order: 1; }
  .hero-visual { order: 2; }

  .hero p { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  .phone-mockup {
    width: min(220px, 55vw);
    border-radius: clamp(24px, 4vw, 36px);
  }

  .timer-ring-bg,
  .timer-ring,
  .timer-ring-glow {
    width: clamp(70px, 18vw, 100px);
    height: clamp(70px, 18vw, 100px);
  }

  .timer-display .hours {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  nav {
    position: fixed;
    top: clamp(6px, 1vh, 10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(96%, 600px);
    border-radius: var(--radius-pill);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  nav .container {
    height: 52px;
    padding: 0 6px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(7, 7, 10, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    padding: 0 16px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    align-items: stretch;
    z-index: 1000;
  }

  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    padding: 8px 12px 12px;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    text-align: left;
  }

  .nav-download {
    margin-top: 6px;
    text-align: center !important;
  }

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

  .store-btn, .store-btn-soon { min-width: min(160px, 100%); }

  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .modern-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: min(180px, 50vw);
    border-radius: clamp(20px, 3vw, 28px);
  }

  .hero h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .methods-grid { grid-template-columns: 1fr; }
  .store-buttons { flex-direction: column; }
  .store-btn, .store-btn-soon { width: 100%; }
}

@media (min-width: 769px) {
  .nav-links { display: flex !important; }
}

/* ══════════════════════════════════════════════
   ANIMATION SYSTEM (Modern Animated Site + GSAP)
   ══════════════════════════════════════════════ */

/* ── Scroll Animation Base ── */
/* Removed: [data-anim] opacity:0 rules — GSAP handles all animations */
[data-anim="fade-in"] { transform: none; }

/* ── Parallax Orbs ── */
.parallax-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

.parallax-orb--1 {
  top: 5%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
}

.parallax-orb--2 {
  bottom: 10%;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.18), transparent 70%);
}

.parallax-orb--3 {
  top: 40%;
  left: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
}

/* ── Floating Shapes ── */
.floating-shape {
  position: absolute;
  border: 2px solid rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.03);
  pointer-events: none;
  z-index: 0;
}

.floating-shape--1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 8%;
  animation: shapeDrift 18s ease-in-out infinite;
}

.floating-shape--2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 12%;
  animation: shapeDrift 22s ease-in-out infinite reverse;
}

.floating-shape--3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation: shapeDrift 25s ease-in-out infinite;
}

@keyframes shapeDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, -60px) rotate(180deg); }
  75% { transform: translate(30px, 20px) rotate(270deg); }
}

/* ── Particle System ── */
.particle-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── Lifestyle Section with Background Image ── */
.lifestyle-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.lifestyle-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--bg) 0%,
    rgba(7, 7, 10, 0.25) 50%,
    var(--bg) 100%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes kenBurns {
  0% { transform: scale(1) translateX(0); }
  100% { transform: scale(1.15) translateX(-30px); }
}

/* ── Card Glow Effect ── */
.card-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.6s ease;
  z-index: 0;
}

.modern-card:hover .card-glow,
.step:hover .card-glow,
.method-card:hover .card-glow {
  transform: translateX(-50%) scale(1.5);
}

/* ── Button Pulse Animation ── */
.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
}

/* ── Hero Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 10;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.scroll-indicator-text {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Lifestyle Feature Split ── */
.lifestyle-feature {
  position: relative;
  overflow: hidden;
}

.lifestyle-feature .feature-image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lifestyle-feature .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.lifestyle-feature:hover .feature-image {
  transform: scale(1.05);
}

.lifestyle-feature .feature-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Stats Counter Animation ── */
.stat-number {
  transition: all 0.3s var(--ease);
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
}

/* ── Enhanced Card Interactions ── */
.modern-card,
.step,
.method-card,
.result-card {
  position: relative;
  overflow: hidden;
}

.modern-card::after,
.step::after,
.method-card::after,
.result-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.modern-card:hover::after,
.step:hover::after,
.method-card:hover::after,
.result-card:hover::after {
  left: 100%;
}

/* ── Gradient Text Animation ── */
.gradient-text-animated {
  background: linear-gradient(135deg, #F59E0B, #FF6B35, #F59E0B);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Section Reveal on Scroll ── */
/* Removed: .section-reveal opacity:0 rule — data-anim handles scroll reveals */

/* ── Lifestyle Grid Images ── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 5vw, 48px);
}

.lifestyle-grid-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.lifestyle-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.lifestyle-grid-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lifestyle-grid-item:hover img {
  transform: scale(1.08);
}

.lifestyle-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Horizontal Scroll Section ── */
.horizontal-scroll-section {
  position: relative;
  overflow: hidden;
}

.horizontal-scroll-track {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.horizontal-scroll-track::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

/* ── Interactive Background Gradient ── */
.interactive-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

.interactive-bg-gradient {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

/* ── Noise Texture Overlay ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .particle { display: none; }
  .parallax-orb { display: none; }
  .floating-shape { display: none; }
  .btn-pulse { animation: none; }
  .lifestyle-bg-image { animation: none; }
  .gradient-text-animated { animation: none; }
  .scroll-indicator { animation: none; }
  .logo-hero img { animation: none; }
  .phone-glow { animation: none; }
  .timer-ring { animation: none; }
  .timer-ring-glow { animation: none; }
}

/* ── Mobile Animations ── */
@media (max-width: 768px) {
  .parallax-orb { display: none; }
  .floating-shape { display: none; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .horizontal-scroll-item { flex: 0 0 260px; }
}

@media (max-width: 480px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
  .horizontal-scroll-item { flex: 0 0 100%; }
}
