/* ============================================
   SKIN TWINS - Fresh, Fun, Social Landing Page
   ============================================ */

:root {
  /* Warm palette from your app */
  --cream: #faf6f1;
  --warm-beige: #f5ede3;
  --caramel: #d4a574;
  --terracotta: #cc8f70;
  --soft-brown: #846658;
  --sage: #75a089;
  --eucalyptus: #5a8c6e;
  --olive: #4a6b52;
  --honey: #f2d88c;
  --buttercream: #faf0d2;

  /* Text */
  --text-primary: #2d2926;
  --text-secondary: #5c5450;
  --text-muted: #8a827d;

  /* Accent gradients */
  --gradient-sage: linear-gradient(135deg, #75a089 0%, #5a8c6e 100%);
  --gradient-warm: linear-gradient(135deg, #f2d88c 0%, #cc8f70 100%);
  --gradient-glow: linear-gradient(135deg, rgba(117, 160, 137, 0.2) 0%, rgba(242, 216, 140, 0.2) 100%);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */

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

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(117, 160, 137, 0.3) 0%, transparent 70%);
}

.blob-2 {
  width: 500px;
  height: 500px;
  bottom: 20%;
  left: -150px;
  background: radial-gradient(circle, rgba(242, 216, 140, 0.35) 0%, transparent 70%);
  animation-delay: -7s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  right: 10%;
  background: radial-gradient(circle, rgba(204, 143, 112, 0.2) 0%, transparent 70%);
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--space-md) 0;
  background: rgba(250, 246, 241, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 41, 38, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-sage);
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav {
  display: flex;
  gap: var(--space-xl);
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--gradient-sage);
  color: white;
  box-shadow: 0 4px 14px rgba(90, 140, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 140, 110, 0.4);
}

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

.btn-ghost:hover {
  background: rgba(117, 160, 137, 0.1);
  color: var(--sage);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid rgba(117, 160, 137, 0.3);
}

.btn-outline:hover {
  background: rgba(117, 160, 137, 0.1);
  border-color: var(--sage);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(117, 160, 137, 0.1);
  border: 1px solid rgba(117, 160, 137, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--olive);
  margin-bottom: var(--space-lg);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.highlight {
  position: relative;
  color: var(--sage);
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: -0.05em;
  right: -0.05em;
  height: 0.35em;
  background: var(--honey);
  opacity: 0.5;
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-3deg);
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  margin-left: -10px;
  background: linear-gradient(135deg, hsl(var(--hue), 60%, 70%) 0%, hsl(var(--hue), 50%, 60%) 100%);
}

.avatar:first-child {
  margin-left: 0;
}

.hero-social-proof p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-social-proof strong {
  color: var(--text-primary);
}

/* ============================================
   PHONE MOCKUP
   ============================================ */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #2d2926 0%, #1a1816 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(45, 41, 38, 0.25),
    0 20px 40px rgba(45, 41, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(0deg); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 36px;
  padding: var(--space-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.app-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.08);
}

.app-card-main {
  flex: 1;
}

.app-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.app-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.app-card-emoji {
  font-size: 1.25rem;
}

.app-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.routine-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.routine-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(45, 41, 38, 0.06);
  font-size: 0.875rem;
}

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

.routine-name {
  color: var(--text-secondary);
}

.routine-status {
  font-weight: 600;
}

.routine-item.done .routine-status {
  color: var(--sage);
}

.routine-item.skipped .routine-status {
  color: var(--text-muted);
}

.streak-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: linear-gradient(135deg, rgba(242, 216, 140, 0.3) 0%, rgba(204, 143, 112, 0.2) 100%);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--soft-brown);
}

.app-card-match {
  background: var(--gradient-sage);
  color: white;
}

.match-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.match-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.match-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
}

.match-percent {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.match-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Floating pills */
.floating-pill {
  position: absolute;
  padding: var(--space-sm) var(--space-md);
  background: white;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: 0 8px 30px rgba(45, 41, 38, 0.12);
  animation: pillFloat 4s ease-in-out infinite;
}

.pill-1 {
  top: 10%;
  left: -40px;
  background: var(--honey);
  color: var(--soft-brown);
  animation-delay: 0s;
}

.pill-2 {
  top: 40%;
  right: -30px;
  animation-delay: -1.3s;
}

.pill-3 {
  bottom: 15%;
  left: -20px;
  background: linear-gradient(135deg, rgba(117, 160, 137, 0.15) 0%, rgba(117, 160, 137, 0.05) 100%);
  color: var(--olive);
  animation-delay: -2.6s;
}

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

/* ============================================
   STATS
   ============================================ */

.stats {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(117, 160, 137, 0.04) 50%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 41, 38, 0.06);
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 41, 38, 0.08);
}

.stat-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--sage);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.section-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(117, 160, 137, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.0625rem;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: var(--space-3xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 41, 38, 0.06);
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.04);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(45, 41, 38, 0.1);
  border-color: rgba(117, 160, 137, 0.2);
}

.feature-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(145deg, white 0%, var(--buttercream) 100%);
  display: flex;
  flex-direction: column;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.feature-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-top: var(--space-xl);
}

.mini-checklist {
  display: flex;
  gap: var(--space-sm);
}

.mini-check {
  width: 40px;
  height: 40px;
  background: rgba(117, 160, 137, 0.1);
  border-radius: var(--radius-md);
  border: 2px dashed rgba(117, 160, 137, 0.3);
  transition: all 0.3s;
}

.mini-check.done {
  background: var(--sage);
  border: none;
  position: relative;
}

.mini-check.done::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: var(--space-3xl) 0;
  background: var(--text-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(117, 160, 137, 0.5) 50%, transparent 100%);
}

.how-it-works .section-tag {
  background: rgba(117, 160, 137, 0.2);
  color: var(--sage);
}

.how-it-works .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  transition: all 0.3s;
}

.step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(117, 160, 137, 0.3);
  transform: translateX(4px);
}

.step-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sage);
  line-height: 1;
  opacity: 0.6;
}

.step-content h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.step-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

/* ============================================
   COMMUNITY
   ============================================ */

.community {
  padding: var(--space-3xl) 0;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.connection-card {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 41, 38, 0.06);
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.04);
  transition: all 0.3s;
}

.connection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(45, 41, 38, 0.1);
  border-color: rgba(117, 160, 137, 0.2);
}

.connection-main {
  grid-column: span 2;
  background: linear-gradient(145deg, white 0%, rgba(117, 160, 137, 0.08) 100%);
  border-color: rgba(117, 160, 137, 0.15);
  display: flex;
  flex-direction: column;
}

.connection-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-xl) 0;
}

.twin-pair {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.twin-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.15);
}

.twin-1 {
  background: linear-gradient(135deg, hsl(25, 60%, 70%) 0%, hsl(25, 50%, 60%) 100%);
}

.twin-2 {
  background: linear-gradient(135deg, hsl(150, 50%, 65%) 0%, hsl(150, 45%, 55%) 100%);
}

.twin-connector {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--honey) 0%, var(--sage) 100%);
  border-radius: 2px;
  position: relative;
}

.twin-connector::before,
.twin-connector::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.twin-connector::before {
  left: -4px;
  background: var(--honey);
}

.twin-connector::after {
  right: -4px;
  background: var(--sage);
}

.match-badge {
  padding: var(--space-xs) var(--space-md);
  background: var(--gradient-sage);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

.connection-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.connection-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.connection-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  padding: var(--space-3xl) 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
  background: linear-gradient(145deg, white 0%, var(--buttercream) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 41, 38, 0.06);
  box-shadow: 0 20px 60px rgba(45, 41, 38, 0.08);
}

.cta-content h2 {
  margin-bottom: var(--space-md);
}

.cta-content > p {
  margin-bottom: var(--space-lg);
}

.waitlist-form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.waitlist-form input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid rgba(45, 41, 38, 0.1);
  border-radius: var(--radius-full);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(117, 160, 137, 0.1);
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-features {
  padding: var(--space-lg);
  background: rgba(117, 160, 137, 0.06);
  border-radius: var(--radius-lg);
}

.cta-features h4 {
  color: var(--sage);
  margin-bottom: var(--space-md);
}

.cta-features ul {
  list-style: none;
}

.cta-features li {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cta-features li::before {
  content: '→';
  color: var(--sage);
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(45, 41, 38, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
}

.footer-brand .logo-icon {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

.footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

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

  .feature-large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .connection-main {
    grid-column: span 2;
  }
}

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

  .hero {
    padding-top: calc(70px + var(--space-2xl));
    min-height: auto;
  }

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

  .floating-pill {
    display: none;
  }

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

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

  .feature-large {
    grid-column: span 1;
  }

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

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

  .connection-main {
    grid-column: span 1;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .waitlist-form {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
