/* ============================================ */
/* AI COMMERCE — Premium Dark Futurist v2.0     */
/* Inspired by Cadre AI · Dark-First            */
/* ============================================ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Backgrounds */
  --bg-primary:    #000000;
  --bg-secondary:  #000000;
  --bg-card:       #000000;
  --bg-elevated:   #000000;
  --bg-glass:      rgba(0, 0, 0, 0.85);

  /* Cyan accent */
  --cyan:          #00c8ff;
  --cyan-dim:      rgba(0, 200, 255, 0.12);
  --cyan-glow:     rgba(0, 200, 255, 0.08);
  --cyan-border:   rgba(0, 200, 255, 0.15);
  --cyan-hover:    rgba(0, 200, 255, 0.25);

  /* Text */
  --text-white:    #ffffff;
  --text-light:    #e2e8f0;
  --text-muted:    #94a3b8;
  --text-dim:      #6b7280;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.06);
  --border-hover:  rgba(255, 255, 255, 0.12);
  --border-cyan:   rgba(0, 200, 255, 0.20);

  /* Status */
  --success:       #4ADE80;
  --warning:       #FACC15;
  --error:         #EF4444;

  /* Fonts */
  --font-display:  'Inter', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', 'DM Mono', monospace;

  /* Layout */
  --max-w:         1280px;
  --max-w-wide:    1440px;
  --gutter:        24px;
  --pad-desktop:   80px;
  --pad-mobile:    24px;
  --section-pad:   120px;
  --nav-h:         72px;

  /* Transitions */
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --dur:           300ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-white);
  background: var(--bg-primary);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* Focus-visible outlines for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Cyan interactive hover transitions */
[class*="btn"],
.tabs__pill,
.tabs__cta,
.mp-filter-pill,
.mp-card__deploy,
.footer__link,
.footer__social-link,
.nav__link,
.mobile-menu__link {
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

/* ─── TYPOGRAPHY ─── */
.display-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

.display-l {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  color: var(--text-white);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-white);
}

.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-white);
}

.body-lg {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.text-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.text-muted { color: var(--text-muted); }

.accent { color: var(--cyan); }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
}

.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--bg { background: var(--bg-primary); }
.section--surface { background: var(--bg-secondary); }

.section__divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 1000px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ─── TAGS / BADGES ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-glow);
  border: 1px solid var(--cyan-border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  line-height: 1.4;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--cyan-glow);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge--active { color: var(--cyan); }
.badge__dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.badge__dot--green { background: var(--success); box-shadow: 0 0 8px var(--success); animation: pulse-green 2s ease-in-out infinite; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 8px;
}

.btn--primary {
  background: var(--cyan);
  color: #0a0a0a;
  padding: 14px 32px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}
.btn--primary:hover {
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--text-white);
  padding: 14px 32px;
  border: 1px solid var(--border-hover);
}
.btn--secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--ghost {
  background: none;
  border: none;
  color: var(--cyan);
  padding: 14px 0;
  font-weight: 500;
}
.btn--ghost:hover {
  opacity: 0.8;
}

.btn--lg { padding: 16px 40px; font-size: 15px; }
.btn--xl { padding: 20px 48px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 12px; }
.btn--full { width: 100%; justify-content: center; }

.arrow { font-size: 1.1em; transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--dur), backdrop-filter var(--dur), border-color var(--dur);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--dur);
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  color: var(--text-white);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--text-muted);
  transition: color var(--dur);
}
.mobile-menu__link:hover { color: var(--text-white); }

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 280px;
  margin-top: 24px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Radial glow background */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(ellipse at center, rgba(0, 200, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
  max-width: var(--max-w-wide);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.2s forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero__headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) forwards;
}
.hero__headline .word:nth-child(1)  { animation-delay: 0.3s;  }
.hero__headline .word:nth-child(2)  { animation-delay: 0.38s; }
.hero__headline .word:nth-child(3)  { animation-delay: 0.46s; }
.hero__headline .word:nth-child(4)  { animation-delay: 0.54s; }
.hero__headline .word:nth-child(5)  { animation-delay: 0.62s; }
.hero__headline .word:nth-child(6)  { animation-delay: 0.70s; }
.hero__headline .word:nth-child(7)  { animation-delay: 0.78s; }
.hero__headline .word:nth-child(8)  { animation-delay: 0.86s; }
.hero__headline .word:nth-child(9)  { animation-delay: 0.94s; }
.hero__headline .word:nth-child(10) { animation-delay: 1.02s; }
.hero__headline .word:nth-child(11) { animation-delay: 1.10s; }
.hero__headline .word:nth-child(12) { animation-delay: 1.18s; }

.hero__headline .line {
  display: block;
}

.hero__headline .light {
  font-weight: 300;
  color: var(--text-muted);
}

.hero__headline .accent {
  color: var(--cyan);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 1.0s forwards;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 1.15s forwards;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 1.3s forwards;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-white);
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 0.6s var(--ease) 1.6s forwards;
  transition: opacity 0.4s;
  z-index: 3;
}
.hero__scroll.faded { opacity: 0 !important; }

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border-hover);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--cyan);
  animation: scrollLine 2s ease-in-out infinite;
}

.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__animation {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.6s forwards;
}

.hero__canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
}

/* ─── PROBLEM SECTION (Editorial Rows) ─── */
.editorial {
  display: flex;
  flex-direction: column;
}

.editorial__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: baseline;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.editorial__row--last {
  border-bottom: none;
}

.editorial__statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.35;
  color: var(--text-white);
}

.editorial__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── SOLUTION SECTION (Timeline + Card) ─── */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sol-timeline {
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sol-timeline__line {
  position: absolute;
  top: 8px;
  left: 7px;
  bottom: 8px;
  width: 0;
  border-left: 2px dashed rgba(0, 200, 255, 0.3);
}

.sol-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.sol-step__dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.35);
  flex-shrink: 0;
  z-index: 1;
}

.sol-step__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sol-step__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.sol-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text-white);
}

.sol-step__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Adaptive Intelligence Card */
.sol-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: border-color var(--dur);
}
.sol-card:hover {
  border-color: var(--border-cyan);
}

.sol-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.sol-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 16px;
}

.sol-card__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.sol-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sol-card__list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.sol-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

/* Legacy: keep old problem classes for compatibility */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem__left h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.3;
  color: var(--text-light);
}

.problem__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: border-color var(--dur);
}
.problem__item:hover {
  border-color: var(--border-hover);
}

.problem__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.problem__item .body-lg {
  color: var(--text-muted);
  font-size: 16px;
}

/* ─── CARDS ─── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 200, 255, 0.06);
}

.card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.card__icon {
  margin-bottom: 24px;
}

.card .h2 { margin-bottom: 12px; }

.card--sm { padding: 24px; border-radius: 12px; }
.card--sm .card__label { margin-bottom: 12px; }

/* ─── SPLIT LAYOUT ─── */
.split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.split__left .display-l { margin-bottom: 20px; }
.split__left .body-lg { margin-bottom: 16px; }

.feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.6;
}

/* ─── FEEDBACK LOOP ─── */
.feedback-loop {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.feedback-loop svg { width: 100%; height: auto; }

/* ─── PLATFORMS ─── */
.platforms-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.platform-group__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.platform-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.platform-card:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.platform-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cyan-glow);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--cyan);
}

.platform-card span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.platforms__note {
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 48px;
}

/* ─── PLATFORM MARQUEE ─── */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.marquee__track--left {
  animation: scrollLeft 50s linear infinite;
}

.marquee__track--right {
  animation: scrollRight 60s linear infinite;
}

/* Pause on hover for accessibility */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #000000;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color var(--dur), color var(--dur);
  cursor: default;
  user-select: none;
}

.marquee__pill:hover {
  border-color: var(--border-hover);
  color: var(--cyan);
}

.marquee__note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 48px;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Respect reduced motion for marquee */
@media (prefers-reduced-motion: reduce) {
  .marquee__track--left,
  .marquee__track--right {
    animation: none;
  }
  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ─── DASHBOARD PERSPECTIVE FRAME ─── */
.dashboard-perspective {
  perspective: 1200px;
  perspective-origin: 50% 40%;
  margin-bottom: 80px;
}

.dashboard-frame {
  position: relative;
  transform: rotateX(4deg) rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  border-radius: 18px;
}

.dashboard-frame:hover {
  transform: rotateX(1deg) rotateY(0deg);
}

/* Cyan glow behind the frame */
.dashboard-frame__glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.10) 0%,
    rgba(0, 200, 255, 0.03) 40%,
    rgba(0, 200, 255, 0.08) 100%
  );
  z-index: -1;
  filter: blur(20px);
  opacity: 0.7;
  transition: opacity 0.6s var(--ease);
}

.dashboard-frame:hover .dashboard-frame__glow {
  opacity: 1;
  filter: blur(30px);
}

/* ─── DASHBOARD MOCKUP ─── */
.dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(0, 200, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dashboard__topbar {
  background: var(--bg-elevated);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard__topbar-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.dashboard__topbar-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dashboard__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 400px;
}

.dashboard__sidebar {
  background: var(--bg-primary);
  border-right: 1px solid var(--border);
  padding: 16px 0;
}

.dashboard__sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--dur), background var(--dur);
  border-left: 2px solid transparent;
}
.dashboard__sidebar-item:hover {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}
.dashboard__sidebar-item.active {
  color: var(--cyan);
  background: rgba(0, 200, 255, 0.04);
  border-left-color: var(--cyan);
}

.dashboard__main { padding: 24px; }

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

.dash-metric {
  background: rgba(0, 200, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.dash-metric__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.dash-metric__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 4px;
}

.dash-metric__unit { font-size: 16px; color: var(--text-dim); }

.dash-metric__trend {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.dash-metric__trend--up { color: var(--success); }
.dash-metric__trend--down { color: var(--error); }

.dashboard__content-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
}

/* ─── DASHBOARD TABLE ─── */
.dashboard__table-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  overflow-x: auto;
}

.dash-table__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.dash-table { width: 100%; border-collapse: collapse; }

.dash-table th {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.dash-table td {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dash-table tr:nth-child(even) { background: rgba(255, 255, 255, 0.01); }
.dash-table__name { color: var(--text-white); font-family: var(--font-body); font-size: 13px; }

.status-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: pulse-green 2s ease-in-out infinite;
}

/* ─── DASHBOARD EVENTS ─── */
.dashboard__events {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.dash-event {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.dash-event:last-child { border-bottom: none; }

.dash-event__date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--cyan);
  white-space: nowrap;
  padding-top: 2px;
}

.dash-event__title {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-white);
  margin-bottom: 2px;
}

.dash-event__meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ─── DASHBOARD FEATURE CALLOUTS ─── */
.dash-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.dash-feature {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.dash-feature:hover {
  border-color: var(--border-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 200, 255, 0.06);
}

.dash-feature__icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cyan-glow);
  border: 1px solid var(--cyan-border);
}

.dash-feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 10px;
}

.dash-feature__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── TABS ─── */
.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs__nav::-webkit-scrollbar { display: none; }

.tabs__tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  transition: color var(--dur), border-color var(--dur);
  flex-shrink: 0;
}
.tabs__tab:hover { color: var(--text-muted); }
.tabs__tab.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* Pill-style tab navigation */
.tabs__nav--pills {
  border-bottom: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 56px;
  padding: 0;
}

.tabs__pill {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.tabs__pill:hover {
  color: var(--text-muted);
  border-color: var(--border-hover);
}

.tabs__pill.active {
  color: #0a0a0a;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.2);
}

.tabs__panel { display: none; }
.tabs__panel.active { display: block; }

/* Fade transition for tab panels */
.tabs__panel--fade {
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.tabs__panel--fade.active {
  opacity: 1;
}

/* Two-column split layout for panels */
.tabs__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tabs__split-left .h1 {
  margin-bottom: 20px;
}

.tabs__split-left .text-body {
  margin-bottom: 28px;
}

/* Cyan chevron bullet list */
.tabs__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.tabs__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.tabs__chevron {
  color: var(--cyan);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
}

/* CTA link for tabs */
.tabs__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--cyan);
  transition: opacity var(--dur);
}
.tabs__cta:hover { opacity: 0.75; }
.tabs__cta .arrow { transition: transform var(--dur) var(--ease); }
.tabs__cta:hover .arrow { transform: translateX(4px); }

/* Right column abstract card */
.tabs__split-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  transition: border-color var(--dur), box-shadow var(--dur);
}

.tabs__card:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 8px 40px rgba(0, 200, 255, 0.06);
}

.tabs__card svg {
  opacity: 0.85;
  transition: opacity var(--dur);
}

.tabs__card:hover svg {
  opacity: 1;
}

.tabs__card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Legacy tabs__list (keep for compatibility) */
.tabs__list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tabs__list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}
.tabs__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.5;
}

/* ─── RESULTS METRICS ─── */
.results__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin: 64px 0;
}

.result-metric {
  text-align: center;
  padding: 40px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color var(--dur);
}
.result-metric:hover {
  border-color: var(--border-cyan);
}

.result-metric__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1;
}

.result-metric__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  max-width: 200px;
  margin: 0 auto;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.testimonial {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur);
}
.testimonial:hover {
  border-color: var(--border-cyan);
}

.testimonial__stars {
  color: var(--warning);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial__quote {
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-white);
}

.testimonial__company {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ─── TIMELINE ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: 80px;
}

.timeline__step {
  position: relative;
  padding-right: 24px;
}

.timeline__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--cyan);
  opacity: 0.15;
  margin-bottom: 16px;
}

.timeline__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.timeline__step .h2 { margin-bottom: 12px; }

.timeline__connector {
  position: absolute;
  top: 40px;
  right: 0;
  width: 24px;
  height: 1px;
  border-top: 1px dashed rgba(0, 200, 255, 0.2);
}

.timeline__step:last-child .timeline__connector { display: none; }

/* ─── AUTOMATIONS ─── */
.auto-tabs { width: 100%; }

.auto-tabs__iframe {
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-primary);
  display: block;
  margin-bottom: 24px;
}
.auto-tabs__iframe:last-child { margin-bottom: 0; }

/* ─── CTA SECTION ─── */

/* ─── ABOUT SECTION ─── */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  margin-bottom: 48px;
}

.about-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.about-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 200, 255, 0.04);
}

.about-card__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.3;
  margin-bottom: 20px;
}

.about-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 12px;
}

.about-card__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Horizontal stat bar */
.about-stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 56px;
}

.about-stat-bar__item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}

.about-stat-bar__item strong {
  color: var(--text-white);
  font-weight: 600;
}

.about-stat-bar__sep {
  color: var(--text-dim);
  font-size: 14px;
}

/* Core values pills */
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 64px;
}

.about-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: 14px;
  padding: 20px 28px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  transition: border-color var(--dur), box-shadow var(--dur);
}

.about-value:hover {
  border-color: rgba(0, 200, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.06);
}

.about-value__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.about-value__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Vision statement */
.about-vision {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}

.about-vision__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

/* ─── FINAL CTA SECTION ─── */
.section--cta {
  text-align: center;
  overflow: hidden;
  padding: 160px 0;
  background: var(--bg-primary);
  position: relative;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 200, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.cta__light {
  font-weight: 300;
  color: var(--text-muted);
}

/* Large CTA button */
.btn--cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #0a0a0a;
  background: var(--cyan);
  border: none;
  border-radius: 10px;
  padding: 18px 40px;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.2);
  transition: all var(--dur) var(--ease);
}

.btn--cta:hover {
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.35);
  transform: translateY(-2px);
}

.btn--cta .arrow {
  font-size: 1.1em;
  transition: transform var(--dur) var(--ease);
}

.btn--cta:hover .arrow {
  transform: translateX(4px);
}

.cta__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-top: 24px;
}

.cta__email {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--cyan);
  margin-top: 16px;
  transition: opacity var(--dur);
}
.cta__email:hover { opacity: 0.7; }

/* ─── FOOTER ─── */
.footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer__brand {}

.footer__logo-wrap { margin-bottom: 16px; }

.footer__logo-img { height: 32px; width: auto; display: block; }

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: #6b7280;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social-link:hover {
  color: var(--cyan);
  border-color: var(--cyan-border);
  background: var(--cyan-glow);
}
.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: #6b7280;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--cyan); }

/* Email link style */
.footer__link--email {
  color: #6b7280;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.footer__link--email:hover { color: var(--cyan); }

/* CTA link style */
.footer__link--cta {
  color: var(--cyan);
  font-weight: 500;
  font-size: 14px;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s, opacity 0.2s;
}
.footer__link--cta:hover { opacity: 0.75; }

.footer__location {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-top: 16px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.footer__bottom-links a {
  color: #6b7280;
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--cyan); }

.footer__bottom-sep {
  margin: 0 6px;
  color: #6b7280;
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
  }
  .reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
  .reveal-stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
  .reveal-stagger.visible > *:nth-child(8) { transition-delay: 560ms; }
}

/* Disable all animations and transitions for prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── KEYFRAME ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 4px var(--success); }
  50% { box-shadow: 0 0 12px var(--success); }
}

@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 100%; }
}

@keyframes data-flow {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  10%  { opacity: 0.3; }
  90%  { opacity: 0.3; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ─── DATA LINE ANIMATION ─── */
@media (prefers-reduced-motion: no-preference) {
  .data-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: data-flow 3s linear infinite; }
  .data-line--1 { animation-delay: 0s; }
  .data-line--2 { animation-delay: 0.5s; }
  .data-line--3 { animation-delay: 1s; }
  .data-line--4 { animation-delay: 1.5s; }
  .data-line--5 { animation-delay: 2s; }
  .data-line--6 { animation-delay: 2.5s; }
  .data-line--7 { animation-delay: 0.8s; }
  .data-line--8 { animation-delay: 1.3s; }
}

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 32px; }
  .container--wide { padding: 0 32px; }

  .nav__links { position: static; transform: none; gap: 24px; }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero__sub { margin: 0 auto 40px; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; flex-wrap: wrap; }
  .hero__right { margin-top: 32px; }
  .hero__animation { max-width: 400px; margin: 0 auto; }

  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial__row { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .sol-grid { grid-template-columns: 1fr; gap: 48px; }
  .sol-card { padding: 32px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }

  .dashboard__body { grid-template-columns: 1fr; }
  .dashboard__sidebar { display: none; }

  /* Dashboard scale on tablet with overflow hidden */
  .dashboard-perspective { overflow: hidden; }
  .dashboard__metrics { grid-template-columns: repeat(2, 1fr); }
  .dashboard__content-grid { grid-template-columns: 1fr; }
  .dash-features { grid-template-columns: 1fr; }
  .dashboard-frame { transform: rotateX(2deg); }
  .dashboard-frame:hover { transform: rotateX(0deg); }

  .results__metrics { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .timeline__connector { display: none; }

  .tabs__split { grid-template-columns: 1fr; gap: 40px; }
  .tabs__split-right { order: -1; }
  .tabs__card { max-width: 280px; aspect-ratio: auto; padding: 36px; }
  .tabs__nav--pills { gap: 8px; }
  .tabs__pill { font-size: 12px; padding: 8px 18px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__desc { max-width: 480px; }

  .about-cards { grid-template-columns: 1fr; }
  .about-stat-bar { border-radius: 16px; }
  .about-values { gap: 10px; }
  .about-value { min-width: 160px; padding: 16px 20px; }
}

/* ─── RESPONSIVE — DASHBOARD SCALE ─── */
@media (max-width: 900px) {
  .dashboard-perspective {
    overflow: hidden;
  }
  .dashboard-frame {
    transform: scale(0.75);
    transform-origin: top center;
  }
  .dashboard-frame:hover { transform: scale(0.75); }
}

/* ─── RESPONSIVE — MOBILE ─── */
@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-h: 64px; }
  .container { padding: 0 var(--pad-mobile); }
  .container--wide { padding: 0 var(--pad-mobile); }

  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 var(--pad-mobile); max-width: 100%; }

  .hero { min-height: auto; padding: 110px 0 64px; }
  .hero__headline { margin-bottom: 20px; }
  .hero__headline { font-size: 40px !important; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero__stat-value { font-size: 20px; }
  .hero__scroll { display: none; }

  .editorial__row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .editorial__statement { font-size: 20px; }
  .editorial__body { font-size: 15px; }
  .sol-grid { grid-template-columns: 1fr; gap: 40px; }
  .sol-card { padding: 28px; }
  .sol-step__title { font-size: 18px; }
  .sol-card__title { font-size: 20px; }

  .cards-4 { grid-template-columns: 1fr; }
  .results__metrics { grid-template-columns: 1fr 1fr; }
  /* Timeline left-aligned on mobile */
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    padding-left: 32px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    bottom: 0;
    width: 2px;
    background: rgba(0, 200, 255, 0.15);
  }
  .timeline__step { padding-right: 0; position: relative; }
  .timeline__number {
    font-size: 36px;
    position: relative;
  }
  .timeline__number::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.3);
  }

  /* Tabs accordion on mobile */
  .tabs__nav--pills {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .tabs__pill {
    text-align: left;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 13px;
  }

  .tabs__tab { padding: 12px 16px; font-size: 10px; }
  .tabs__nav--pills { gap: 6px; }
  .tabs__pill { font-size: 11px; padding: 8px 14px; }
  .tabs__split { gap: 32px; }
  .tabs__card { max-width: 240px; padding: 28px; }
  .tabs__card svg { width: 90px; height: 90px; }
  .tabs__bullets li { font-size: 14px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__desc { max-width: 100%; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .platform-grid { grid-template-columns: repeat(3, 1fr); }

  .marquee__pill { padding: 8px 14px; font-size: 11px; }
  .marquee__track { gap: 8px; }

  .section--cta { padding: 100px 0; }

  .about-stat-bar { flex-direction: column; gap: 8px; padding: 20px 24px; border-radius: 14px; }
  .about-stat-bar__sep { display: none; }
  .about-values { flex-direction: column; align-items: center; }
  .about-value { max-width: 100%; min-width: auto; width: 100%; }
  .about-card { padding: 28px 24px; }
  .about-card__title { font-size: 18px; }
  .about-vision { font-size: 16px; }
  .cta__headline { font-size: clamp(36px, 5vw, 48px); }
  .btn--cta { font-size: 16px; padding: 16px 32px; }

  /* Dashboard scale on small screens */
  .dashboard-perspective {
    perspective: none;
    margin-bottom: 48px;
    overflow: hidden;
  }
  .dashboard-frame {
    transform: scale(0.7);
    transform-origin: top center;
  }
  .dashboard-frame:hover { transform: scale(0.7); }
  .dashboard-frame__glow { display: none; }
  .dash-features { gap: 16px; }
  .dash-feature { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .results__metrics { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard__metrics { grid-template-columns: 1fr 1fr; }
}

/* ─── RESPONSIVE — ULTRAWIDE ─── */
@media (min-width: 1600px) {
  :root { --pad-desktop: 120px; --section-pad: 140px; }
  .container { max-width: 1400px; }
  .container--wide { max-width: 1600px; }
  .nav__inner { max-width: 1600px; }
  .hero__content { gap: 120px; max-width: 1600px; }
}

@media (min-width: 1920px) {
  :root { --pad-desktop: 160px; }
  .container { max-width: 1600px; }
  .container--wide { max-width: 1800px; }
}
