/* ============================================
   NEWSREEL — Creative Stylesheet
   Bold. Cinematic. Gen-Z energy.
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: #050505;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Bree Serif', Georgia, serif; font-weight: 400; line-height: 1.15; color: #fff; }
h1 { font-size: 64px; letter-spacing: -0.02em; }
h2 { font-size: 48px; letter-spacing: -0.01em; }
h3 { font-size: 24px; line-height: 1.3; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
}

.body-large { font-size: 18px; line-height: 1.6; color: #999; }
.body-medium { font-size: 14px; line-height: 1.5; color: #888; }
.body-small { font-size: 12px; line-height: 1.33; color: #666; }
.mono { font-family: 'IBM Plex Mono', monospace; }

.gradient-text {
  background: linear-gradient(135deg, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Colors --- */
:root {
  --red: #FF6343;
  --yellow: #EDBD1F;
  --pink: #FF3377;
  --purple: #C566FF;
  --periwinkle: #9081FF;
  --blue: #1264F2;
  --teal: #00BDB3;
  --green: #1AAD17;
  --surface: #111;
  --surface-2: #1a1a1a;
  --border: rgba(255,255,255,0.06);
}

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

.section { padding: 96px 0; }

.section-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 18px 36px; font-size: 15px; }

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: #ff7a60; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255, 99, 67, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(255, 99, 67, 0.4);
}
.btn-outline:hover { background: rgba(255, 99, 67, 0.08); border-color: var(--red); }

.btn-ghost {
  background: transparent;
  color: #999;
  padding: 14px 16px;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost .arrow { transition: transform 0.3s; display: inline-block; margin-left: 4px; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  background: var(--surface);
  color: #fff;
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.15); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled { padding: 12px 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img { height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger svg {
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-dropdown-menu a span {
  font-size: 11px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn-outline { padding: 8px 20px; font-size: 12px; }
.nav-cta .btn-ghost { font-size: 13px; color: #888; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 0;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Bree Serif', serif;
  font-size: 36px;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-20px);
}

.nav-mobile.open a {
  animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.nav-mobile.open a:nth-child(1) { animation-delay: 0.05s; }
.nav-mobile.open a:nth-child(2) { animation-delay: 0.1s; }
.nav-mobile.open a:nth-child(3) { animation-delay: 0.15s; }
.nav-mobile.open a:nth-child(4) { animation-delay: 0.2s; }
.nav-mobile.open a:nth-child(5) { animation-delay: 0.25s; }
.nav-mobile.open a:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* ===========================================
   HERO — Cinematic Full Screen
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Simple hero for subpages — no full-screen height */
.hero-simple {
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px 0 64px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 99, 67, 0.08) 0%, rgba(197, 102, 255, 0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: glowDrift 8s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

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

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-headline {
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-word:nth-child(1) { animation-delay: 0.3s; }
.hero-word:nth-child(2) { animation-delay: 0.38s; }
.hero-word:nth-child(3) { animation-delay: 0.46s; }
.hero-word:nth-child(4) { animation-delay: 0.54s; }
.hero-word:nth-child(5) { animation-delay: 0.62s; }
.hero-word:nth-child(6) { animation-delay: 0.70s; }
.hero-word:nth-child(7) { animation-delay: 0.78s; }

.hero-word--accent {
  background: linear-gradient(135deg, var(--red), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 18px;
  color: #888;
  line-height: 1.6;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.hero-press {
  margin-top: 64px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.hero-press .eyebrow { margin-bottom: 16px; }

.hero-press-logos {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-press-logos img {
  height: 24px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.hero-press-logos img:hover { opacity: 0.8; }

/* Hero Phone */
.hero-phone {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: phoneIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-phone .phone-mockup {
  animation: float 6s ease-in-out infinite 2s;
}

.hero-phone img {
  max-width: 100%;
  margin: 0 auto;
}

.hero-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 99, 67, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes phoneIn {
  from { opacity: 0; transform: translateY(80px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
}

.hero-scroll-hint span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #444, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===========================================
   LIVE STORIES TICKER
   =========================================== */
.live-ticker {
  position: relative;
  padding: 80px 0 64px;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-ticker-ready { opacity: 1; transform: translateY(0); }

.live-ticker-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 99, 67, 0.06) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.live-ticker-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.live-ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.live-ticker-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 99, 67, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255, 99, 67, 0); }
}

.live-ticker-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: #898989;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.live-ticker-sub em {
  font-style: italic;
  color: #fff;
}

/* --- Odometer --- */
.odometer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  perspective: 400px;
}

.digit-card {
  position: relative;
  width: 56px;
  height: 76px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: digitCardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes digitCardIn {
  from { opacity: 0; transform: scale(0.8) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.digit-upper {
  font-family: 'Bree Serif', serif;
  font-size: 42px;
  color: #fff;
  line-height: 1;
}

.digit-lower,
.digit-divider {
  display: none;
}

.odometer-sep {
  font-family: 'Bree Serif', serif;
  font-size: 42px;
  color: #444;
  line-height: 76px;
  width: 16px;
  text-align: center;
}

/* --- Digit Change Animation --- */
.digit-flap { display: none; }

.digit-card.digit-bump {
  animation: digitBump 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes digitBump {
  0% { transform: scale(1); border-color: var(--border); }
  30% { transform: scale(1.1); border-color: rgba(255, 99, 67, 0.3); }
  100% { transform: scale(1); border-color: var(--border); }
}

/* --- Activity Pulse Strip --- */
.activity-strip {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  height: 36px;
  width: 100%;
  max-width: 500px;
  margin-top: 24px;
  overflow: hidden;
  direction: rtl; /* new bars appear on the right */
}

.strip-bar {
  flex-shrink: 0;
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--red);
  animation: barFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             barFadeOut 12s 1s linear forwards;
}

@keyframes barFadeIn {
  from { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  to { opacity: 0.8; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes barFadeOut {
  from { opacity: 0.8; }
  to { opacity: 0.08; }
}

/* ===========================================
   MARQUEE TICKER
   =========================================== */
.ticker {
  padding: 20px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================
   STATS SECTION
   =========================================== */
.section-problem { background: #050505; }

.problem-intro {
  text-align: center;
  margin-bottom: 80px;
}

.problem-intro h2 { font-size: 56px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); }
.stat-card:hover::before { opacity: 0.5; }

.stat-number {
  font-family: 'Bree Serif', serif;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-unit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.stat-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 12px;
}

.stat-source {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================================
   BENTO FEATURES
   =========================================== */
.section-features { background: #050505; }
.section-features .section-header { max-width: 900px; }
.section-features .section-header h2 { font-size: 56px; }

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

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  overflow: hidden;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.12);
}

.bento-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bento-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bento-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.bento-card h3 { font-size: 28px; margin-bottom: 12px; }

.bento-card p {
  font-size: 16px;
  color: #888;
  line-height: 1.6;
}

.bento-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bento-image img {
  max-width: 280px;
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: contain;
}

.bento-card:hover .bento-image img {
  transform: scale(1.03) translateY(-4px);
}

/* Phone mockup frame */
.phone-mockup {
  position: relative;
  width: 260px;
  margin: 0 auto;
  padding: 12px;
  background: #1a1a1a;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 12px;
  z-index: 2;
}

.phone-mockup img,
.phone-mockup video {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  aspect-ratio: 9 / 19.5;
}

.phone-mockup-lg {
  width: 300px;
}

.bento-image-sm {
  margin-top: 24px;
}

.bento-image-sm img {
  max-width: 200px;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-image-sm .phone-mockup {
  width: 180px;
  padding: 8px;
  border-radius: 28px;
}

.bento-image-sm .phone-mockup::before {
  top: 10px;
  width: 56px;
  height: 18px;
  border-radius: 9px;
}

.bento-image-sm .phone-mockup img {
  border-radius: 20px;
}

.bento-card:hover .bento-image-sm .phone-mockup {
  transform: scale(1.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-image-sm img {
  transform: scale(1.03);
}

/* ===========================================
   COMING SOON — CREATOR PLATFORM
   =========================================== */
.section-coming-soon {
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-coming-soon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 189, 179, 0.04) 0%, rgba(237, 189, 31, 0.03) 30%, rgba(255, 99, 67, 0.02) 60%, transparent 80%);
  pointer-events: none;
  animation: glowDrift 8s ease-in-out infinite alternate;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  margin-bottom: 32px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 189, 179, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 189, 179, 0); }
}

.badge-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
}

.coming-soon-headline {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin: 0 auto;
}

.gradient-text-teal {
  background: linear-gradient(135deg, var(--teal), #33d6cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-yellow {
  background: linear-gradient(135deg, var(--yellow), #f5d04a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-red {
  background: linear-gradient(135deg, var(--red), #ff8a73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  text-align: left;
}

.creator-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  position: relative;
}

.creator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.creator-card-featured {
  border-color: rgba(237, 189, 31, 0.15);
  background: linear-gradient(135deg, rgba(237, 189, 31, 0.03), var(--surface));
}

.creator-card-featured:hover {
  border-color: rgba(237, 189, 31, 0.3);
}

.creator-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.creator-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.creator-card p {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.creator-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.coming-soon-cta {
  margin-top: 64px;
}

.section-coming-soon {
  padding-bottom: 64px;
}

.section-coming-soon + .section-testimonials {
  padding-top: 48px;
}

.section-testimonials {
  padding-bottom: 48px;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.section-testimonials { overflow: hidden; }

.testimonial-scroll {
  overflow: hidden;
  margin-top: 0;
  padding: 8px 0;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  min-width: 380px;
  max-width: 420px;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.tq {
  font-size: 16px;
  font-style: italic;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================
   CTA SECTION
   =========================================== */
.section-cta {
  padding: 48px 0 96px;
}

.cta-box {
  text-align: center;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.cta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cta-card h3 { font-size: 20px; margin-bottom: 8px; }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #555;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 12px; color: #444; }
.footer-bottom a { font-size: 12px; color: #444; }
.footer-bottom a:hover { color: var(--red); }

.footer-login {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--red) !important;
}

/* ===========================================
   SHARED COMPONENTS
   =========================================== */

/* Cards (for other pages) */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Stats (for other pages) */
.stat-value {
  font-family: 'Bree Serif', serif;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}

/* Grids (for other pages) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Testimonials (for about page) */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s;
}

.testimonial:hover { transform: translateY(-3px); }

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
}

.testimonial-role {
  font-size: 13px;
  color: #666;
}

/* Press logos */
.press-logos {
  display: flex;
  align-items: center;
  gap: 32px;
}

.press-logos img {
  height: 24px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 0;
  border: none;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  padding: 0;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #555;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after { content: '−'; color: var(--red); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer { max-height: 500px; padding-top: 16px; }

.faq-answer p {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
}

/* Team */
.team-card { text-align: center; position: relative; }

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
  transition: border-color 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}

.team-card:hover img {
  border-color: var(--red);
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(255, 99, 67, 0.12), 0 16px 40px rgba(255, 99, 67, 0.15);
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.team-card:hover h3 { color: var(--red); }

.team-card .role { font-size: 14px; color: #666; transition: color 0.3s; }
.team-card:hover .role { color: #999; }
.team-card .bio {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, margin-top 0.3s;
}
.team-card.bio-active .bio {
  max-height: 600px;
  opacity: 1;
  margin-top: 12px;
}
.team-card .bio a {
  color: var(--red);
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.team-card .bio a:hover { text-decoration: underline; }
.bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #666;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 4px;
  transition: all 0.25s;
}
.bio-toggle:hover {
  background: rgba(255,255,255,0.08);
  color: #aaa;
  border-color: rgba(255,255,255,0.15);
}
.team-card.bio-active .bio-toggle {
  background: rgba(255, 99, 67, 0.1);
  border-color: rgba(255, 99, 67, 0.25);
  color: var(--red);
}

/* Baby pic toggle */
.team-photo-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}
.team-card:hover .team-photo-wrap {
  border-color: var(--red);
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(255, 99, 67, 0.12), 0 16px 40px rgba(255, 99, 67, 0.15);
}
.team-photo-wrap img,
.team-card .team-photo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 0;
  border: none;
  margin: 0;
  transition: opacity 0.15s ease;
}
.team-photo-wrap img.team-photo-baby {
  position: absolute;
  inset: 0;
  opacity: 0;
  color: transparent; /* hide alt text when image not loaded */
}
.team-card.baby-active .team-photo-wrap img.team-photo-main { opacity: 0 !important; }
.team-card.baby-active .team-photo-wrap img.team-photo-baby { opacity: 1 !important; }

/* Override reveal animation for baby photos — keep hidden until toggled */
.reveal-stagger.visible .team-card-animated .team-photo-baby { opacity: 0; }
.reveal-stagger.visible .team-card-animated.baby-active .team-photo-baby { opacity: 1; }
.reveal-stagger.visible .team-card-animated.baby-active .team-photo-main { opacity: 0; }

@keyframes photoFlip {
  0%   { transform: perspective(600px) rotateY(0deg) scale(1); }
  40%  { transform: perspective(600px) rotateY(90deg) scale(0.92); }
  60%  { transform: perspective(600px) rotateY(90deg) scale(0.92); }
  100% { transform: perspective(600px) rotateY(0deg) scale(1); }
}
.team-photo-wrap.flipping {
  animation: photoFlip 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.baby-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #666;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.25s;
}
.baby-toggle:hover {
  background: rgba(255,255,255,0.08);
  color: #aaa;
  border-color: rgba(255,255,255,0.15);
}
.team-card.baby-active .baby-toggle {
  background: rgba(255, 99, 67, 0.1);
  border-color: rgba(255, 99, 67, 0.25);
  color: var(--red);
}

/* Featured team member (Jack) */
.team-featured-photo {
  animation: floatSubtle 6s ease-in-out infinite;
}

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

.team-featured-photo img {
  box-shadow: 0 24px 64px rgba(255, 99, 67, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-featured-photo:hover img {
  box-shadow: 0 32px 80px rgba(255, 99, 67, 0.2), 0 0 0 2px rgba(255, 99, 67, 0.3);
  transform: scale(1.03);
}

/* Press items */
.press-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.press-item:hover { padding-left: 12px; }

.press-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  min-width: 120px;
}

.press-title { font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.press-source { font-size: 14px; color: #555; }

/* Press release body */
.press-release-body p {
  font-size: 17px;
  line-height: 1.8;
  color: #C8C8C8;
  margin-bottom: 20px;
}
.press-release-body h3 {
  font-family: 'Bree Serif', serif;
  font-size: 24px;
  color: #fff;
}
.press-release-body ul {
  list-style: disc;
}
.press-release-body ul li {
  font-size: 17px;
}
.press-release-body strong {
  color: #fff;
  font-weight: 600;
}

/* Feature blocks (for about page) */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.feature-block:nth-child(even) { direction: rtl; }
.feature-block:nth-child(even) > * { direction: ltr; }

.feature-text h3 { font-size: 28px; margin-bottom: 16px; }
.feature-text p { font-size: 16px; color: #999; line-height: 1.6; }

.feature-image { display: flex; justify-content: center; }
.feature-image img {
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* ===========================================
   PRICING
   =========================================== */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg { flex-shrink: 0; }

.pricing-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 16px 28px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: #aaa;
  transition: background 0.2s;
}

.pricing-table-row:last-child { border-bottom: none; }

.pricing-table-row:hover { background: rgba(255,255,255,0.02); }

.pricing-tier-name {
  font-weight: 500;
  color: #fff;
}

.pricing-price {
  font-family: 'Bree Serif', serif;
  font-size: 18px;
  color: var(--red);
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered children — parent gets .reveal-stagger, children auto-delay */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.28s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.4s; }

/* SVG chart line-draw animation */
.chart-line-draw {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.chart-line-draw.visible { stroke-dashoffset: 0; }

.chart-area-fill {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}
.chart-area-fill.visible { opacity: 1; }

.chart-point {
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.chart-point.visible { opacity: 1; transform: scale(1); }
.chart-point:nth-child(1) { transition-delay: 0.4s; }
.chart-point:nth-child(2) { transition-delay: 0.8s; }
.chart-point:nth-child(3) { transition-delay: 1.2s; }
.chart-point:nth-child(4) { transition-delay: 1.6s; }

/* Team photo entrance — triggered by parent .reveal-stagger.visible */
.reveal-stagger.visible .team-card-animated img {
  opacity: 1;
  transform: scale(1);
}
.team-card-animated img {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

/* ===========================================
   RESPONSIVE — Tablet
   =========================================== */
@media (max-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-headline { font-size: 52px; }
  .hero-sub { max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-press { text-align: center; }
  .hero-press-logos { justify-content: center; }
  .hero-phone .phone-mockup { width: 240px; }
  .phone-mockup { width: 220px; }
  .hero-scroll-hint { display: none; }

  .stats-row { grid-template-columns: 1fr; gap: 16px; }
  .stat-number { font-size: 56px; }

  .bento { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; grid-template-columns: 1fr; }

  .testimonial-card { min-width: 320px; }

  .creator-grid { grid-template-columns: 1fr; }
  .coming-soon-headline { font-size: 36px; }

  .cta-cards { grid-template-columns: 1fr; max-width: 400px; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block:nth-child(even) { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .digit-card { width: 48px; height: 64px; }
  .digit-upper span, .digit-lower span { font-size: 36px; }
  .odometer-sep { font-size: 36px; line-height: 64px; width: 12px; }
  .odometer { gap: 4px; }
}

/* ===========================================
   RESPONSIVE — Mobile
   =========================================== */
@media (max-width: 600px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-headline { font-size: 40px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-phone .phone-mockup { width: 200px; }
  .phone-mockup { width: 180px; }

  .problem-intro h2 { font-size: 32px; }
  .section-features .section-header h2 { font-size: 32px; }
  .stat-number { font-size: 48px; }
  .stat-card { padding: 32px 20px; }

  .bento-card { padding: 28px; }
  .bento-card h3 { font-size: 22px; }

  .digit-card { width: 38px; height: 52px; border-radius: 6px; }
  .digit-upper span, .digit-lower span { font-size: 28px; }
  .odometer-sep { font-size: 28px; line-height: 52px; width: 8px; }
  .odometer { gap: 3px; }
  .live-ticker { padding: 56px 0 48px; }
  .activity-strip { max-width: 300px; height: 28px; }
  .live-ticker-tagline { font-size: 13px; }

  .coming-soon-headline { font-size: 28px; }

  .testimonial-card { min-width: 300px; padding: 24px; }
  .tq { font-size: 15px; }

  .cta-cards { grid-template-columns: 1fr; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .press-logos { flex-wrap: wrap; gap: 20px; }

  .team-card img { width: 140px; height: 140px; }
  .team-photo-wrap { width: 140px !important; height: 140px !important; }

  /* Disable hover glow on touch devices */
  .team-card:hover .team-photo-wrap {
    border-color: var(--border);
    transform: none;
    box-shadow: none;
  }
  .team-card.baby-active .team-photo-wrap {
    border-color: var(--red);
  }

  .feature-image img { max-width: 260px; }

  .pricing-table-header,
  .pricing-table-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 20px;
  }

  .pricing-table-header { display: none; }

  .pricing-table-row {
    position: relative;
    padding-left: 20px;
  }

  .pricing-price { font-size: 16px; }
}

/* ===========================================
   RESPONSIVE — iPad specific
   =========================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero { padding: 140px 0 80px; }
  .hero-headline { font-size: 56px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-number { font-size: 48px; }
  .stat-card { padding: 32px 16px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-large, .bento-wide { grid-column: span 2; grid-template-columns: 1fr 1fr; }
  .cta-cards { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}
