/* ============================================
   UNSTUCK — Modern Premium Landing Page 2026
   Teal #2A7D74 · Coral #F06B5A · Amber #F0A818 · Purple #7C6AE8
   ============================================ */

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

:root {
  --teal: #2A7D74;
  --teal-dark: #1F6560;
  --teal-light: #3AA89E;
  --teal-wash: rgba(42,125,116,0.10);
  --teal-wash-strong: rgba(42,125,116,0.15);
  --coral: #F06B5A;
  --coral-dark: #D4523F;
  --coral-wash: rgba(240,107,90,0.10);
  --amber: #F0A818;
  --amber-wash: rgba(240,168,24,0.10);
  --purple: #7C6AE8;
  --purple-wash: rgba(124,106,232,0.10);
  --text: #1A2B2A;
  --text-sub: #4A5E5C;
  --stone: #6B7E80;
  --mist: #8FA4A6;
  --border: #D0E0DE;
  --haze: #EEF3F3;
  --bg: #F5F8F8;
  --surface: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 999px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; }

/* ── Gradients ── */
.text-gradient { background: linear-gradient(135deg, var(--teal), var(--teal-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-coral { background: linear-gradient(135deg, var(--coral), #E8856F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--coral) 50%, var(--amber) 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ── Section Header ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); background: var(--teal-wash-strong);
  padding: 6px 18px; border-radius: var(--radius-full); margin-bottom: 20px;
}
.section-title { font-size: 44px; font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-sub); line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-full);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 4px 20px rgba(42,125,116,0.25); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(42,125,116,0.35); }
.btn-ghost { background: rgba(255,255,255,0.8); color: var(--teal); backdrop-filter: blur(12px); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--surface); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.btn-white { background: #fff; color: var(--teal); box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,248,248,0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.nav.scrolled { background: rgba(255,255,255,0.92); border-bottom-color: var(--border); box-shadow: 0 1px 16px rgba(0,0,0,0.05); }
.nav-inner { display: flex; align-items: center; height: 90px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { width: 65px; height: 65px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-size: 30px; font-weight: 900; color: var(--text); letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--stone); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-links .nav-cta {
  background: var(--teal); color: #fff !important;
  padding: 10px 24px; border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(42,125,116,0.2);
  transition: all 0.3s;
}
.nav-links .nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(42,125,116,0.3); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); margin-left: auto; }
.nav-mobile { display: none; flex-direction: column; padding: 0 24px 20px; background: var(--surface); }
.nav-mobile a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--haze); }
.nav-mobile .nav-cta { background: var(--teal); color: #fff !important; text-align: center; border-radius: var(--radius-full); padding: 14px; margin-top: 12px; border: none; }
.nav-mobile.open { display: flex; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; padding: 160px 0 60px; overflow: hidden;
  background: linear-gradient(160deg, #F5F8F8 0%, rgba(42,125,116,0.05) 30%, rgba(240,107,90,0.04) 60%, rgba(124,106,232,0.03) 80%, #F5F8F8 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.hero-glow-1 { width: 600px; height: 600px; top: -200px; right: -150px; background: rgba(42,125,116,0.08); animation: float1 20s ease-in-out infinite; }
.hero-glow-2 { width: 500px; height: 500px; bottom: -100px; left: -150px; background: rgba(240,107,90,0.06); animation: float2 18s ease-in-out infinite; }
.hero-glow-3 { width: 400px; height: 400px; top: 20%; left: 35%; background: rgba(124,106,232,0.05); animation: float3 22s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-40px) scale(1.1); } 66% { transform: translate(-20px,20px) scale(0.95); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-30px,30px) scale(1.05); } 66% { transform: translate(40px,-20px) scale(1.1); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.15); } }

.hero-inner { text-align: center; position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--teal); background: rgba(255,255,255,0.8); border: 1.5px solid var(--border);
  padding: 8px 20px; border-radius: var(--radius-full); margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  backdrop-filter: blur(12px);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-size: 64px; font-weight: 900; letter-spacing: -2px; line-height: 1.05; margin-bottom: 24px; }
.hero-subtitle { font-size: 19px; color: var(--text-sub); line-height: 1.7; max-width: 560px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }

/* Trust row */
.hero-trust { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 56px; }
.hero-trust-avatars { display: flex; }
.trust-avatar {
  width: 36px; height: 36px; border-radius: 50%; color: #fff;
  font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--bg); margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.hero-trust-stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.hero-trust-text span { font-size: 13px; color: var(--stone); font-weight: 500; }

/* Hero Phone */
.hero-phone-wrapper { position: relative; display: flex; justify-content: center; margin: 0 auto; max-width: 700px; }
.hero-phone-center {
  width: 280px; height: 560px; position: relative; z-index: 2;
  background: var(--surface); border-radius: 40px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
}
.hero-phone-center .phone-notch { height: 32px; background: var(--surface); position: relative; }
.hero-phone-center .phone-notch::after { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 80px; height: 6px; border-radius: 3px; background: var(--haze); }
.hero-phone-center .phone-screen { padding: 8px 16px 20px; }

/* Floating feature pills */
.hero-float-cards { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.float-card {
  position: absolute; background: rgba(255,255,255,0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(208,224,222,0.6); border-radius: var(--radius-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  animation: floatCard 6s ease-in-out infinite;
  pointer-events: auto;
}
.float-card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card-icon .material-icons-round { font-size: 22px; }
.float-card-text { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
.float-card-sub { font-size: 11px; color: var(--stone); font-weight: 500; }

.float-card-1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-card-2 { top: 35%; right: -10%; animation-delay: -2s; }
.float-card-3 { bottom: 25%; left: -12%; animation-delay: -4s; }
.float-card-4 { bottom: 8%; right: -6%; animation-delay: -1s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Stats Bar ── */
.stats-bar {
  display: flex; justify-content: center; align-items: center; gap: 0;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: 32px 48px; margin-top: 64px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06); border: 1px solid rgba(208,224,222,0.5);
}
.stat-item { text-align: center; flex: 1; }
.stat-number { display: block; font-size: 36px; font-weight: 900; color: var(--teal); letter-spacing: -0.5px; }
.stat-label { font-size: 12px; font-weight: 600; color: var(--stone); letter-spacing: 0.3px; margin-top: 2px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ═══════════════ FEATURES — BENTO GRID ═══════════════ */
.features { padding: 120px 0; background: var(--surface); }

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

.bento-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.bento-card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.bento-card-icon .material-icons-round { font-size: 26px; }
.bento-card-icon-teal { background: var(--teal-wash); color: var(--teal); }
.bento-card-icon-coral { background: var(--coral-wash); color: var(--coral); }
.bento-card-icon-amber { background: var(--amber-wash); color: var(--amber); }
.bento-card-icon-purple { background: var(--purple-wash); color: var(--purple); }

.bento-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 8px; }
.bento-card p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

.bento-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.bento-tag { font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-full); }
.bento-tag-teal { color: var(--teal); background: var(--teal-wash); }
.bento-tag-coral { color: var(--coral); background: var(--coral-wash); }
.bento-tag-amber { color: var(--amber); background: var(--amber-wash); }
.bento-tag-purple { color: var(--purple); background: var(--purple-wash); }

/* Bento sizes */
.bento-lg { grid-column: span 7; min-height: 400px; }
.bento-md { grid-column: span 5; min-height: 400px; }
.bento-md-alt { grid-column: span 6; min-height: 380px; }
.bento-sm { grid-column: span 4; }

/* Bento phone mockup */
.bento-phone {
  width: 220px; height: 380px; background: var(--surface); border-radius: 28px;
  overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.03);
  margin-top: 20px;
  position: relative;
}
.bento-phone .phone-notch { height: 24px; background: var(--surface); position: relative; }
.bento-phone .phone-notch::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 60px; height: 5px; border-radius: 3px; background: var(--haze); }
.bento-phone .phone-screen { padding: 6px 12px 16px; overflow: hidden; }

/* Bento large card layout */
.bento-lg-inner { display: flex; gap: 24px; align-items: flex-start; }
.bento-lg-content { flex: 1; }
.bento-lg-visual { flex-shrink: 0; }

/* Mini illustration for cards without phone */
.bento-illustration {
  margin-top: 20px; padding: 20px; background: var(--surface);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}

/* Habit tracker illustration */
.habit-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 12px;
}
.habit-dot {
  width: 100%; aspect-ratio: 1; border-radius: 6px;
  background: var(--haze); transition: background 0.3s;
}
.habit-dot.filled { background: var(--teal); opacity: 0.8; }
.habit-dot.filled-strong { background: var(--teal); }
.habit-dot.filled-light { background: var(--teal-wash-strong); }

.habit-labels { display: flex; justify-content: space-between; margin-top: 8px; }
.habit-labels span { font-size: 9px; font-weight: 600; color: var(--mist); }

.habit-items { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.habit-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: var(--surface); border-radius: 10px; border: 1px solid var(--border);
}
.habit-check { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.habit-check.done { background: var(--teal); border-color: var(--teal); }
.habit-check.done::after { content: '\2713'; color: #fff; font-size: 11px; font-weight: 700; }
.habit-item-text { font-size: 12px; font-weight: 600; color: var(--text); }
.habit-item-streak { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--teal); background: var(--teal-wash); padding: 3px 8px; border-radius: var(--radius-full); }

/* Medicine tracker illustration */
.med-cards { display: flex; flex-direction: column; gap: 10px; }
.med-card {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--surface); border-radius: 12px; border: 1px solid var(--border);
}
.med-icon-pill { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.med-info { flex: 1; }
.med-name { font-size: 13px; font-weight: 700; color: var(--text); }
.med-dose { font-size: 10px; color: var(--stone); margin-top: 1px; }
.med-time { font-size: 11px; font-weight: 600; color: var(--teal); }
.med-status { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); }
.med-taken { background: var(--teal-wash); color: var(--teal); }
.med-upcoming { background: var(--amber-wash); color: var(--amber); }
.med-progress { margin-top: 14px; }
.med-progress-label { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; color: var(--stone); margin-bottom: 6px; }
.med-progress-bar { height: 6px; background: var(--haze); border-radius: 3px; overflow: hidden; }
.med-progress-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-light)); border-radius: 3px; transition: width 1s ease; }

/* Mini features (6-pack) */
.features-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.feature-mini {
  background: var(--bg); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid transparent; transition: all 0.3s;
}
.feature-mini:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.04); }
.feature-mini-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-mini-icon .material-icons-round { font-size: 22px; }
.feature-mini h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.feature-mini p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* Mock screen content (reused in bento) */
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mock-logo { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.mock-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mock-greeting { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -0.3px; }
.mock-section-title { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.mock-quote-card { background: var(--teal-wash); border-radius: 10px; padding: 10px; margin-bottom: 12px; }
.mock-quote-text { font-size: 10px; color: var(--text); font-style: italic; line-height: 1.4; }
.mock-quote-author { font-size: 9px; color: var(--stone); margin-top: 4px; }
.mock-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mock-cat { border-radius: 10px; padding: 10px 6px; text-align: center; font-size: 16px; line-height: 1.2; }
.mock-cat span { font-size: 7px; font-weight: 600; color: var(--text); display: block; margin-top: 3px; line-height: 1.3; }

/* Image-based category cards */
.mock-categories-img { gap: 6px; }
.mock-cat-img { border-radius: 10px; overflow: hidden; position: relative; }
.mock-cat-img img { width: 100%; height: 70px; object-fit: cover; display: block; border-radius: 10px; }
.mock-cat-img span { position: absolute; bottom: 14px; left: 6px; font-size: 8px; font-weight: 700; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.mock-cat-img small { position: absolute; bottom: 6px; left: 6px; font-size: 6px; font-weight: 500; color: rgba(255,255,255,0.8); text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* Category header with banner image */
.mock-cat-header { position: relative; margin: -6px -12px 10px; border-radius: 10px; overflow: hidden; }
.mock-cat-banner { width: 100%; height: 80px; object-fit: cover; display: block; filter: brightness(0.7); }
.mock-cat-header-text { position: absolute; bottom: 20px; left: 12px; font-size: 14px; font-weight: 800; color: #fff; }
.mock-cat-header-sub { position: absolute; bottom: 8px; left: 12px; font-size: 8px; font-weight: 500; color: rgba(255,255,255,0.8); }

/* Category list mock */
.mock-nav-back { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.mock-track-list { display: flex; flex-direction: column; gap: 2px; }
.mock-track { display: flex; align-items: center; gap: 8px; padding: 8px 6px; border-radius: 8px; }
.mock-track.active { background: var(--teal-wash); }
.mock-track-num { font-size: 10px; font-weight: 600; color: var(--mist); width: 12px; text-align: center; }
.mock-track-info { flex: 1; }
.mock-track-name { font-size: 10px; font-weight: 600; color: var(--text); }
.mock-track-dur { font-size: 8px; color: var(--stone); }
.mock-track-play { font-size: 11px; color: var(--teal); }

/* Player mock */
.mock-player-mini { background: var(--surface); border-radius: 14px; padding: 16px; margin-top: 16px; border: 1px solid var(--border); text-align: center; }
.mock-player-art { font-size: 48px; margin-bottom: 10px; }
.mock-player-title { font-size: 14px; font-weight: 700; color: var(--text); }
.mock-player-cat { font-size: 10px; color: var(--stone); margin-bottom: 14px; }
.mock-player-bar { height: 4px; background: var(--haze); border-radius: 2px; position: relative; margin: 0 4px; }
.mock-player-fill { width: 35%; height: 100%; background: var(--teal); border-radius: 2px; }
.mock-player-thumb { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); position: absolute; top: -3px; left: 33%; box-shadow: 0 1px 4px rgba(42,125,116,0.3); }
.mock-player-times { display: flex; justify-content: space-between; font-size: 8px; color: var(--mist); margin: 4px 4px 12px; }
.mock-player-controls { display: flex; justify-content: center; gap: 20px; align-items: center; }
.mock-ctrl { font-size: 16px; color: var(--stone); }
.mock-ctrl-play { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* Journal mock */
.mock-journal-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.mock-journal-date { font-size: 11px; color: var(--stone); margin-bottom: 14px; }
.mock-journal-week { display: flex; justify-content: space-between; margin-bottom: 16px; }
.mock-day-col { text-align: center; }
.mock-day-label { font-size: 8px; font-weight: 700; color: var(--stone); text-transform: uppercase; margin-bottom: 4px; }
.mock-day { width: 28px; height: 28px; border-radius: 50%; font-size: 11px; font-weight: 600; color: var(--stone); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.mock-day-active { background: var(--teal); color: #fff; }

/* Anxiety chart */
.mock-anxiety-chart { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; margin-bottom: 16px; }
.mock-anxiety-chart-label { font-size: 8px; font-weight: 700; color: var(--stone); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.mock-anxiety-bars { display: flex; align-items: flex-end; gap: 8px; height: 60px; }
.mock-anxiety-bar { flex: 1; background: linear-gradient(180deg, var(--teal-wash-strong), var(--teal-wash)); border-radius: 6px; min-height: 10px; }

/* Journal CTA */
.mock-journal-cta { text-align: center; }
.mock-journal-cta-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.mock-journal-cta-sub { font-size: 10px; color: var(--stone); margin-bottom: 10px; }
.mock-journal-btn { background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; padding: 10px; border-radius: 10px; }

/* Exposure mock */
.mock-exposure-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 12px; text-align: center; }
.mock-field { margin-bottom: 10px; }
.mock-field-label { font-size: 8px; font-weight: 700; color: var(--stone); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.mock-field-value { font-size: 11px; color: var(--text); background: var(--haze); padding: 8px 10px; border-radius: 7px; }
.mock-metrics-row { display: flex; gap: 6px; margin-bottom: 10px; }
.mock-metric { flex: 1; text-align: center; background: var(--haze); border-radius: 8px; padding: 10px 3px; }
.mock-metric-val { font-size: 20px; font-weight: 800; }
.mock-metric-label { font-size: 7px; font-weight: 700; color: var(--stone); text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }
.mock-outcome { display: flex; gap: 6px; justify-content: center; }
.mock-outcome-badge { font-size: 9px; font-weight: 600; padding: 5px 10px; border-radius: var(--radius-full); background: var(--teal-wash); color: var(--teal); }
.mock-outcome-yes { background: var(--amber-wash); color: var(--amber); }

/* Exposure journal list UI */
.mock-exposure-header { margin-bottom: 12px; }
.mock-exposure-btn {
  background: var(--teal); color: #fff; font-size: 12px; font-weight: 700;
  text-align: center; padding: 10px; border-radius: 10px; margin-bottom: 14px;
}
.mock-exposure-list { display: flex; flex-direction: column; gap: 10px; }
.mock-exposure-item {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px;
  background: var(--surface); border-radius: 10px; border: 1px solid var(--border);
}
.mock-exposure-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 4px; flex-shrink: 0; }
.mock-exposure-info { flex: 1; }
.mock-exposure-name { font-size: 12px; font-weight: 700; color: var(--text); }
.mock-exposure-meta { font-size: 9px; color: var(--stone); margin-top: 2px; }

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-it-works { padding: 120px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 72px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, var(--teal-wash), var(--coral-wash), var(--amber-wash), var(--teal-wash));
  z-index: 0;
}
.step-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; z-index: 1;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); border-color: var(--teal); }
.step-number { font-size: 12px; font-weight: 800; color: var(--mist); letter-spacing: 1px; margin-bottom: 16px; }
.step-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-wash); color: var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon .material-icons-round { font-size: 28px; }
.step-card:nth-child(2) .step-icon { background: var(--coral-wash); color: var(--coral); }
.step-card:nth-child(3) .step-icon { background: var(--amber-wash); color: var(--amber); }
.step-card:nth-child(4) .step-icon { background: var(--purple-wash); color: var(--purple); }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials { padding: 120px 0; background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; }
.testimonial-card {
  background: var(--bg); border-radius: var(--radius-xl); padding: 32px;
  border: 1px solid var(--border); transition: all 0.4s;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  opacity: 0; transition: opacity 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.05); }
.testimonial-card:hover::before { opacity: 1; }
.testimonial-featured { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.testimonial-featured .testimonial-text { font-size: 18px; }
.testimonial-stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--stone); margin-top: 2px; }

/* ═══════════════ FAQ ═══════════════ */
.faq { padding: 100px 0; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  font-size: 16px; font-weight: 700; color: var(--text);
  padding: 20px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-question::after { content: '+'; font-size: 22px; color: var(--teal); font-weight: 300; transition: transform 0.3s; }
.faq-item[open] .faq-question::after { content: '\2212'; transform: rotate(180deg); }
.faq-question::-webkit-details-marker { display: none; }
.faq-answer { font-size: 15px; color: var(--text-sub); line-height: 1.7; padding-bottom: 20px; }

/* ═══════════════ CTA ═══════════════ */
.cta { padding: 60px 0 100px; }
.cta-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, #1A5550 100%);
  border-radius: var(--radius-2xl); padding: 80px 40px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(42,125,116,0.25);
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape-1 { width: 500px; height: 500px; top: -200px; right: -150px; background: rgba(255,255,255,0.04); }
.cta-shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; background: rgba(255,255,255,0.03); }
.cta-shape-3 { width: 200px; height: 200px; top: 50%; left: 60%; background: rgba(240,107,90,0.06); }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: 44px; font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -0.8px; }
.cta-subtitle { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: #1A2B2A; color: rgba(255,255,255,0.65); padding: 64px 0 40px; }
.footer-top { display: flex; gap: 80px; margin-bottom: 48px; }
.footer-brand { flex: 1; max-width: 280px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.footer-brand-name { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 1.5px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-desc { font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-bottom p { font-size: 13px; margin-bottom: 8px; }
.footer-disclaimer { font-size: 11px !important; color: rgba(255,255,255,0.35); line-height: 1.5; max-width: 600px; }

/* ═══════════════ LEGAL PAGES ═══════════════ */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.legal-page .legal-updated { font-size: 14px; color: var(--stone); margin-bottom: 40px; }
.legal-page h2 { font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; color: var(--text); }
.legal-page h3 { font-size: 17px; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--text-sub); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--teal); }
.legal-content { max-width: 780px; margin: 0 auto; }

/* ═══════════════ ANIMATIONS ═══════════════ */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate="fade-up-stagger"] { transition-delay: calc(var(--stagger, 0) * 100ms); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: 48px; }
  .bento-lg { grid-column: span 12; }
  .bento-md { grid-column: span 6; }
  .bento-md-alt { grid-column: span 6; }
  .bento-sm { grid-column: span 6; }
  .bento-lg-inner { flex-direction: column; }
  .features-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-featured { grid-row: auto; }
  .float-card-1, .float-card-3 { left: -4%; }
  .float-card-2, .float-card-4 { right: -4%; }
}

@media (max-width: 768px) {
  .nav-logo-img { width: 36px; height: 36px; }
  .nav-logo-text { font-size: 20px; letter-spacing: 1.5px; }
  .nav-inner { height: 72px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { padding: 120px 0 40px; }
  .hero-title { font-size: 38px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 16px; }
  .hero-phone-center { width: 240px; height: 480px; }
  .float-card { display: none; }
  .stats-bar { flex-wrap: wrap; gap: 20px; padding: 24px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 40%; }
  .stat-number { font-size: 28px; }
  .section-title { font-size: 30px; }
  .bento-lg, .bento-md, .bento-md-alt, .bento-sm { grid-column: span 12; }
  .bento-lg-inner { flex-direction: column; }
  .features-mini-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .cta-card { padding: 48px 24px; }
  .cta-title { font-size: 30px; }
}
