/* ============================================
   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: 120px 0; }

.section-header {
  max-width: 600px;
  margin-bottom: 64px;
}

/* --- 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-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 img {
  max-width: 340px;
  margin: 0 auto;
  border-radius: 32px;
  animation: float 6s ease-in-out infinite 2s;
}

.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); }
}

/* ===========================================
   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; }

.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);
}

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

.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-card:hover .bento-image-sm img {
  transform: scale(1.03);
}

/* ===========================================
   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: 80px 0 120px;
}

.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; }

.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.3s, transform 0.3s;
}

.team-card:hover img { border-color: var(--red); transform: scale(1.05); }

.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 14px; color: #666; }
.team-card .bio { font-size: 14px; color: #999; line-height: 1.5; margin-top: 12px; }

/* 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; }

/* 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);
}

/* ===========================================
   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); }

/* ===========================================
   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 img { max-width: 280px; }
  .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; }

  .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; }
}

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

  .section { padding: 80px 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 img { max-width: 220px; }

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

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

  .ticker-item { font-size: 12px; }

  .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: 120px; height: 120px; }

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

/* ===========================================
   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%; }
}
