/* ============================================
   SNAPTEK LANDING — OVERHAULED STYLES
   Big rounded type, color-shifting sections,
   bento grid, premium dark section, giant footer
   ============================================ */

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

:root {
  --orange: #E8632B;
  --orange-light: #F5945B;
  --orange-glow: rgba(232, 99, 43, 0.12);
  --green: #2BA84A;
  --green-light: #6DD58C;
  --yellow: #F5C842;
  --purple: #6C5CE7;
  --purple-light: #A29BFE;
  --purple-bg: #EEEAFD;
  --purple-bg-deep: #DDD6FE;

  --cream: #F0EDE6;
  --cream-light: #F5F3EE;
  --white: #FAFAF8;
  --dark: #1A1817;
  --dark-card: #2A2826;
  --dark-card-border: rgba(255,255,255,0.08);

  --text-primary: #1A1817;
  --text-secondary: #6B6560;
  --text-tertiary: #9B9590;
  --border: rgba(0, 0, 0, 0.06);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);
  --shadow-float: 0 16px 48px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Reveal Animations --- */
.fade-up, .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible, .reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up, .reveal { opacity: 1; transform: none; transition: none; }
  .text-reveal .word { opacity: 1; transform: none; filter: none; transition: none; }
}

/* --- Three.js Background Canvas --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* --- Text Reveal (word-by-word) --- */
.text-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.text-reveal.revealed .word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Inherit gradient for words inside gradient spans */
.text-gradient-orange .word,
.text-gradient-green .word {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Enhanced Card Transitions --- */
.card-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.card-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- Gradient Texts --- */
.text-gradient-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 60%, #A8E6CF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Color Bands --- */
.section {
  position: relative;
  background: transparent;
}
.section-cream { background: transparent; }
.section-white { background: transparent; }
.section-purple { background: transparent; }
.section-dark { background: transparent; color: #fff; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: transform 160ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(232,99,43,0.3), 0 1px 3px rgba(232,99,43,0.2);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #d45520;
    box-shadow: 0 6px 24px rgba(232,99,43,0.4), 0 2px 6px rgba(232,99,43,0.25);
  }
}
.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  padding: 16px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover { background: #EEECEA; box-shadow: var(--shadow-md); }
}
.btn-lg { font-size: 18px; padding: 20px 40px; border-radius: var(--radius-lg); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}
.nav.scrolled {
  background: rgba(240, 237, 230, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}
.nav-logo-img { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--text-primary); }
}
.nav-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--orange-glow);
  transition: background 200ms ease, transform 160ms var(--ease-out);
}
.nav-cta:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover { background: rgba(232,99,43,0.2); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: visible;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(125,211,160,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245,200,66,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(232,99,43,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-text { position: relative; }
.hero-title {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-floating-note {
  position: absolute;
  right: -30px;
  bottom: 210px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  animation: floatNote 4s ease-in-out infinite;
  z-index: 2;
}
.hero-floating-note-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.hero-floating-note-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-floating-note-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text-primary);
}
.hero-floating-note-text {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}
@keyframes floatNote {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-phone-wrapper { position: relative; }

/* --- Phone Mockup --- */
.phone-mockup {
  position: relative;
  width: 280px;
  background: #1A1817;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-xl), inset 0 0 0 1.5px rgba(255,255,255,0.1);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 22px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 9/19.5;
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.phone-hero {
  width: 300px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Floating Cards --- */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.7);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 3;
}
.fc-icon { font-size: 18px; }
.fc-1 { top: 8%; left: -60px; animation-delay: 0s; }
.fc-2 { top: 28%; right: -70px; animation-delay: 0.8s; }
.fc-3 { top: 52%; left: -50px; animation-delay: 1.6s; }
.fc-4 { top: 72%; right: -60px; animation-delay: 2.4s; }
.fc-5 { bottom: 2%; left: -30px; animation-delay: 3.2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-6px) rotate(0.5deg); }
  66% { transform: translateY(4px) rotate(-0.3deg); }
}

.hero-scroll-hint {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  margin-top: 40px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.section-title-xl {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.section-title-xl em {
  font-style: italic;
  color: var(--purple);
}
.section-title-light { color: #fff; }
.section-title-light em { color: var(--orange-light); }
.section-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
}
.section-subtitle-light { color: rgba(255,255,255,0.6); }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-label-light { color: rgba(255,255,255,0.5); }

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem { padding: 120px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.problem-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}
.problem-card-icon { font-size: 32px; margin-bottom: 12px; }
.problem-card p { font-size: 15px; font-weight: 700; color: var(--text-secondary); }
.problem-solution {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.solution-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--border), var(--orange));
  border-radius: 1px;
}
.solution-text {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--orange);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features { padding: 120px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
}
.feature-card-visual {
  width: 100%; height: 260px;
  overflow: hidden;
  background: var(--cream-light);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 32px 0;
}
.feature-card-visual img {
  width: 80%; max-width: 200px;
  height: auto;
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-md);
}
.feature-card-content { padding: 24px; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fi-notes { background: #FFF3E0; }
.fi-notes svg { stroke: var(--orange); }
.fi-workout { background: #E8F5E9; }
.fi-workout svg { stroke: var(--green); }
.fi-recipe { background: #FFF8E1; }
.fi-recipe svg { stroke: #E6A817; }
.fi-expense { background: #E3F2FD; }
.fi-expense svg { stroke: #1976D2; }
.fi-med { background: #FCE4EC; }
.fi-med svg { stroke: #C62828; }
.fi-ai { background: linear-gradient(135deg, #FFF3E0, #FFF8E1); }
.fi-ai svg { stroke: var(--orange); }
.feature-card-content h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature-card-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   AI SECTION — PURPLE
   ============================================ */
.ai-section { padding: 120px 0; }
.ai-section .section-title-xl { color: var(--text-primary); }

/* AI Bento — reuses .bento-grid + .bento-card */
.ai-bento .bento-card {
  background: var(--white);
}
.ai-bento .bento-dark {
  background: var(--dark);
}

/* AI Demo (large card content) */
.ai-demo { margin-top: 16px; }
.ai-demo-input {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ai-demo-emoji { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.ai-demo-bubble {
  background: rgba(108,92,231,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 500;
}
.ai-demo-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
.ai-demo-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(108,92,231,0.15);
}
.ai-demo-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  background: rgba(108,92,231,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  flex-shrink: 0;
}
.ai-demo-output-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.ai-demo-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-demo-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: rgba(108,92,231,0.05);
  border-radius: 10px;
}
.ai-demo-check svg { flex-shrink: 0; }

/* AI Transform rows (small card) */
.ai-transform-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.ai-transform-row + .ai-transform-row {
  border-top: 1px solid rgba(0,0,0,0.05);
}
.ai-transform-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.ai-transform-emoji { font-size: 20px; }
.ai-transform-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}
.ai-transform-result {
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
}
.ai-transform-arrow { flex-shrink: 0; }

/* ============================================
   BENTO / PRO SECTION
   ============================================ */
.pro-section { padding: 120px 0; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}
.bento-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.bento-label-light { color: rgba(255,255,255,0.5); }
.bento-label-orange { color: var(--orange); }
.bento-badge {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--dark);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
}
.bento-card h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Large bento — spans 2 columns */
.bento-large {
  grid-column: span 2;
}
.bento-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.bento-action {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream-light);
}
.bento-action svg { stroke: var(--text-secondary); flex-shrink: 0; }

/* Stat bento */
.bento-stat { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bento-stat .bento-label { margin-bottom: 8px; }
.bento-stat-prefix {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 8px;
}
.bento-stat-value {
  font-size: clamp(77px, 9.6vw, 115px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 4px;
}
/* Bigger stat for AI bento */
.ai-bento .bento-stat-value {
  font-size: clamp(157px, 20vw, 235px);
}
.bento-stat-unit {
  font-size: 0.5em;
  font-weight: 800;
  color: var(--text-secondary);
}

/* Dark bento */
.bento-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark-card-border);
}
.bento-dark h3 { color: #fff; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.15; }
.bento-dark p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.6; }

/* Medium bento — spans 2 columns */
.bento-medium { grid-column: span 2; }

/* Small bento */
.bento-small {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bento-small-icon { font-size: 36px; margin: 16px 0 12px; }
.bento-small-detail { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.bento-small-sub { font-size: 13px; color: var(--text-tertiary); margin-top: 2px; }

.bento-color-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0 14px;
}
.dot {
  width: 32px; height: 32px;
  border-radius: 50%;
}
.dot-purple { background: var(--purple-light); }
.dot-orange { background: var(--orange); }
.dot-green { background: var(--green); }
.dot-yellow { background: var(--yellow); }
.dot-blue { background: #5B9BD5; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing { padding: 120px 0; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}
.pricing-card-pro {
  background: var(--dark);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--orange);
  color: #fff;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card-header {
  margin-bottom: 16px;
}
.pricing-plan-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.5;
}
.pricing-price {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 8px 0 4px;
}
.pricing-mo {
  font-size: 0.35em;
  font-weight: 700;
  opacity: 0.5;
  letter-spacing: 0;
}
.pricing-period {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.5;
}
.pricing-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 24px;
}
.btn-pricing {
  width: 100%;
  justify-content: center;
  margin-bottom: 28px;
}
.pricing-card-pro .btn-primary {
  background: var(--orange);
}
.pricing-card-pro .btn-secondary {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(128,128,128,0.15);
}
.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.pf-check {
  font-size: 14px;
  color: var(--green);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.pf-check-pro { color: var(--orange); }
.pf-disabled { opacity: 0.35; }
.pf-x {
  font-size: 14px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 32px;
}

/* ============================================
   MOTIVATION SECTION
   ============================================ */
.motivation { padding: 120px 0; }
.motivation-words {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.mw {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: color 300ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .mw:hover { color: var(--orange); }
}
.mw-divider {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.35;
  flex-shrink: 0;
}

/* ============================================
   DARK SHOWCASE SECTION
   ============================================ */
.showcase { padding: 120px 0; overflow: hidden; }
.showcase-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sf-icon {
  position: absolute;
  font-size: 28px;
  opacity: 0.15;
  animation: floatCard 8s ease-in-out infinite;
}
.sf-1 { top: 8%; left: 5%; animation-delay: 0s; }
.sf-2 { top: 15%; right: 8%; animation-delay: 1s; }
.sf-3 { top: 50%; left: 3%; animation-delay: 2s; }
.sf-4 { top: 60%; right: 5%; animation-delay: 3s; }
.sf-5 { bottom: 15%; left: 8%; animation-delay: 4s; }
.sf-6 { bottom: 10%; right: 10%; animation-delay: 5s; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: transform 400ms var(--ease-out), background 300ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .showcase-feature-card:hover {
    transform: translateX(6px);
    background: #353331;
  }
}
.sfc-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sfc-icon svg { stroke: rgba(255,255,255,0.6); }
.showcase-feature-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.showcase-feature-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

.showcase-phone-dark { display: flex; justify-content: center; }
.phone-dark-variant {
  width: 280px;
  background: #333;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.3), inset 0 0 0 1.5px rgba(255,255,255,0.08);
}
.phone-dark-variant::before { background: #333; }

/* ============================================
   ALTERNATING SHOWCASE
   ============================================ */
.alternating { padding: 120px 0; }
.alt-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.alt-item:last-child { margin-bottom: 0; }
.alt-item-reverse { direction: rtl; }
.alt-item-reverse > * { direction: ltr; }
.alt-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.12;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.alt-text h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.alt-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
}
.alt-phone { display: flex; justify-content: center; }
.alt-phone .phone-mockup {
  width: 260px;
  transition: transform 500ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .alt-item:hover .phone-mockup { transform: translateY(-8px) rotate(1deg); }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust { padding: 100px 0; }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}
.trust-icon { font-size: 36px; margin-bottom: 20px; }
.trust-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.trust-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { padding: 120px 0; overflow: hidden; }
.final-cta-content { text-align: center; position: relative; z-index: 1; }
.final-cta-content h2 {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.final-cta-content p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-cta-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 600;
}

/* ============================================
   FOOTER — GIANT BRAND
   ============================================ */
.footer {
  background: var(--cream);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}
.footer-col h4 em { font-style: italic; }
.footer-col a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  transition: color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { color: var(--orange); }
}

.footer-brand-giant {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.footer-giant-icon {
  width: clamp(100px, 18vw, 240px);
  height: clamp(100px, 18vw, 240px);
  border-radius: clamp(24px, 4.5vw, 56px);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  object-fit: contain;
}
.footer-giant-text {
  font-size: clamp(100px, 22vw, 260px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--text-primary);
  min-width: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-tertiary);
}
.footer-bottom-left a {
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-bottom-left a:hover { color: var(--text-primary); }
}
.footer-bottom-right { display: flex; gap: 16px; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 200ms ease, background 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-social:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.05);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-floating-note { display: none; }
  .hero-ctas { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .bento-medium { grid-column: span 2; }
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .showcase-phone-dark { order: -1; }
  .alt-item {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .alt-item-reverse { direction: ltr; }
  .alt-text p { max-width: 100%; margin: 0 auto; }
  .trust-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 100px 0 40px; min-height: auto; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
  .phone-hero { width: 240px; }
  .floating-card { font-size: 11px; padding: 8px 14px; }
  .fc-1 { left: -20px; } .fc-2 { right: -20px; }
  .fc-3 { left: -10px; } .fc-4 { right: -10px; }
  .fc-5 { left: 0; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .feature-card-visual { height: 220px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .bento-medium { grid-column: span 1; }
  .bento-actions-grid { grid-template-columns: 1fr; }
  .motivation-words { flex-direction: column; gap: 8px; }
  .mw-divider { display: none; }
  .alt-phone .phone-mockup { width: 220px; }
  .alt-item { margin-bottom: 64px; }
  .footer-links-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-giant-text { font-size: 64px; }
  .footer-giant-icon { width: 80px; height: 80px; border-radius: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 30px; }
  .section-title-xl { font-size: 32px; }
  .hero-title { font-size: 32px; }
  .problem-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .phone-hero { width: 220px; }
  .floating-card { display: none; }
  .floating-card.fc-1, .floating-card.fc-2, .floating-card.fc-5 { display: flex; }
  .mw { font-size: 28px; }
  .footer-links-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-giant-text { font-size: 52px; }
  .footer-giant-icon { width: 64px; height: 64px; border-radius: 16px; }
  .phone-dark-variant { width: 240px; }
}

/* ============================================
   SUBPAGES (Privacy, FAQ)
   ============================================ */
.subpage-hero {
  padding: 140px 0 60px;
  text-align: center;
}
.subpage-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.subpage-hero p {
  font-size: 17px;
  color: var(--text-secondary);
}
.subpage-content {
  padding: 0 0 120px;
}
.subpage-content .container {
  max-width: 760px;
}
.subpage-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}
.subpage-content h2:first-child {
  margin-top: 0;
}
.subpage-content p,
.subpage-content li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.subpage-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.subpage-content a {
  color: var(--orange);
  font-weight: 600;
  transition: opacity 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .subpage-content a:hover { opacity: 0.7; }
}

/* FAQ specific */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 300ms var(--ease-out);
}
.faq-item.active {
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: var(--text-primary);
  transition: background 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .faq-question:hover { background: rgba(0,0,0,0.02); }
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out);
  color: var(--text-tertiary);
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out), padding 400ms var(--ease-out);
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
