@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
img, video, svg {
  display: block;
  max-width: 100%;
}
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
}
a { text-decoration: none; color: inherit; }

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --bg-void:        #0c0d0f;
  --bg-surface:     #111318;
  --bg-raised:      #181b22;
  --bg-border:      #242830;
  --bg-hover:       #1e2229;

  --text-primary:   #f0ede8;
  --text-secondary: #9a9da8;
  --text-muted:     #5a5e6b;

  --accent:         #39ff8e;
  --accent-dim:     #1fcc6a;
  --accent-glow:    rgba(57,255,142,0.18);
  --accent-subtle:  rgba(57,255,142,0.08);

  --danger:         #ff4d6a;

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      14px;
  --radius-xl:      22px;

  --shadow-sm:      0 1px 4px rgba(0,0,0,0.5);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.6);
  --shadow-lg:      0 12px 48px rgba(0,0,0,0.7);
  --shadow-glow:    0 0 32px rgba(57,255,142,0.22);

  --font-sans:      'Inter', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  --space-1:  clamp(0.25rem, 0.5vw, 0.375rem);
  --space-2:  clamp(0.5rem,  1vw,   0.75rem);
  --space-3:  clamp(0.75rem, 1.5vw, 1rem);
  --space-4:  clamp(1rem,    2vw,   1.5rem);
  --space-5:  clamp(1.5rem,  3vw,   2rem);
  --space-6:  clamp(2rem,    4vw,   3rem);
  --space-7:  clamp(3rem,    5vw,   4.5rem);
  --space-8:  clamp(4rem,    7vw,   7rem);

  --step--1: clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --step-0:  clamp(0.9375rem,0.875rem + 0.3vw,1rem);
  --step-1:  clamp(1.125rem, 1rem + 0.6vw,    1.375rem);
  --step-2:  clamp(1.375rem, 1.1rem + 1.2vw,  1.875rem);
  --step-3:  clamp(1.75rem,  1.3rem + 2vw,    2.75rem);
  --step-4:  clamp(2.25rem,  1.5rem + 3vw,    4rem);
  --step-5:  clamp(3rem,     2rem + 4.5vw,    5.5rem);
}

/* ─── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── CONTAINER ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }
h5 { font-size: var(--step-1); }
h6 { font-size: var(--step-0); }

p {
  color: var(--text-secondary);
  max-width: 68ch;
  line-height: 1.75;
}
p + p { margin-top: var(--space-3); }

strong { color: var(--text-primary); font-weight: 600; }
em { font-style: italic; color: var(--text-secondary); }

code, kbd, samp {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--bg-raised);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 0.1em 0.4em;
  color: var(--accent);
}

pre {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  overflow-x: auto;
  color: var(--text-secondary);
  line-height: 1.6;
}
pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--step--1);
}

/* ─── LINKS ──────────────────────────────────────────────────── */
a {
  color: var(--text-primary);
  transition: color 0.2s;
}
a:hover { color: var(--accent); }

.link-accent {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.link-accent:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  padding: 0.7em 1.5em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #0a0c0e;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: #4dffa0;
  color: #0a0c0e;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--bg-border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding-inline: var(--space-3);
}
.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-raised);
}

.btn-sm {
  font-size: 0.78rem;
  padding: 0.5em 1.1em;
}
.btn-lg {
  font-size: var(--step-0);
  padding: 0.8em 2em;
}

/* ─── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(12,13,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: var(--space-4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-brand:hover { color: var(--text-primary); }

.nav-brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-brand-name {
  color: var(--text-primary);
}
.nav-brand-name span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.35em 0.75em;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--bg-raised);
}
.nav-link.active { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3) 0 var(--space-4);
  border-top: 1px solid var(--bg-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: var(--space-2) var(--space-3);
  font-size: var(--step-0);
}
.nav-mobile .nav-actions {
  padding-top: var(--space-3);
  flex-direction: column;
  align-items: stretch;
}
.nav-mobile .btn { justify-content: center; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
  margin-top: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--bg-border);
}

.footer-brand-col {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}
.footer-logo svg { width: 26px; height: 26px; }

.footer-tagline {
  font-size: var(--step--1);
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: var(--space-4);
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

.footer-col-heading {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-nav-list a {
  font-size: var(--step--1);
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--step--1);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
}
.footer-legal a {
  font-size: var(--step--1);
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-secondary); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(57,255,142,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(57,255,142,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(57,255,142,0.2);
  border-radius: 100px;
  padding: 0.3em 0.9em;
  margin-bottom: var(--space-4);
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-size: var(--step-5);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}
.hero-title .accent-word {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: var(--step-1);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 50ch;
  margin-bottom: var(--space-5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero-hint {
  font-size: var(--step--1);
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: var(--space-3);
}

.hero-visual {
  position: relative;
}

.hero-code-block {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-code-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--bg-border);
  background: var(--bg-raised);
}

.code-dots {
  display: flex;
  gap: 6px;
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-dot-red   { background: #ff5f57; }
.code-dot-amber { background: #febc2e; }
.code-dot-green { background: #28c840; }

.code-filename {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: var(--space-2);
}

.hero-code-body {
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.hero-code-body .ln { color: var(--text-muted); user-select: none; margin-right: var(--space-3); display: inline-block; width: 1.5em; text-align: right; }
.hero-code-body .kw { color: #c792ea; }
.hero-code-body .fn { color: #82aaff; }
.hero-code-body .st { color: var(--accent); }
.hero-code-body .cm { color: var(--text-muted); font-style: italic; }
.hero-code-body .nm { color: #f78c6c; }

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section {
  padding-block: var(--space-8);
}
.section-sm {
  padding-block: var(--space-6);
}
.section-lg {
  padding-block: calc(var(--space-8) * 1.4);
}

.section-label {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.section-heading {
  font-size: var(--step-4);
  margin-bottom: var(--space-4);
  max-width: 20ch;
}

.section-lead {
  font-size: var(--step-1);
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.section-body {
  color: var(--text-secondary);
  max-width: 72ch;
}
.section-body p + p { margin-top: var(--space-3); }

.section-divider {
  border: none;
  border-top: 1px solid var(--bg-border);
  margin-block: 0;
}

/* ─── SURFACE MODIFIERS ──────────────────────────────────────── */
.bg-surface  { background: var(--bg-surface); }
.bg-raised   { background: var(--bg-raised); }
.bg-accent-band {
  background: linear-gradient(135deg, rgba(57,255,142,0.06) 0%, rgba(57,255,142,0.02) 100%);
  border-top: 1px solid rgba(57,255,142,0.15);
  border-bottom: 1px solid rgba(57,255,142,0.15);
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-4);
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: rgba(57,255,142,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(57,255,142,0.08);
  transform: translateY(-2px);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-subtle);
  border: 1px solid rgba(57,255,142,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--accent);
  font-size: 1.1rem;
}

.card-title {
  font-size: var(--step-1);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.card-text {
  font-size: var(--step--1);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: none;
}

/* ─── STATS ──────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--space-4);
}

.stat-block {
  padding: var(--space-5);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  text-align: center;
}

.stat-number {
  font-size: var(--step-4);
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: var(--step--1);
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: var(--space-1);
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  padding-block: var(--space-8);
  text-align: center;
}

.cta-band-inner {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  position: relative;
  overflow: hidden;
}
.cta-band-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(57,255,142,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.cta-band-label {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.cta-band-title {
  font-size: var(--step-4);
  margin-bottom: var(--space-4);
  max-width: 22ch;
  margin-inline: auto;
}

.cta-band-subtitle {
  font-size: var(--step-0);
  color: var(--text-secondary);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  max-width: 760px;
}

.faq-item {
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(57,255,142,0.2); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.2s;
  font-style: normal;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-5) var(--space-4);
  color: var(--text-secondary);
  font-size: var(--step-0);
  line-height: 1.75;
  max-width: none;
}
.faq-item.open .faq-answer { display: block; }

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group + .form-group { margin-top: var(--space-4); }

.form-label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-raised);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--step-0);
  padding: 0.65em 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(57,255,142,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }

.form-inline {
  display: flex;
  gap: var(--space-2);
}
.form-inline .form-input { flex: 1; }

/* ─── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.25em 0.75em;
}
.badge-green {
  background: rgba(57,255,142,0.12);
  color: var(--accent);
  border: 1px solid rgba(57,255,142,0.25);
}
.badge-muted {
  background: var(--bg-raised);
  color: var(--text-muted);
  border: 1px solid var(--bg-border);
}

/* ─── PIPELINE VISUAL ────────────────────────────────────────── */
.pipeline-track {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: var(--space-4) 0;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.pipeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.pipeline-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 2px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
}
.pipeline-bubble.done {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}
.pipeline-bubble.active {
  border-color: var(--accent);
  color: #0a0c0e;
  background: var(--accent);
  box-shadow: var(--shadow-glow);
}

.pipeline-label {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-align: center;
}

.pipeline-connector {
  width: 40px;
  height: 2px;
  background: var(--bg-border);
  flex-shrink: 0;
  position: relative;
  top: -10px;
}
.pipeline-connector.done { background: var(--accent); }

/* ─── LOGOS ROW ──────────────────────────────────────────────── */
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  opacity: 0.45;
}
.logo-item {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── UTILITY ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-mono { font-family: var(--font-mono); }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .cta-band-inner { padding: var(--space-6) var(--space-4); }

  .form-inline { flex-direction: column; }
}

@media (max-width: 400px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}img,svg,video{max-width:100%;height:auto}*{box-sizing:border-box}