/* ─────────────────────────────────────────── */
/* CSS RESET & TOKENS                          */
/* ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  /* IBM Plex Sans for body copy — clean, legible, corporate */
  font-family: "IBM Plex Sans", sans-serif;
  background: #05000f;
  color: #fff;
  overflow-x: hidden;
  cursor: none;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: none;
}

/* ─────────────────────────────────────────── */
/* DESIGN TOKENS                               */
/* ─────────────────────────────────────────── */
:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-glow: rgba(124, 58, 237, 0.35);
  --accent: #e879f9;
  --dark: #05000f;
  --dark-2: #0d0622;
  --dark-3: #140d2a;
  --white: #ffffff;
  --gray: #9ca3af;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);

  /* Plus Jakarta Sans for all headings */
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

/* ─────────────────────────────────────────── */
/* CUSTOM CURSOR                               */
/* ─────────────────────────────────────────── */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232, 121, 249, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
body.cursor-hover #cursor {
  width: 40px;
  height: 40px;
  background: var(--purple-glow);
}
body.cursor-hover #cursor-ring {
  border-color: var(--purple);
}

/* ─────────────────────────────────────────── */
/* NOISE OVERLAY                               */
/* ─────────────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─────────────────────────────────────────── */
/* SCROLL PROGRESS BAR                         */
/* ─────────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(232, 121, 249, 0.6);
}

/* ─────────────────────────────────────────── */
/* SECTION REVEAL DEFAULTS                     */
/* ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ─────────────────────────────────────────── */
/* SHARED UTILITIES                            */
/* ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* ─────────────────────────────────────────── */
/* NAV                                         */
/* ─────────────────────────────────────────── */
#landing-nav {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: top 0.3s ease;
}
#landing-nav.scrolled {
  top: 0;
}
#landing-nav.scrolled .nav-content {
  border-radius: 0;
  border-left: none;
  border-right: none;
  width: 100%;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 6, 34, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--card-border);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.1),
    0 2px 20px rgba(0, 0, 0, 0.4);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: #fff;
  flex-shrink: 0;
}
.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn {
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.2s;
}
.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--card-border);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.btn-default {
  background: var(--purple);
  color: #fff;
  border: 1px solid var(--purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}
.btn-default:hover {
  background: var(--purple-light);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-content {
    width: 94%;
    padding: 12px 18px;
  }
}

/* ─────────────────────────────────────────── */
/* HERO                                        */
/* ─────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  /* Fix: use container + grid so content never overlaps */
}

/* Radial glow */
.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 30%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Orbit rings */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-1 {
  width: 500px;
  height: 500px;
}
.orbit-2 {
  width: 750px;
  height: 750px;
  animation: spin 30s linear infinite;
}
.orbit-3 {
  width: 1000px;
  height: 1000px;
  animation: spin 50s linear infinite reverse;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Two-column hero layout */
.hero-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.28);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
}
.hero-title .highlight {
  color: var(--accent);
  position: relative;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  border-radius: 2px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Primary CTA button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.45);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 36px rgba(124, 58, 237, 0.55),
    0 0 0 6px rgba(124, 58, 237, 0.1);
}
.btn-hero:hover::before {
  opacity: 1;
}
.btn-hero i {
  transition: transform 0.3s;
}
.btn-hero:hover i {
  transform: translateX(4px);
}

/* Ghost / secondary button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.btn-ghost i {
  font-size: 11px;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  padding-right: 32px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 32px;
  flex-shrink: 0;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #fff 20%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  margin-top: 3px;
}

/* Hero visual / mockup */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-float-badge {
  position: absolute;
  right: -16px;
  top: -16px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
}

.hero-mockup {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) {
  background: #ff5f57;
}
.mockup-dot:nth-child(2) {
  background: #ffbd2e;
}
.mockup-dot:nth-child(3) {
  background: #28ca41;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.mockup-card {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 12px;
  padding: 14px;
}
.mockup-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.mockup-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}
.mockup-card-trend {
  font-family: var(--font-body);
  font-size: 11px;
  color: #4ade80;
  margin-top: 4px;
  font-weight: 500;
}
.mockup-chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 12px 12px 8px;
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--purple), var(--accent));
  border-radius: 3px 3px 2px 2px;
  opacity: 0.6;
}
.chart-bar:nth-child(7) {
  opacity: 1;
}

/* Responsive hero */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }
  .hero-visual {
    max-width: 480px;
  }
  .orbit {
    left: 50%;
  }
  .hero-section::before {
    left: 50%;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 110px 0 80px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .hero-visual {
    max-width: 100%;
  }
  .hero-float-badge {
    right: 0;
    top: -12px;
    font-size: 11px;
  }
  .hero-stats {
    gap: 0;
  }
  .stat-divider {
    margin-right: 20px;
  }
  .stat {
    padding-right: 20px;
  }
}

/* ─────────────────────────────────────────── */
/* TICKER / MARQUEE                            */
/* ─────────────────────────────────────────── */
.ticker-section {
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: var(--dark-2);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-item .ti-dot {
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────── */
/* PARTNERS                                    */
/* ─────────────────────────────────────────── */
.partners-section {
  padding: 56px 0;
  background: var(--dark);
  position: relative;
  z-index: 2;
}
.section-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 36px;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.partner-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.partner-text:hover {
  color: rgba(255, 255, 255, 0.55);
}

/* ─────────────────────────────────────────── */
/* SHARED SECTION TYPOGRAPHY                   */
/* ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Eyebrow — fixed: use explicit width for pseudo-lines, not flex */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #fff;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 12px;
  font-weight: 400;
}

/* ─────────────────────────────────────────── */
/* SERVICES                                    */
/* ─────────────────────────────────────────── */
.services-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.services-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(232, 121, 249, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-5px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(124, 58, 237, 0.1);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.18),
    rgba(232, 121, 249, 0.08)
  );
  border: 1px solid rgba(124, 58, 237, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.72;
  font-weight: 400;
}

/* Featured wide card */
.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.13),
    rgba(232, 121, 249, 0.06)
  );
  border-color: rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  gap: 32px;
}
.featured-text {
  flex: 1;
  min-width: 0;
}
.featured-text .service-title {
  font-size: 1.5rem;
}
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.38);
}
.featured-cta:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}
.featured-cta i {
  transition: transform 0.2s;
}
.featured-cta:hover i {
  transform: translateX(4px);
}
.featured-visual {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card.featured {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }
  .featured-visual {
    display: none;
  }
}

/* ─────────────────────────────────────────── */
/* STATS BAND                                  */
/* ─────────────────────────────────────────── */
.marque-section {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.marque-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.25),
    transparent 65%
  );
  pointer-events: none;
}
.marque-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.marque-stats-row {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.marque-stat {
  padding: 0 60px;
  text-align: center;
}
/* Fixed: give divider explicit height */
.marque-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  align-self: center;
}
.marque-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
.marque-stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 10px;
  font-weight: 400;
}

@media (max-width: 640px) {
  .marque-stats-row {
    flex-direction: column;
    gap: 32px;
  }
  .marque-divider {
    width: 60px;
    height: 1px;
  }
  .marque-stat {
    padding: 0;
  }
}

/* ─────────────────────────────────────────── */
/* HOW IT WORKS / STEPS                        */
/* ─────────────────────────────────────────── */
.steps-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.steps-section::before {
  content: "";
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.1), transparent);
  pointer-events: none;
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .steps-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.step-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s;
  margin-bottom: 2px;
}
.step-item:hover,
.step-item.active {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.18);
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s;
}
.step-item.active .step-num {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.step-description {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  font-weight: 400;
}

/* Compose widget */
.steps-visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: visible; /* allow notif to overflow */
}
/* Gradient border glow */
.steps-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.28),
    rgba(232, 121, 249, 0.08),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff, #fff) content-box,
    linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.compose-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 14px;
  font-weight: 500;
}
.compose-to {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 8px;
}
.compose-icon {
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}
.compose-field-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.compose-to input {
  background: none;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  flex: 1;
  min-width: 0;
}
.compose-body {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  min-height: 62px;
  font-weight: 400;
}
.compose-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.char-count {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 400;
}
.send-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  color: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.38);
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.5);
}

/* Notification popup — fixed: contained within visual, no overflow clipping */
.notif-pop {
  position: absolute;
  right: -12px;
  bottom: 68px;
  background: #1a0d3a;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
  font-size: 12px;
  min-width: 210px;
  max-width: 240px;
  animation: popIn 4s ease infinite 1.5s;
  opacity: 0;
}
@keyframes popIn {
  0%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
  15%,
  82% {
    opacity: 1;
    transform: translateY(0);
  }
}
.notif-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.notif-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}
.notif-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.notif-body {
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.5;
  font-weight: 400;
}

/* ─────────────────────────────────────────── */
/* CTA BAND                                    */
/* ─────────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.18),
    transparent 62%
  );
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.cta-text {
  flex: 1;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.cta-desc {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.42);
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 400;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────── */
/* FAQ                                         */
/* ─────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  z-index: 2;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Fix: eyebrow left-aligned variant for FAQ */
.faq-eyebrow {
  justify-content: flex-start;
}
.faq-eyebrow::before {
  display: none;
}

.faq-title {
  text-align: left;
  margin-top: 10px;
}
.faq-intro {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.42);
  margin-top: 16px;
  line-height: 1.75;
  font-size: 0.925rem;
  font-weight: 400;
}
.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 24px;
  transition: gap 0.2s;
}
.faq-contact-link i {
  transition: transform 0.2s;
  font-size: 12px;
}
.faq-contact-link:hover i {
  transform: translateX(4px);
}

.accordion-item {
  border-bottom: 1px solid var(--card-border);
  padding: 18px 0;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  padding: 2px 0;
  text-align: left;
}
.accordion-trigger:hover {
  color: #fff;
}
.accordion-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  transition: all 0.3s;
  flex-shrink: 0;
}
.accordion-item.active .accordion-icon {
  background: var(--purple);
  border-color: var(--purple);
  transform: rotate(45deg);
}
.accordion-item.active .accordion-trigger {
  color: #fff;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-top: 12px;
}
.accordion-content p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 400;
}

/* ─────────────────────────────────────────── */
/* APP DOWNLOAD                                */
/* ─────────────────────────────────────────── */
.download-section {
  padding: 100px 0;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.download-section::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.16), transparent);
  pointer-events: none;
}
.download-content {
  text-align: center;
  max-width: 560px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.download-eyebrow {
  justify-content: center;
}
.download-content p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.42);
  margin-top: 14px;
  margin-bottom: 36px;
  font-size: 0.95rem;
  font-weight: 400;
}
.store-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 22px;
  color: #fff;
  transition: all 0.28s;
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.store-btn i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}
.store-btn-text .sb-top {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.store-btn-text .sb-bottom {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.975rem;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────── */
/* FOOTER                                      */
/* ─────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--card-border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand .logo {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer-brand .logo span {
  color: var(--accent);
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  font-weight: 400;
  max-width: 260px;
}
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.825rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 11px;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 400;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: all 0.2s;
}
.social-btn:hover {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.38);
  color: var(--accent);
  transform: translateY(-2px);
}
