/* ==========================================================================
   10dr · Marketing Site · main.css
   Extracted from index.php on 2026-07-08
   --------------------------------------------------------------------------
   File organization (top → bottom):
     1.  CSS variables + reset
     2.  Base typography + display utilities
     3.  Gradient text utilities
     4.  Wordmark + Connection mark (brand elements)
     5.  Buttons (.btn, .btn-primary, .btn-outline, .btn-emerald)
     6.  Sticky nav + hamburger + mobile menu
     7.  Hero (orbs, dot grid, illustration card, trust avatars)
     8.  Trust strip
     9.  How it works (buyer / supplier panels)
    10.  Live activity band (dark gradient)
    11.  Features grid
    12.  Testimonials
    13.  Categories
    14.  Pricing (buyer free / supplier highlighted dark card)
    15.  FAQ accordion
    16.  CTA band + waitlist form (success panel, error toast, form fields)
    17.  Footer
    18.  Responsive media queries (scoped to each section + global)
   --------------------------------------------------------------------------
   Note: index.php emits a few inline `style="background: linear-gradient(...)"`
   attributes via PHP loops (12 category cards + 5 hero avatars). Those stay
   inline because they are set dynamically per item, and moving them to named
   classes risks regression during the refactor. Functionally identical to
   having them in this file, just slightly more verbose in HTML.
   ========================================================================== */


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

:root {
  --indigo:    #4F46E5;
  --indigo-h:  #4338CA;
  --violet:    #7C3AED;
  --fuchsia:   #EC4899;
  --emerald:   #10B981;
  --amber:     #F59E0B;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;
  --grad-hero:    linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
  --grad-indigo:  linear-gradient(135deg, #6366F1 0%, #4F46E5 50%, #4338CA 100%);
  --grad-emerald: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; color: var(--slate-700);
       background: var(--white); line-height: 1.6; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section--tight { padding: 72px 0; }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }


/* ══════════════════════════════════════════════
       TYPOGRAPHY
   ══════════════════════════════════════════════ */
.display-font { font-family: var(--font-display); }

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -.5px;
}
h3.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-900);
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 18px;
  color: var(--slate-500);
  max-width: 560px;
}

/* Gradient text utility */
.grad-indigo {
  background: var(--grad-indigo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-violet-fuchsia {
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-emerald {
  background: var(--grad-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ══════════════════════════════════════════════
       WORDMARK & CONNECTION MARK
   ══════════════════════════════════════════════ */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--slate-900);
}
.wordmark__ten {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wordmark__dr { color: var(--slate-900); }
.wordmark__dot {
  color: var(--emerald);
  font-size: 32px;
  line-height: 1;
  -webkit-text-fill-color: var(--emerald);
}

.connection-mark {
  width: 36px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.connection-mark__left,
.connection-mark__right {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 1px;
}
.connection-mark__left  { left: 0;  background: rgba(79,70,229,.5); }
.connection-mark__right { right: 0; background: rgba(124,58,237,.5); }
.connection-mark__lens  {
  position: absolute;
  left: 50%; top: 1px;
  transform: translateX(-50%);
  width: 14px; height: 22px;
  background: var(--emerald);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  clip-path: ellipse(7px 11px at 50% 50%);
}


/* ══════════════════════════════════════════════
       BUTTONS
   ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-indigo);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(79,70,229,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
  box-shadow: 0 6px 20px rgba(79,70,229,.45);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--slate-300);
  color: var(--slate-700);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(79,70,229,.04);
}
.btn-emerald {
  background: var(--grad-emerald);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16,185,129,.3);
}
.btn-emerald:hover { transform: translateY(-1px); }


/* ══════════════════════════════════════════════
       STICKY NAV
   ══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.nav::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--grad-hero);
  opacity: 0;
  transition: opacity .3s;
}
.nav.scrolled::after { opacity: 1; }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-600);
  transition: all .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--indigo); background: rgba(79,70,229,.06); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  padding: 16px 0 20px;
  border-top: 1px solid var(--slate-100);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 8px;
  transition: all .2s;
}
.mobile-menu a:hover { color: var(--indigo); background: rgba(79,70,229,.06); }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }
}


/* ══════════════════════════════════════════════
       HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 70%);
}
.hero__orb--2 {
  width: 400px; height: 400px;
  top: 50px; right: 0;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
}
.hero__orb--3 {
  width: 300px; height: 300px;
  bottom: -50px; left: 40%;
  background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
}
/* dot grid */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(79,70,229,.08);
  border: 1px solid rgba(79,70,229,.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.75); }
}

.hero__title { margin-bottom: 24px; }
.hero__title-line { display: block; }

.hero__sub {
  font-size: 19px;
  color: var(--slate-500);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.hero__trust-text { font-size: 14px; color: var(--slate-500); line-height: 1.4; }
.hero__trust-text strong { color: var(--slate-700); }

/* Hero illustration */
.hero__illustration { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
}
.hero-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero-card__badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.hero-card__badge--live {
  background: rgba(16,185,129,.1);
  color: var(--emerald);
  display: flex; align-items: center; gap: 5px;
}
.hero-card__badge--live::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}
.hero-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.hero-card__meta { font-size: 13px; color: var(--slate-500); margin-bottom: 18px; }

.hero-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--slate-50);
  border-radius: 8px;
  margin-bottom: 8px;
}
.hero-card__row-label { font-size: 13px; color: var(--slate-500); }
.hero-card__row-value { font-size: 13px; font-weight: 600; color: var(--slate-800); }

.hero-card__progress {
  margin-top: 16px;
}
.hero-card__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate-500);
  margin-bottom: 6px;
}
.hero-card__bar {
  height: 6px;
  background: var(--slate-200);
  border-radius: 999px;
  overflow: hidden;
}
.hero-card__fill {
  height: 100%;
  background: var(--grad-indigo);
  border-radius: 999px;
  width: 68%;
}
.hero-card__bids {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.hero-card__bid {
  flex: 1;
  padding: 8px 10px;
  background: rgba(79,70,229,.06);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--indigo);
  text-align: center;
}
.hero-card__bid--emerald {
  background: rgba(16,185,129,.08);
  color: var(--emerald);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__illustration { display: none; }
}


/* ══════════════════════════════════════════════
       TRUST STRIP
   ══════════════════════════════════════════════ */
.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.trust-strip__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-400);
  margin-bottom: 16px;
  text-align: center;
}
.trust-strip__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-pill {
  padding: 8px 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  letter-spacing: -.2px;
}


/* ══════════════════════════════════════════════
       HOW IT WORKS
   ══════════════════════════════════════════════ */
.how__header { text-align: center; margin-bottom: 60px; }
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.how__panel {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.how__panel--buyer    { border-top: 3px solid var(--indigo); }
.how__panel--supplier { border-top: 3px solid var(--emerald); }

.how__panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
}
.how__panel-badge--buyer    { background: rgba(79,70,229,.1);  color: var(--indigo);  }
.how__panel-badge--supplier { background: rgba(16,185,129,.1); color: var(--emerald); }
.how__step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.how__step:last-child { margin-bottom: 0; }
.how__num {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.how__num--buyer    { background: rgba(79,70,229,.1);  color: var(--indigo);  }
.how__num--supplier { background: rgba(16,185,129,.1); color: var(--emerald); }
.how__step-title { font-weight: 600; color: var(--slate-800); margin-bottom: 4px; }
.how__step-body  { font-size: 15px; color: var(--slate-500); }

@media (max-width: 720px) { .how__grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════
       LIVE ACTIVITY BAND
   ══════════════════════════════════════════════ */
.activity {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #2D1B69 100%);
  padding: 72px 0;
}
.activity__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.activity__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.activity__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}
.activity__stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.activity__stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.activity__stat-num span { color: var(--emerald); }
.activity__stat-label { font-size: 14px; color: rgba(255,255,255,.5); }
.activity__cta-text {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 220px;
  text-align: right;
}
.activity__cta-text strong { color: var(--white); }


/* ══════════════════════════════════════════════
       FEATURES GRID
   ══════════════════════════════════════════════ */
.features__header { text-align: center; margin-bottom: 60px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: all .3s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(79,70,229,.2);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 15px; color: var(--slate-500); }

@media (max-width: 900px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features__grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════
       TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials { background: var(--slate-50); }
.testimonials__header { text-align: center; margin-bottom: 60px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.tcard__stars { font-size: 15px; margin-bottom: 14px; }
.tcard__body  { font-size: 15px; color: var(--slate-600); line-height: 1.7; margin-bottom: 20px; }
.tcard__author { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--white);
}
.tcard__name   { font-weight: 600; font-size: 14px; color: var(--slate-800); }
.tcard__role   { font-size: 13px; color: var(--slate-500); }

@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials__grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════
       CATEGORIES
   ══════════════════════════════════════════════ */
.categories__header { text-align: center; margin-bottom: 60px; }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card__icon { font-size: 28px; margin-bottom: 12px; }
.cat-card__name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cat-card__count { font-size: 12px; color: rgba(255,255,255,.7); }

@media (max-width: 900px) { .categories__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .categories__grid { grid-template-columns: repeat(2, 1fr); } }


/* ══════════════════════════════════════════════
       PRICING
   ══════════════════════════════════════════════ */
.pricing { background: var(--slate-50); }
.pricing__header { text-align: center; margin-bottom: 60px; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--slate-200);
  background: var(--white);
}
.pricing-card--highlight {
  background: linear-gradient(160deg, #1E1B4B 0%, #2D1B69 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card--highlight::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px; right: -30px;
  background: var(--grad-emerald);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.pricing-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 4px;
}
.pricing-card__price sub { font-size: 18px; vertical-align: super; font-weight: 600; }
.pricing-card__per { font-size: 13px; margin-bottom: 24px; }
.pricing-card__desc { font-size: 15px; margin-bottom: 28px; }
.pricing-card__features { margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.pricing-feature__check { flex-shrink: 0; margin-top: 2px; }

/* dark card text overrides */
.pricing-card--highlight .pricing-card__label { color: rgba(255,255,255,.5); }
.pricing-card--highlight .pricing-card__price { color: var(--white); }
.pricing-card--highlight .pricing-card__per   { color: rgba(255,255,255,.5); }
.pricing-card--highlight .pricing-card__desc  { color: rgba(255,255,255,.6); }
.pricing-card--highlight .pricing-feature     { color: rgba(255,255,255,.8); }

@media (max-width: 680px) { .pricing__grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════
       FAQ ACCORDION
   ══════════════════════════════════════════════ */
.faq__header { text-align: center; margin-bottom: 60px; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-item:first-child { border-top: 1px solid var(--slate-200); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-800);
  gap: 16px;
  transition: color .2s;
}
.faq-item__q:hover { color: var(--indigo); }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  font-size: 18px;
  line-height: 1;
}
.faq-item.open .faq-item__icon {
  background: rgba(79,70,229,.1);
  color: var(--indigo);
  transform: rotate(45deg);
}
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.75;
}


/* ══════════════════════════════════════════════
       WAITLIST / CTA BAND
   ══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #1E1B4B 0%, #2D1B69 40%, #1a1040 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
}
.cta-band__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.cta-band__sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  margin-bottom: 44px;
}

/* ── Success panel ── */
.success-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.success-panel__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-emerald);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}
.success-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
}
.success-panel__sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
}
.success-panel__email {
  font-weight: 600;
  color: var(--emerald);
}

/* ── Error toast ── */
.error-toast {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #FCA5A5;
  margin-bottom: 24px;
  text-align: left;
}

/* ── Waitlist form ── */
.wl-form { text-align: left; }
.wl-form__field { margin-bottom: 16px; }
.wl-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 7px;
}
.wl-form__input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-body);
  transition: all .2s;
  outline: none;
}
.wl-form__input::placeholder { color: rgba(255,255,255,.3); }
.wl-form__input:focus {
  border-color: rgba(99,102,241,.6);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(99,102,241,.2);
}
.wl-form__textarea {
  resize: vertical;
  min-height: 72px;
}
.wl-form__role {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wl-form__role-btn {
  position: relative;
}
.wl-form__role-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.wl-form__role-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.wl-form__role-btn input:checked + .wl-form__role-label {
  background: rgba(99,102,241,.2);
  border-color: rgba(99,102,241,.6);
  color: var(--white);
}
.wl-form__role-label:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.wl-form__submit {
  width: 100%;
  padding: 16px;
  background: var(--grad-indigo);
  color: var(--white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(79,70,229,.5);
  transition: all .2s;
  cursor: pointer;
  border: none;
  margin-top: 8px;
}
.wl-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,.6);
}
.wl-form__microcopy {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-top: 14px;
}


/* ══════════════════════════════════════════════
       FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: #0A0F1E;
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-logo { margin-bottom: 16px; }
.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all .2s;
}
.footer__social:hover {
  background: rgba(79,70,229,.3);
  border-color: rgba(79,70,229,.5);
}
.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__links a:hover { color: rgba(255,255,255,.9); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__copy a { color: var(--emerald); }
.footer__badge {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

.footer__wordmark { display: flex; align-items: center; gap: 4px; }
.footer__wordmark .wordmark__ten { color: rgba(255,255,255,.8); }
.footer__wordmark .wordmark__dr  { color: rgba(255,255,255,.8); }
.footer__wordmark .wordmark__dot {
  -webkit-text-fill-color: var(--emerald);
  color: var(--emerald);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .activity__stats { gap: 32px; }
}

