/* =============================================
   PitchDeckify - Premium SaaS Landing Page CSS
   Dark + Glassmorphism + Purple Accents
   ============================================= */

@font-face {
  font-family: 'Breul Grotesk';
  src: url('fonts/breul-grotesk-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0020, U+0041-005A, U+0061-007A, U+00C0-00FF;
}
@font-face {
  font-family: 'Breul Grotesk';
  src: url('fonts/breul-grotesk-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0020, U+0041-005A, U+0061-007A, U+00C0-00FF;
}
@font-face {
  font-family: 'Breul Grotesk';
  src: url('fonts/breul-grotesk-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  unicode-range: U+0020, U+0041-005A, U+0061-007A, U+00C0-00FF;
}

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

:root {
  /* Colors */
  --bg:            #050508;
  --bg-2:          #0a0a12;
  --bg-card:       rgba(255,255,255,0.035);
  --bg-card-hover: rgba(255,255,255,0.065);
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(82, 69, 229, 0.45);

  --purple-100: #eef2ff;
  --purple-300: #c7d2fe;
  --purple-400: #818cf8;
  --purple-500: #5245e5;
  --purple-600: #4338ca;
  --purple-700: #3730a3;
  --purple-800: #312e81;

  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255,255,255,0.62);
  --text-muted:     rgba(255,255,255,0.38);

  /* Typography */
  --font-sans: 'Breul Grotesk', 'Inter', sans-serif;
  --font-display: 'Breul Grotesk', 'Outfit', sans-serif;

  /* Spacing */
  --section-py: 120px;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ── */
.gradient-text {
  background: linear-gradient(135deg, #5245e5 0%, #783bec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(82, 69, 229, 0.12);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  color: #FFFFFF !important;
}

.btn--primary {
  background: linear-gradient(135deg, #5245e5 0%, #783bec 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(82, 69, 229, 0.35);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(139,92,246,0.5);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn--sm  { padding: 10px 20px; border-radius: 10px; font-size: 14px; }
.btn--md  { padding: 12px 24px; border-radius: 12px; font-size: 15px; }
.btn--lg  { padding: 15px 30px; border-radius: 14px; font-size: 16px; }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(82, 69, 229, 0.12);
  border: 1px solid rgba(82, 69, 229, 0.28);
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-300);
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 8px var(--purple-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ── Animations ── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.75s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Intersection Observer driven animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ╔══════════════════════════════════════════╗
   ║  HEADER                                  ║
   ╚══════════════════════════════════════════╝ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(5,5,8,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  padding: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon { display: flex; align-items: center; }
.logo__text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(5,5,8,0.95);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__cta { margin-top: 12px; justify-content: center; }

/* ╔══════════════════════════════════════════╗
   ║  HERO                                    ║
   ╚══════════════════════════════════════════╝ */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(109,40,217,0.22) 0%, transparent 70%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  top: 20%; right: -100px;
  animation: floatGlow 8s ease-in-out infinite alternate;
}
.hero__glow--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.14) 0%, transparent 70%);
  bottom: 10%; left: -80px;
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes floatGlow {
  0% { transform: translate(0,0); }
  100% { transform: translate(30px, -30px); }
}

.hero__inner { position: relative; z-index: 1; }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 20px 0 24px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.br-desktop { display: block; }

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* ── Showcase Stack ── */
.hero__mockup {
  max-width: 1100px;
  margin: 80px auto 0;
}
.showcase-stack {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto;
}
.showcase-img {
  position: absolute;
  border-radius: 12px;
  border: 1px solid var(--purple-500); /* Purple contour */
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.3s var(--ease);
  width: 70%;
}
.showcase-img:hover {
  transform: translateY(-10px) scale(1.05) !important; /* Slightly bigger and subtle lift */
  z-index: 10 !important;
  box-shadow: 0 40px 120px rgba(82, 69, 229, 0.35);
}

.showcase-img--dashboard {
  left: 0;
  top: 100px;
  z-index: 1;
}

.showcase-img--editor {
  right: 0;
  top: 0;
  z-index: 2;
}

.showcase-img--modal {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  border: 1.5px solid var(--purple-500);
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.8);
}
.showcase-img--modal:hover {
  transform: translateX(-50%) translateY(-10px) scale(1.05) !important;
}

@media (max-width: 991px) {
  .showcase-stack { height: 450px; }
}

@media (max-width: 768px) {
  .showcase-stack {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  .showcase-img {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ╔══════════════════════════════════════════╗
   ║  SECTION COMMONS                         ║
   ╚══════════════════════════════════════════╝ */
.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5245e5;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ╔══════════════════════════════════════════╗
   ║  VALUE PROP / MODES                      ║
   ╚══════════════════════════════════════════╝ */
.value-prop { position: relative; }

.modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.mode-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.mode-card__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(82, 69, 229, 0.2), transparent 70%);
  pointer-events: none;
}
.mode-card__icon-wrap {
  margin-bottom: 24px;
}
.mode-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(82, 69, 229, 0.14);
  border: 1px solid rgba(82, 69, 229, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5245e5;
}
.mode-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.mode-card__badge--ai { color: #5245e5; }
.mode-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.mode-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.mode-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.mode-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(82, 69, 229, 0.15);
  color: #5245e5;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}
.mode-card__key {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  font-style: italic;
}
.mode-card__key--ai {
  background: rgba(82, 69, 229, 0.08);
  border-color: rgba(82, 69, 229, 0.2);
  color: var(--purple-300);
}
.key-icon { 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
  opacity: 0.8;
}
.mode-card--ai {
  background: linear-gradient(145deg, rgba(82, 69, 229, 0.1), rgba(120, 59, 236, 0.04));
  border-color: rgba(82, 69, 229, 0.22);
}

/* Edit strip */
.edit-strip {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.edit-strip__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.edit-strip__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(82, 69, 229, 0.12);
  border: 1px solid rgba(82, 69, 229, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}
.edit-strip__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.edit-strip__desc {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.6;
}
.edit-strip__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.22);
  color: var(--purple-300);
}

/* ╔══════════════════════════════════════════╗
   ║  FEATURES                                ║
   ╚══════════════════════════════════════════╝ */
.features {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(109,40,217,0.04) 50%, transparent);
}
.features__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.1), transparent 65%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 30px;
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(82, 69, 229, 0.12);
  border: 1px solid rgba(82, 69, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  margin-bottom: 20px;
}
.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ╔══════════════════════════════════════════╗
   ║  BENEFITS                                ║
   ╚══════════════════════════════════════════╝ */
.benefits__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.benefits__left { position: sticky; top: 120px; }
.benefits__left .section-title { text-align: left; margin-bottom: 16px; }
.benefits__left .section-desc { text-align: left; margin-bottom: 32px; }
.benefits__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-item:hover .benefit-item__num {
  color: var(--purple-400);
  border-color: rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.1);
}
.benefit-item__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.benefit-item__body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.benefit-item__body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ╔══════════════════════════════════════════╗
   ║  HOW IT WORKS                            ║
   ╚══════════════════════════════════════════╝ */
.how-it-works {
  position: relative;
  overflow: hidden;
}
.how-it-works__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(109,40,217,0.08), transparent 65%);
  pointer-events: none;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-line {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.4), rgba(139,92,246,0.6), rgba(139,92,246,0.4), transparent);
  pointer-events: none;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(82, 69, 229, 0.12), 0 0 0 12px rgba(139,92,246,0.05);
  flex-shrink: 0;
}
.step__card {
  width: 100%;
  padding: 28px 24px;
  text-align: center;
}
.step__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(82, 69, 229, 0.12);
  border: 1px solid rgba(82, 69, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  margin: 0 auto 16px;
}
.step__card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.step__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(82, 69, 229, 0.2);
  color: var(--purple-300);
  letter-spacing: 0.3px;
}

/* ╔══════════════════════════════════════════╗
   ║  STATS                                   ║
   ╚══════════════════════════════════════════╝ */
.stats { padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  padding: 32px 24px;
  text-align: center;
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #A78BFA, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-card__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ╔══════════════════════════════════════════╗
   ║  EARLY ACCESS                            ║
   ╚══════════════════════════════════════════╝ */
.early-access {
  position: relative;
  overflow: hidden;
}
.early-access__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.early-access__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.2), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.early-access__glow--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.15), transparent 70%);
  top: 20%; right: 10%;
}

.early-access__card {
  max-width: 660px;
  margin: 0 auto;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-color: rgba(82, 69, 229, 0.2);
  background: rgba(10,8,20,0.55);
}
.early-access__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(82, 69, 229, 0.12);
  border: 1px solid rgba(82, 69, 229, 0.28);
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-300);
  margin-bottom: 28px;
}
.early-access__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.early-access__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
}

.capture-form__field {
  display: flex;
  gap: 10px;
  width: 100%;
}
.capture-form__input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.capture-form__input::placeholder { color: var(--text-muted); }
.capture-form__input:focus {
  border-color: rgba(139,92,246,0.5);
  background: rgba(139,92,246,0.05);
}
.capture-form__input.error { border-color: #EF4444; }
.capture-form__btn { flex-shrink: 0; }
.capture-form__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.capture-form__success {
  padding: 32px;
  text-align: center;
}
.success-icon { font-size: 48px; margin-bottom: 12px; }
.capture-form__success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.capture-form__success p {
  font-size: 15px;
  color: var(--text-secondary);
}

.early-access__avatars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.avatar-group { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.early-access__social-proof {
  font-size: 13px;
  color: var(--text-muted);
}
.early-access__social-proof strong { color: var(--text-secondary); }

/* ╔══════════════════════════════════════════╗
   ║  FOOTER                                  ║
   ╚══════════════════════════════════════════╝ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__tagline { font-size: 13px; color: var(--text-muted); }
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--text-secondary); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__copy, .footer__love {
  font-size: 13px;
  color: var(--text-muted);
}

/* ╔══════════════════════════════════════════╗
   ║  RESPONSIVE                              ║
   ╚══════════════════════════════════════════╝ */
@media (max-width: 1024px) {
  .benefits__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .benefits__left { position: static; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-container { grid-template-columns: repeat(2, 1fr); }
  .steps-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .nav, .header .btn--sm { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 130px 0 60px; }
  .hero__headline { letter-spacing: -1px; }
  .br-desktop { display: none; }
  .modes-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .edit-strip { flex-direction: column; }
  .steps-container { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .early-access__card { padding: 40px 24px; }
  .capture-form__field { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__ctas { gap: 10px; }
}

@media (max-width: 480px) {
  .steps-container { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .section-title { letter-spacing: -0.8px; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.5); }
