/* ===== Pepties Website — Design System v2 ===== */
/* Consistent with app design from stitch/ screens  */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

/* ---- Design Tokens: Light (default — matches app) ---- */
:root {
  /* Brand */
  --primary:        #00C7B0;
  --primary-dark:   #009e8c;
  --secondary:      #1A6FA8;
  --gradient-cta:   linear-gradient(90deg, #00C9B1 0%, #1A6FA8 100%);
  --gradient-hero:  linear-gradient(135deg, #00C9B1 0%, #1A6FA8 100%);

  /* Light BG — matches app #F4F7FA */
  --bg-primary:     #F4F7FA;
  --bg-secondary:   #EEF2FF;
  --bg-card:        rgba(255,255,255,0.80);
  --bg-card-solid:  #ffffff;
  --glass-border:   rgba(0,0,0,0.07);
  --glass-blur:     blur(20px);

  /* Text */
  --text-primary:   #1A1A2E;
  --text-secondary: #8A94A6;
  --text-muted:     #B0B8C9;

  /* Semantic */
  --success:  #2DD4A0;
  --warning:  #fbbf24;
  --error:    #FF6B6B;

  /* Feature icon tint — matches app's #E0FBF7 */
  --icon-teal-bg:   #E0FBF7;
  --icon-blue-bg:   #EEF4FB;
  --icon-pink-bg:   #FFF0F8;
  --icon-amber-bg:  #FFF8E7;
  --icon-purple-bg: #F3EEFF;
  --icon-green-bg:  #EDFBF4;

  /* Radius — matches app */
  --radius-sm:  0.75rem;
  --radius:     1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.09);
  --shadow-teal: 0 8px 32px rgba(0,199,176,0.25);

  /* Transition */
  --transition: 0.35s cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-width: 1200px;
}

/* ---- Dark Mode Tokens ---- */
[data-theme="dark"] {
  --bg-primary:     #0f2321;
  --bg-secondary:   #0a1b19;
  --bg-card:        rgba(255,255,255,0.05);
  --bg-card-solid:  rgba(255,255,255,0.07);
  --glass-border:   rgba(255,255,255,0.10);
  --text-primary:   #ffffff;
  --text-secondary: #8A94A6;
  --text-muted:     #64748b;
  --icon-teal-bg:   rgba(0,199,176,0.15);
  --icon-blue-bg:   rgba(26,111,168,0.15);
  --icon-pink-bg:   rgba(244,114,182,0.15);
  --icon-amber-bg:  rgba(251,191,36,0.15);
  --icon-purple-bg: rgba(168,85,247,0.15);
  --icon-green-bg:  rgba(45,212,160,0.15);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.5);
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ---- Mesh Gradient Background (matches splash screen) ---- */
.mesh-bg {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(at 0% 0%, rgba(0,201,177,0.35) 0, transparent 50%),
    radial-gradient(at 100% 100%, rgba(26,111,168,0.30) 0, transparent 50%),
    radial-gradient(at 50% 0%, rgba(238,242,255,0.50) 0, transparent 60%);
}
[data-theme="dark"] .mesh-bg {
  background-image:
    radial-gradient(at 0% 0%, rgba(0,199,176,0.18) 0, transparent 50%),
    radial-gradient(at 100% 100%, rgba(26,111,168,0.18) 0, transparent 50%);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 24px rgba(0,199,176,0.25); }
  50%      { box-shadow: 0 0 48px rgba(0,199,176,0.55); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.65s ease forwards;
}
.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; }
.delay-6 { animation-delay: 0.6s; }

/* ---- Utilities ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(244,247,250,0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
[data-theme="dark"] .navbar { background: rgba(15,35,33,0.80); }
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
}
.nav-brand img {
  width: 36px; height: 36px;
  border-radius: 10px;
  animation: float 4s ease-in-out infinite, pulse-glow 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
  cursor: pointer;
}
.theme-toggle-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.theme-toggle-btn:hover, .theme-toggle-btn.active {
  background: var(--primary);
  color: white;
}
.theme-toggle-btn .material-symbols-outlined { font-size: 18px; }

/* Notify Me CTA */
.btn-notify {
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,199,176,0.30);
  white-space: nowrap;
}
.btn-notify:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 2rem 80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,199,176,0.12);
  border: 1px solid rgba(0,199,176,0.30);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
[data-theme="dark"] .hero-badge { color: var(--primary); background: rgba(0,199,176,0.08); }

.hero-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(0,199,176,0.20);
}

.hero h1, .hero .hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,199,176,0.40); color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,199,176,0.06); }

.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero-trust-item .material-symbols-outlined { font-size: 16px; color: var(--success); }

/* Hero Phone mock */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-wrapper {
  position: relative;
  width: 280px;
  animation: float 5s ease-in-out infinite;
}
.phone-outer {
  background: linear-gradient(145deg, #1A1A2E, #0f2321);
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.30),
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 60px rgba(0,199,176,0.20);
}
.phone-inner {
  background: var(--gradient-hero);
  border-radius: 34px;
  overflow: hidden;
  height: 540px;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 90px; height: 26px;
  background: #1A1A2E;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1;
  background: #F4F7FA;
  margin: 8px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phone-screen-header {
  background: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.phone-screen-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
}
.phone-screen-avatar .material-symbols-outlined { font-size: 16px; color: white; }
.phone-screen-title { font-size: 0.7rem; font-weight: 700; color: #1A1A2E; }
.phone-screen-sub   { font-size: 0.6rem; color: #8A94A6; }

.phone-hero-card {
  margin: 12px;
  background: var(--gradient-cta);
  border-radius: 16px;
  padding: 16px;
  color: white;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.phone-hero-card::after {
  content: '';
  position: absolute;
  right: -20px; bottom: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  filter: blur(16px);
}
.phone-live-dot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.90;
  margin-bottom: 8px;
}
.phone-live-dot::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.phone-hero-score { font-size: 1.4rem; font-weight: 900; margin-bottom: 4px; }
.phone-hero-sub { font-size: 0.62rem; opacity: 0.80; }

.phone-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 12px;
  margin-top: 12px;
  flex-shrink: 0;
}
.phone-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.phone-action-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--icon-teal-bg);
  display: flex; align-items: center; justify-content: center;
}
.phone-action-icon .material-symbols-outlined { font-size: 18px; color: var(--primary); }
.phone-action-label { font-size: 0.55rem; font-weight: 700; color: #1A1A2E; }

.phone-report-cards {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.phone-report {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.phone-report-left { display: flex; align-items: center; gap: 8px; }
.phone-report-icon { width: 28px; height: 28px; border-radius: 8px; background: #F4F7FA; display: flex; align-items: center; justify-content: center; }
.phone-report-icon .material-symbols-outlined { font-size: 14px; color: var(--secondary); }
.phone-report-title { font-size: 0.62rem; font-weight: 700; color: #1A1A2E; }
.phone-report-time  { font-size: 0.52rem; color: #8A94A6; }
.phone-chip {
  font-size: 0.52rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.phone-chip.green { background: rgba(45,212,160,0.12); color: #2DD4A0; }
.phone-chip.blue  { background: rgba(26,111,168,0.12); color: var(--secondary); }

/* Floating glow orbs behind phone */
.hero-glow-1 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,199,176,0.25), transparent 70%);
  border-radius: 50%;
  right: -60px; top: -60px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(26,111,168,0.20), transparent 70%);
  border-radius: 50%;
  left: -40px; bottom: -40px;
  pointer-events: none;
}

/* ---- SECTION COMMONS ---- */
.section {
  padding: 96px 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-full { padding: 96px 2rem; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(0,199,176,0.10);
  border: 1px solid rgba(0,199,176,0.25);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
[data-theme="dark"] .section-label { color: var(--primary); background: rgba(0,199,176,0.08); }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- APP PREVIEW ---- */
.preview-wrapper {
  position: relative;
  overflow: hidden;
}
.preview-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 24px 0 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.preview-track::-webkit-scrollbar { display: none; }
.preview-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 220px;
}
.preview-phone {
  background: linear-gradient(145deg, #1A1A2E, #0d1f1d);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.preview-phone:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 30px 80px rgba(0,199,176,0.20); }
.preview-screen {
  border-radius: 26px;
  overflow: hidden;
  height: 380px;
  background: #F4F7FA;
}
.preview-screen iframe {
  width: 375px;
  height: 812px;
  border: none;
  transform-origin: top left;
  transform: scale(0.587);
  pointer-events: none;
}
.preview-label {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.preview-fade-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to left, var(--bg-primary), transparent);
  pointer-events: none;
}
.preview-fade-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--bg-primary), transparent);
  pointer-events: none;
}

/* ---- FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,199,176,0.25);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-cta);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }

/* Feature icon circles — matching app's #E0FBF7 teal circles */
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-icon.reports  { background: var(--icon-teal-bg); }
.feature-icon.insights { background: var(--icon-purple-bg); }
.feature-icon.chat     { background: var(--icon-green-bg); }
.feature-icon.family   { background: var(--icon-amber-bg); }
.feature-icon.tips     { background: var(--icon-pink-bg); }
.feature-icon.security { background: var(--icon-blue-bg); }

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.feature-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.3;
  z-index: 0;
}
.step-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-teal);
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.step-card p  { font-size: 0.9rem; color: var(--text-secondary); }

/* ---- TECH STACK ---- */
.tech-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.tech-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.tech-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0,199,176,0.30); }
.tech-badge .material-symbols-outlined { font-size: 20px; color: var(--primary); }
.tech-badge .tech-emoji { font-size: 1.2rem; }

/* ---- WAITLIST SECTION ---- */
.waitlist-section {
  background: var(--gradient-hero);
  padding: 96px 2rem;
  position: relative;
  overflow: hidden;
}
.waitlist-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.10), transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.08), transparent 50%);
}
.waitlist-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.waitlist-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.waitlist-inner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-input {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.65); }
.waitlist-input:focus { background: rgba(255,255,255,0.28); box-shadow: 0 0 0 2px rgba(255,255,255,0.50); }
.waitlist-btn {
  background: white;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.waitlist-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.20); }
.waitlist-note { font-size: 0.8rem; opacity: 0.70; margin-top: 14px; }

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  padding: 140px 2rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(at 20% 30%, rgba(0,199,176,0.20) 0, transparent 50%),
    radial-gradient(at 80% 70%, rgba(26,111,168,0.15) 0, transparent 50%);
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

/* ---- CONTENT BLOCKS ---- */
.content-section { max-width: 860px; margin: 0 auto; padding: 0 2rem 100px; }
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.content-block:hover { border-color: rgba(0,199,176,0.20); }
.content-block h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; color: var(--text-primary); }
.content-block h3 { font-size: 1.05rem; font-weight: 600; margin: 18px 0 8px; color: var(--primary); }
.content-block p, .content-block li { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 10px; }
.content-block ul { margin-left: 20px; margin-bottom: 14px; }
.content-block strong { color: var(--text-primary); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 2rem 100px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 22px; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-item:hover { border-color: rgba(0,199,176,0.25); }
.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--icon-teal-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon .material-symbols-outlined { font-size: 20px; color: var(--primary); }
.contact-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; color: var(--text-primary); }
.contact-item p  { font-size: 0.88rem; color: var(--text-secondary); }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 22px; color: var(--text-primary); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text-primary); font-family: inherit; font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,199,176,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 56px 2rem 28px;
  background: var(--bg-card);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; color: var(--text-primary); }
.footer-brand-logo img { width: 30px; height: 30px; border-radius: 8px; }
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 14px; }
.footer-col a { display: block; padding: 4px 0; font-size: 0.88rem; color: var(--text-secondary); transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 20px; border-top: 1px solid var(--glass-border);
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--primary); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1023px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 48px; padding-top: 100px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .steps-grid::before { display: none; }
}
@media (max-width: 767px) {
  .nav-links, .nav-actions .btn-notify { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--bg-primary);
    padding: 2rem;
    gap: 8px;
    z-index: 999;
  }
  .nav-links.open li a {
    display: block;
    padding: 14px 20px;
    font-size: 1.1rem;
    border-radius: var(--radius);
    background: var(--bg-card);
  }
  .section { padding: 64px 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ---- NO-SCROLLBAR ---- */
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ---- FOOTER BRAND LOGO ---- */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.footer-brand-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
}

/* ---- CONTACT ITEM ICON (Material Symbols) ---- */
.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--feature-icon-bg, #E0FBF7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.contact-item-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--primary);
}

/* ---- FAQ ACCORDION ---- */
details.feature-card {
  padding: 20px 24px;
}
details.feature-card summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
details.feature-card summary::-webkit-details-marker { display: none; }
details.feature-card summary .material-symbols-outlined {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
details[open].feature-card summary .material-symbols-outlined {
  transform: rotate(180deg);
}
details.feature-card[open] {
  background: var(--bg-card);
}
details.feature-card p {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
  animation: fadeSlideIn 0.2s ease forwards;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- CONTACT GRID ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 1.5rem 80px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.93rem;
  color: var(--text-secondary);
}
.contact-item a { color: var(--primary); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,199,176,0.15);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ---- PAGE HEADER ---- */
.page-header {
  text-align: center;
  padding: 120px 1.5rem 48px;
  position: relative;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ---- CONTENT SECTIONS (About) ---- */
.content-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.content-block h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.content-block p, .content-block li {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.75;
}
.content-block ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.content-block a { color: var(--primary); text-decoration: none; }
.content-block a:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
  .content-block { padding: 24px; }
  .page-header { padding-top: 100px; }
}