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

:root {
  --bg: #07070a;
  --bg-2: #0c0c12;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(244, 200, 66, 0.35);

  --text: #f5f5f7;
  --text-muted: rgba(245, 245, 247, 0.6);
  --text-faint: rgba(245, 245, 247, 0.4);

  --accent: #f4c842;
  --accent-soft: #fde6a4;
  --accent-glow: rgba(244, 200, 66, 0.25);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --max-w: 1180px;
  --max-w-narrow: 880px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* Touch optimizations - removes 300ms tap delay, no ugly tap flash */
button, a, .gallery-item, .community-card, .bullets li, .cd-item, .video-wrapper {
  touch-action: manipulation;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-gradient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.bg-gradient-1 {
  width: 680px; height: 680px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.18) 0%, transparent 70%);
}
.bg-gradient-2 {
  width: 560px; height: 560px;
  top: 30vh; left: -180px;
  background: radial-gradient(circle, rgba(120, 130, 255, 0.10) 0%, transparent 70%);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 10, 0.6);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}
.brand:hover { opacity: 0.85; }
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 90px 24px 100px;
  z-index: 1;
  background-image:
    linear-gradient(180deg, rgba(7,7,10,0.78) 0%, rgba(7,7,10,0.86) 60%, rgba(7,7,10,0.96) 100%),
    url('../images/optimized/Main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, transparent 0%, rgba(7,7,10,0.6) 100%);
  pointer-events: none;
}
.hero-content {
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(32px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.grad-text {
  background: linear-gradient(135deg, #f4c842 0%, #fde6a4 50%, #f4c842 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* ===== WEBINAR META ===== */
.webinar-meta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  text-align: right;
}
.meta-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.meta-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.meta-divider {
  width: 1px;
  height: 28px;
  background: var(--border-strong);
}

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.cd-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 86px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--ease);
}
.cd-item:hover { border-color: var(--border-strong); }
.cd-num {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ===== LEAD FORM ===== */
.lead-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  text-align: right;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  direction: rtl;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.lead-form input::placeholder { color: var(--text-faint); }
.lead-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-faint);
  text-align: right;
  cursor: pointer;
  line-height: 1.5;
}
.consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  width: 14px;
  height: 14px;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #1a1a0a;
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.2s var(--ease);
  box-shadow:
    0 0 0 1px rgba(244, 200, 66, 0.4),
    0 8px 24px -8px rgba(244, 200, 66, 0.5);
}
.cta-btn svg {
  transition: transform 0.3s var(--ease);
}
.cta-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(244, 200, 66, 0.6),
    0 12px 32px -8px rgba(244, 200, 66, 0.7);
}
.cta-btn:hover svg {
  transform: translateX(-4px); /* RTL → arrow points right (←) but should move "forward" */
}
.cta-btn:active { transform: translateY(0); }

/* ===== TRUST ROW ===== */
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.trust-item { font-weight: 500; }
.dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-faint);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}
.section.dark {
  background: transparent;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 auto 50px;
  max-width: 820px;
}
.section-title .accent {
  color: var(--accent);
  font-weight: 800;
}

/* ===== BULLETS ===== */
.bullets {
  list-style: none;
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bullets li {
  position: relative;
  padding: 22px 56px 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 500;
  color: var(--text);
  text-align: right;
  line-height: 1.55;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.bullets li::before {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 200, 66, 0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a0a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.bullets li:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateX(-3px);
}

/* ===== PARAGRAPHS ===== */
.paragraph {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.8;
  text-align: center;
  color: var(--text-muted);
}
.paragraph strong { color: var(--text); font-weight: 700; }
.paragraph.small { font-size: 14px; }
.paragraph.tiny { font-size: 12px; opacity: 0.7; margin-top: -8px; }
.paragraph-lg {
  font-size: clamp(17px, 1.85vw, 20px);
  max-width: 780px;
  line-height: 1.85;
}
.paragraph-lg strong { font-weight: 800; }
.paragraph.centered-text { text-align: center; }

/* ===== FOUNDERS PHOTO ===== */
.founders-photo {
  max-width: 400px;
  margin: 0 auto 34px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  position: relative;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
}
.founders-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.founders-photo .empty-label {
  display: none;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 12px;
  direction: ltr;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px,
      rgba(255, 255, 255, 0.015) 12px, rgba(255, 255, 255, 0.015) 24px);
}
.founders-photo.empty .empty-label { display: flex; }

.callout-title {
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 50px 0 24px;
  position: relative;
  display: block;
}
.callout-title::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.subtitle {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 70px 0 14px;
}
.hint-text {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 28px;
  font-weight: 400;
}
.hint-text code {
  background: rgba(244, 200, 66, 0.08);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  direction: ltr;
  display: inline-block;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  border: 1px solid rgba(244, 200, 66, 0.18);
}
.hint-text.small { font-size: 11px; }

/* ===== TESTIMONIALS / VIDEOS ===== */
.testimonials .container { max-width: 920px; }
.testimonial {
  margin-bottom: 64px;
}
.testi-quote {
  text-align: center;
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--text);
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  line-height: 1.45;
  font-style: normal;
}
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.video-wrapper:hover {
  border-color: var(--border-accent);
}
.video-wrapper.centered { margin: 36px auto; }
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-faint);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  background:
    radial-gradient(ellipse at center, rgba(244, 200, 66, 0.04) 0%, transparent 60%);
}
.video-placeholder::before {
  content: '';
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4c842' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polygon points='5 3 19 12 5 21 5 3'/></svg>");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 56% center;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  position: relative;
  padding: 110px 24px;
}
.community-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(244, 200, 66, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 40px auto 0;
}
.community-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  text-align: right;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  position: relative;
}
.community-card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  position: relative;
  padding-right: 16px;
}
.community-card h3::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
}
.community-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.community-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

/* ===== GALLERIES ===== */
.community-gallery,
.pilot-gallery {
  display: grid;
  gap: 14px;
  max-width: 1000px;
  margin: 24px auto 0;
}
.community-gallery {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.pilot-gallery {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 820px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  will-change: transform, opacity;
}
.gallery-item img {
  transition: transform 0.6s var(--ease);
}
.gallery-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item.is-revealed:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px -16px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(244, 200, 66, 0.15);
}
.gallery-item.is-revealed:hover img {
  transform: scale(1.04);
}
.gallery-item.small { aspect-ratio: 1 / 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .empty-label {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 11px;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  direction: ltr;
  text-align: center;
  padding: 8px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.015) 12px,
      rgba(255, 255, 255, 0.015) 24px
    );
}
.gallery-item.empty .empty-label {
  display: flex;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 110px 24px;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(244, 200, 66, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.12) 0%, rgba(244, 200, 66, 0.06) 100%);
  border: 1px solid var(--border-accent);
  color: var(--text);
  text-align: center;
  padding: 28px 32px;
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  border-radius: var(--radius);
  margin: 0 auto 40px;
  line-height: 1.5;
  max-width: 880px;
  position: relative;
  backdrop-filter: blur(8px);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(7, 7, 10, 0.5);
  color: var(--text-faint);
  text-align: center;
  padding: 32px 20px;
  font-size: 12px;
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
/* ===== TABLET / SMALL LAPTOP ===== */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 20px; }
  .hero { padding: 64px 20px 80px; }
  .community-section,
  .final-cta { padding: 80px 20px; }
}

/* ===== MOBILE (≤ 760px) ===== */
@media (max-width: 760px) {
  .container { padding: 0 16px; }

  /* Sections — tighter spacing */
  .section { padding: 56px 16px; }
  .community-section,
  .final-cta { padding: 56px 16px; }
  .section-title { margin-bottom: 32px; }

  /* Nav */
  .nav-inner { padding: 11px 16px; }
  .brand-logo { height: 32px; }
  .nav-pill { font-size: 11px; padding: 5px 10px; white-space: nowrap; }

  /* Hero */
  .hero { padding: 40px 16px 60px; }
  .hero-eyebrow { font-size: 12px; padding: 6px 12px; margin-bottom: 20px; }
  .hero-title { font-size: 30px; line-height: 1.2; margin-bottom: 14px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }

  /* Webinar meta — tighter, smaller text */
  .webinar-meta {
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 22px;
  }
  .meta-label { font-size: 10px; }
  .meta-value { font-size: 14px; }
  .meta-divider { height: 22px; }

  /* Lead form — 16px inputs prevents iOS auto-zoom */
  .lead-form { padding: 16px; gap: 10px; border-radius: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 8px; }
  .lead-form input[type="text"],
  .lead-form input[type="email"],
  .lead-form input[type="tel"] {
    font-size: 16px;
    padding: 14px 14px;
  }
  .consent { font-size: 11px; }

  /* CTA button — large, full-width, easy to tap */
  .cta-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    min-height: 52px;
  }

  /* Countdown */
  .countdown { gap: 6px; margin-top: 24px; }
  .cd-item { min-width: 0; flex: 1; padding: 12px 6px; }
  .cd-num { font-size: 26px; }
  .cd-label { font-size: 10px; letter-spacing: 0.08em; }

  /* Trust row */
  .trust-row { gap: 8px; font-size: 12px; margin-top: 22px; }
  .dot-sep { width: 3px; height: 3px; }

  /* Bullets — bigger touch target */
  .bullets li {
    padding: 18px 48px 18px 16px;
    font-size: 15px;
    border-radius: 12px;
  }
  .bullets li::before {
    right: 16px;
    width: 18px;
    height: 18px;
    background-size: 10px;
  }
  .bullets li:hover { transform: none; } /* no hover-shift on touch */

  /* Paragraphs */
  .paragraph { font-size: 15px; line-height: 1.75; padding: 0 4px; }
  .paragraph-lg { font-size: 16px; line-height: 1.8; }
  .callout-title { font-size: 22px; margin: 36px 0 20px; }
  .subtitle { font-size: 19px; margin: 50px 0 12px; }

  /* Testimonials */
  .testimonial { margin-bottom: 40px; }
  .testi-quote { font-size: 16px; margin-bottom: 16px; padding: 0 4px; }

  /* Video wrappers */
  .video-wrapper { border-radius: 12px; }
  .video-placeholder::before { width: 48px; height: 48px; background-size: 18px; }

  /* Community cards */
  .community-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
  .community-card { padding: 20px 18px; border-radius: 14px; }
  .community-card { padding: 22px 20px 24px; }
  .community-card h3 { font-size: 16.5px; padding-right: 14px; }
  .community-card h3::before { width: 2.5px; height: 14px; }
  .community-card p { font-size: 13.5px; }

  /* Gallery — 2 columns is more visual on phone than 1 */
  .community-gallery,
  .pilot-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item { border-radius: 10px; }

  /* Final CTA banner */
  .cta-banner {
    padding: 20px 18px;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    line-height: 1.45;
  }
}

/* ===== NARROW PHONES (≤ 420px, e.g. iPhone SE) ===== */
@media (max-width: 420px) {
  .nav-inner { padding: 10px 14px; }
  .brand-logo { height: 28px; }
  .nav-pill { font-size: 10.5px; padding: 4px 9px; }

  .hero { padding: 32px 14px 56px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 22px; }

  /* Stack meta vertically on the narrowest screens */
  .webinar-meta {
    flex-direction: row;
    gap: 10px;
    padding: 10px 12px;
  }
  .meta-divider { height: 20px; }
  .meta-label { font-size: 9.5px; letter-spacing: 0.1em; }
  .meta-value { font-size: 13px; }

  .countdown { gap: 5px; }
  .cd-item { padding: 10px 4px; }
  .cd-num { font-size: 22px; }
  .cd-label { font-size: 9px; }

  .section { padding: 48px 14px; }
  .community-section,
  .final-cta { padding: 48px 14px; }
  .section-title { font-size: 24px; line-height: 1.25; }

  .bullets li { font-size: 14px; padding: 16px 44px 16px 14px; }
  .bullets li::before { right: 14px; width: 16px; height: 16px; background-size: 9px; }

  .testi-quote { font-size: 15px; }
  .callout-title { font-size: 20px; }
  .subtitle { font-size: 18px; }

  .cta-banner { font-size: 15px; padding: 18px 14px; }

  /* Trust row may overflow — let it wrap nicely */
  .trust-row { font-size: 11.5px; gap: 6px; }
}

/* ===== HOVER-CAPABLE DEVICES ONLY ===== */
/* Don't apply hover effects on touch — they get stuck after tap */
@media (hover: none) {
  .gallery-item.is-revealed:hover {
    transform: translateY(0);
    border-color: var(--border);
    box-shadow: none;
  }
  .gallery-item.is-revealed:hover img { transform: none; }
  .community-card:hover {
    transform: none;
    border-color: var(--border);
    background: var(--surface);
  }
  .bullets li:hover {
    transform: none;
    border-color: var(--border);
    background: var(--surface);
  }
  .cta-btn:hover {
    transform: none;
    background: var(--accent);
  }
}

/* ===== SCROLL REVEAL ===== */
.section, .hero-content > * {
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-eyebrow { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.25s; }
.webinar-meta { animation-delay: 0.35s; }
.countdown { animation-delay: 0.45s; }
.lead-form { animation-delay: 0.55s; }
.trust-row { animation-delay: 0.65s; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
