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

/* ─── Reset & Variables ─────────────────────────────────────────────────── */
:root {
  --bg:     #060E1B;
  --bg-2:   #0C1A2E;
  --bg-3:   #122035;
  --green:  #25DC6E;
  --white:  #FFFFFF;
  --text:   #E2E8F0;
  --muted:  #7B9BB8;
  --border: #1A3050;
  --danger: #F87171;
  --warn:   #F59E0B;

  --nav-h: 84px;
  --max-w: 1100px;
  --radius: 10px;
  --transition: 0.18s ease;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }

/* ─── Scroll reveal (see animations.js) ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out) calc(var(--reveal-index, 0) * 60ms),
              transform 0.5s var(--ease-out) calc(var(--reveal-index, 0) * 60ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Variants: a vertical list reads better sliding in from its own margin than
   rising like a card; a card grid reads better settling from a slight scale
   than translating. Same is-visible toggle, different starting transform. */
.reveal--slide-x { transform: translateX(-18px); }
.reveal--slide-x.is-visible { transform: none; }
.reveal--scale { transform: scale(.94); }
.reveal--scale.is-visible { transform: scale(1); }

img { display: block; max-width: 100%; }

/* ─── Layout helpers ─────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
}


/* ─── Navigation ─────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(6, 14, 27, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ─── Site logo (nav + footer) ───────────────────────────────────────────── */
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 80px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); opacity: 1; }

.nav-cta {
  margin-left: auto;
}

/* ─── Mobile nav toggle ──────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle-bar {
  position: relative;
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--text);
  transition: background .2s ease;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 1.5px;
  background: var(--text);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle-bar::before { top: -5px; }
.nav-toggle-bar::after  { top: 5px; }
.nav-toggle.open .nav-toggle-bar { background: transparent; }
.nav-toggle.open .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open .nav-toggle-bar::after  { top: 0; transform: rotate(-45deg); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition), border-color var(--transition), color var(--transition), transform 120ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green);
  color: var(--bg);
}
.btn-primary:hover { opacity: 0.88; color: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: rgba(255,255,255,.3); color: var(--white); opacity: 1; }

.btn-lg { padding: 13px 28px; font-size: 15px; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  padding: 100px 0 96px;
  text-align: center;
  position: relative;
}

/* subtle radial glow behind hero */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(37,220,110,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,220,110,.08);
  border: 1px solid rgba(37,220,110,.18);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  letter-spacing: -.8px;
  color: var(--white);
  line-height: 1.1;
  max-width: 780px;
  margin: 0 auto 20px;
}
.hero-title .accent { color: var(--green); }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ─── Features section ───────────────────────────────────────────────────── */
#features { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─── How It Works ───────────────────────────────────────────────────────── */
#how-it-works .section-header { max-width: 500px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}

/* connecting line on desktop */
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step .stage-meta { justify-content: center; margin: 0 auto 16px; }

.step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Why Axir ───────────────────────────────────────────────────────────── */

.why-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  margin-top: 44px;
  align-items: start;
}

.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 2px;
}

.why-check-item {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}
.why-check-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.why-check-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-check-desc  { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

.why-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-spec-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}
.why-spec-card:hover { border-color: rgba(37,220,110,.35); }
.why-spec-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 14px;
}
.why-spec-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--green);
  background: rgba(37,220,110,.1);
  border: 1px solid rgba(37,220,110,.2);
  border-radius: 999px;
  padding: 3px 9px;
  margin-bottom: 16px;
}
.why-spec-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-spec-desc  { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

@media (max-width: 860px) {
  .why-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-checklist { flex-direction: row; flex-wrap: wrap; gap: 20px 32px; }
  .why-checklist .why-check-item { flex: 1 1 220px; }
  .why-specs { grid-template-columns: 1fr; }
}

/* ─── Product Preview ────────────────────────────────────────────────────── */
#preview {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 80px 0;
}

.container-wide { max-width: 1200px; }

.preview-title {
  font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; letter-spacing: -.5px;
  color: var(--white); line-height: 1.18; text-align: center; margin-bottom: 32px;
}

.preview-frame {
  border-radius: 12px; border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6); margin: 0 auto;
}

.preview-chrome {
  background: var(--bg-3); padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.preview-dots { display: flex; gap: 5px; }
.preview-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.preview-url { font-size: 11px; color: var(--muted); font-family: 'Geist Mono', monospace; }

.preview-video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-3); }
.preview-caption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; line-height: 1.5; }

/* ─── Pricing ────────────────────────────────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pricing-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: -.5px;
}
.pricing-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.pricing-was {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px; margin-bottom: 4px;
}
.pricing-original {
  font-size: 12px; color: var(--muted); text-decoration: line-through; opacity: .6;
}
.pricing-discount {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: var(--green); background: rgba(37,220,110,.12);
  border: 1px solid rgba(37,220,110,.25);
  padding: 2px 8px; border-radius: 999px;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--green);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 22px;
  background: var(--green);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 10px;
  border-radius: 999px;
}

.pricing-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 8px;
}

.pricing-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-list {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-list li {
  display: flex;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
  padding: 5px 0;
}
.pricing-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ─── Services teaser (homepage) ────────────────────────────────────────── */
#services-teaser { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-teaser-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.services-teaser-copy { max-width: 560px; }
.services-teaser-copy .section-title { margin-bottom: 6px; }
.services-teaser-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ─── CTA banner ─────────────────────────────────────────────────────────── */
#cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(37,220,110,.07) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}

.cta-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.4px;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-email {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}
.cta-email a { color: var(--green); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo { display: inline-flex; align-items: center; }

.footer-links {
  display: flex;
  gap: 18px;
  list-style: none;
}
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--white); opacity: 1; }

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* ─── Who We Serve ──────────────────────────────────────────────────────── */
.serve-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  margin-top: 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.serve-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.serve-list-item {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.serve-list-item:last-child { border-bottom: none; }
.serve-list-item:hover { background: rgba(255,255,255,.03); }
.serve-list-item:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }
.serve-list-item.active {
  background: rgba(37,220,110,.06);
  border-left-color: var(--green);
}
.serve-list-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.serve-list-item.active .serve-list-icon {
  background: rgba(37,220,110,.14);
  border-color: rgba(37,220,110,.3);
  color: var(--green);
}
.serve-list-text { display: flex; flex-direction: column; min-width: 0; }
.serve-list-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.serve-list-tagline {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

.serve-detail-wrap {
  padding: 32px 36px;
  position: relative;
}
.serve-detail-panel { display: none; }
.serve-detail-panel.active {
  display: block;
  animation: serveFadeIn 0.22s ease;
}
@keyframes serveFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.serve-detail-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 16px;
}
.serve-cases {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.serve-cases li {
  font-size: 11px;
  color: var(--muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
}
.serve-cases li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  padding: 8px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.serve-cases li:last-child { border-bottom: none; }
.serve-cases li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.7;
}
.serve-learn-more {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.serve-footnote {
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  margin-top: 32px;
  line-height: 1.6;
  max-width: 600px;
}
.serve-footnote a { color: var(--green); }

@media (max-width: 860px) {
  .serve-layout { grid-template-columns: 1fr; }
  .serve-list {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
  }
  .serve-list-item {
    flex: 0 0 auto;
    border-bottom: none;
    border-left: none;
    border-top: 2px solid transparent;
  }
  .serve-list-item.active { border-top-color: var(--green); }
  .serve-list-tagline { display: none; }
  .serve-detail-wrap { padding: 24px 20px; }
}

/* ─── About / Founder ───────────────────────────────────────────────────── */
#about { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.about-photo-col { display: flex; justify-content: center; }
.about-photo {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}
.about-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.about-title {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-bio:last-of-type { margin-bottom: 20px; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.about-credential {
  font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600;
  color: var(--text); background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 12px;
}
.about-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.about-link:hover { border-color: rgba(37,220,110,.4); color: var(--green); opacity: 1; }

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo-col { justify-content: center; }
  .about-photo { width: 180px; height: 225px; }
  .about-links { justify-content: flex-start; }
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.faq-q:hover { color: var(--green); }
.faq-q:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; border-radius: 4px; }
.faq-chevron { flex-shrink: 0; color: var(--muted); transition: transform .35s var(--ease-out), color .2s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease-out);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  min-height: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 12px;
}

/* ─── Hero grid (two-column hero used on homepage) ──────────────────────── */
/* #hero sets text-align:center (id selector) — needs the id-qualified selector
   below to actually win the cascade against it, a plain .hero-grid rule won't. */
#hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.hero-grid .hero-kicker,
.hero-grid .hero-title,
.hero-grid .hero-sub { margin-left: 0; }
.hero-grid .hero-ctas,
.hero-grid .hero-trust { justify-content: flex-start; }
.hero-grid .hero-title,
.hero-grid .hero-sub { max-width: none; }

/* ─── Signature element: before/after workflow strip ────────────────────── */
.wf-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px 22px;
}
.wf-label { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--muted); margin-bottom: 20px; }
.wf-label b { color: var(--white); font-weight: 700; }
.wf-track { position: relative; padding: 6px 0 10px; }
.wf-line {
  position: absolute; top: 24px; left: 8px; right: 8px; height: 1px;
  background-image: linear-gradient(to right, var(--border) 60%, transparent 0%);
  background-size: 8px 1px; background-repeat: repeat-x;
}
.wf-row { display: flex; justify-content: space-between; gap: 6px; position: relative; z-index: 1; }
.wf-chip {
  display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; min-width: 0;
  opacity: .4;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.wf-chip-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0;
}
.wf-chip-label { font-family: 'Geist Mono', monospace; font-size: 9px; color: var(--muted); text-align: center; letter-spacing: .02em; line-height: 1.3; }
.wf-arrow {
  display: flex; align-items: center; justify-content: center; margin: 20px 0; color: var(--muted);
  font-family: 'Geist Mono', monospace; font-size: 11px; gap: 10px;
}
.wf-arrow-line { flex: 1; height: 1px; background: var(--border); }
.wf-result { display: flex; justify-content: center; }
.wf-btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: var(--bg);
  font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 13.5px; letter-spacing: .02em;
  padding: 14px 26px; border-radius: 8px; position: relative;
  transition: box-shadow .6s var(--ease-out), transform .4s var(--ease-out);
}
.wf-btn svg { flex-shrink: 0; }

/* animated states (JS adds js-ready / in-view / collapsed; see animations.js) */
.wf-panel.js-ready .wf-chip { opacity: 0; transform: translateY(10px); }
.wf-panel.js-ready.in-view .wf-chip { opacity: 1; transform: none; }
.wf-panel.js-ready.collapsed .wf-chip { opacity: .35; transform: translateY(8px) scale(.85); }
.wf-panel.js-ready.collapsed .wf-btn { animation: wfPulse 1.1s var(--ease-out) .05s 1; }
@keyframes wfPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,220,110,.5); transform: scale(1); }
  35%  { box-shadow: 0 0 0 10px rgba(37,220,110,0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(37,220,110,0); transform: scale(1); }
}

/* ─── Workflow → extension crossfade stage ──────────────────────────────── */
.wf-stage {
  display: grid;
}
.wf-scene {
  grid-area: 1 / 1 / 2 / 2;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
/* Same motion language as the sitewide .reveal (fade + settle), so the hero's
   one animated moment doesn't feel like a different design system from the
   rest of the page. */
.wf-scene--workflow {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wf-scene--ext {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  align-self: start;
}
.wf-stage.show-ext .wf-scene--workflow {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.wf-stage.show-ext .wf-scene--ext {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wf-ext-body {
  padding: 22px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.wf-ext-idle { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }

.wf-ext-table {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
}
.wf-ext-table-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr;
  gap: 8px;
  padding: 5px 10px;
  border-bottom: 1px solid var(--border);
}
.wf-ext-table-row:last-child { border-bottom: none; }
.wf-ext-table-row span:first-child { text-align: left; color: var(--text); }
.wf-ext-table-row span:not(:first-child) { text-align: right; color: var(--muted); }
.wf-ext-table-head {
  background: var(--bg-2);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
.wf-ext-table-head span { color: var(--muted); }
.wf-ext-table-more {
  grid-template-columns: 1fr;
  background: rgba(255,255,255,.02);
}
.wf-ext-table-more span { text-align: center; color: var(--muted); font-style: italic; }

.wf-ext-analyze-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--bg);
  font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 13px;
  padding: 10px 24px; border-radius: 8px;
  transition: transform .15s var(--ease-out), opacity .2s ease;
}
.wf-ext-analyze-btn.pressed { transform: scale(.93); }
.wf-ext-analyze-btn.loading { animation: wfAnalyzePulse .6s ease-in-out infinite; }
@keyframes wfAnalyzePulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

.wf-ext-result { display: none; flex-direction: column; gap: 12px; width: 100%; }
.wf-ext-body.show-result .wf-ext-idle { display: none; }
.wf-ext-body.show-result .wf-ext-result { display: flex; }
.wf-chart { width: 100%; max-width: 220px; height: 77px; display: block; margin: 0 auto; }
.wf-ext-result .demo-insight-card { width: 100%; text-align: left; }
.wf-ext-done { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--green); }

/* ─── Mock frame (shared: pipeline proof panels + sample builds) ────────── */
.mock-frame { background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.mock-chrome { background: var(--bg-2); padding: 8px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.mock-url { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--muted); }
.mock-body { padding: 18px 20px; font-family: 'Geist Mono', monospace; font-size: 12px; line-height: 1.9; }

.mock-kv { display: flex; gap: 14px; }
.mock-kv .k { color: var(--muted); min-width: 96px; flex-shrink: 0; }
.mock-kv .v { color: var(--text); }
.mock-kv .v.accent { color: var(--green); }

.mock-code .kw { color: var(--green); }
.mock-code .str { color: #C98A2B; }
.mock-code .cm { color: var(--muted); font-style: italic; }

.mock-status { display: inline-flex; align-items: center; gap: 6px; }
.mock-status .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(37,220,110,.18); }

.mock-log-item { display: flex; gap: 14px; padding: 5px 0; border-bottom: 1px dashed var(--border); font-family: 'Geist Mono', monospace; font-size: 12px; }
.mock-log-item:last-child { border-bottom: none; }
.mock-log-item .date { color: var(--muted); flex-shrink: 0; width: 56px; }

/* ─── Pipeline (how it actually gets built) ──────────────────────────────── */
#pipeline { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
#pipeline .pipeline-intro { margin-bottom: 64px; }
.pipeline-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 52px 0; border-bottom: 1px solid var(--border);
}
.pipeline-row:last-child { border-bottom: none; padding-bottom: 0; }
.pipeline-row:first-child { padding-top: 0; }
.pipeline-row--reverse .pipeline-media { order: 2; }
.pipeline-row--reverse .pipeline-text { order: 1; }

.stage-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.stage-num { font-family: 'Geist Mono', monospace; font-size: 14px; color: var(--muted); font-weight: 600; }
.stage-dial { display: flex; gap: 5px; }
.stage-dial i { width: 14px; height: 3px; border-radius: 2px; background: var(--border); display: block; }
.stage-dial i.active { background: var(--green); }

.stage-title { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -.3px; }
.stage-desc { font-size: 14.5px; color: var(--muted); line-height: 1.75; max-width: 440px; }

/* ─── Pricing spec-sheet (used on homepage teaser and services.html) ────── */
.pricing-note {
  display: flex; gap: 12px; align-items: flex-start; background: rgba(201,138,43,.08);
  border: 1px solid rgba(201,138,43,.3); border-radius: 8px; padding: 16px 18px; max-width: 680px; margin: 28px 0 40px;
  font-size: 13px; color: var(--muted); line-height: 1.7;
}
.pricing-note strong { color: var(--text); }

.spec-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 10px; }
table.spec-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.spec-table th, .spec-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table thead th {
  background: var(--bg-3); font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); font-weight: 600; vertical-align: top;
}
.spec-table thead th.tier {
  color: var(--white); font-size: 23px; text-transform: none; letter-spacing: -.2px;
  font-family: -apple-system, "Segoe UI", Arial, sans-serif; font-weight: 800;
  padding-top: 34px;
}
/* Same dot-dial used for the 4-stage build pipeline, repurposed here as a
   tier-level indicator — one visual vocabulary for "how far along" instead
   of a second bespoke device just for pricing. */
.tier-dial { display: flex; gap: 4px; margin-top: 10px; }
.tier-dial i { width: 12px; height: 3px; border-radius: 2px; background: var(--border); display: block; }
.tier-dial i.active { background: var(--green); }
/* Price-cut is the point of this header, so it gets the visual weight: the
   new price large and green, the old price struck through right beside it
   (not buried in a small footnote), plus a percentage badge. */
.spec-table thead th.tier .price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.spec-table thead th.tier .price { font-size: 30px; font-weight: 800; color: var(--green); line-height: 1; }
.spec-table thead th.tier .price-was { font-size: 15px; font-weight: 600; color: var(--muted); text-decoration: line-through; opacity: .7; }
.spec-table thead th.tier .price-badge {
  font-family: 'Geist Mono', monospace; font-size: 9.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--bg); background: var(--green);
  padding: 2px 7px; border-radius: 999px; white-space: nowrap;
}
.spec-table thead th.tier .price-monthly {
  font-size: 12px; color: var(--muted); margin-top: 6px; font-family: 'Geist Mono', monospace;
}
.spec-table thead th.tier .price-monthly-was { text-decoration: line-through; opacity: .7; }
.spec-table thead th.tier.featured { position: relative; }
.spec-table thead th.tier.featured::before {
  content: "Recommended";
  position: absolute;
  top: 10px;
  left: 20px;
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bg);
  background: var(--green);
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.spec-table tbody th { font-weight: 500; color: var(--muted); font-size: 13.5px; white-space: nowrap; }
.spec-table tbody td { font-size: 13.5px; color: var(--text); }
.spec-table tbody td.yes { color: var(--green); }
.spec-table tbody td.spec-none { color: var(--muted); }
.spec-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.012); }
.spec-val { display: flex; align-items: center; gap: 7px; }
.spec-icon { flex-shrink: 0; }

/* Featured column carries a faint wash the full height of the table, not
   just its own header badge, so "the recommended tier" reads as a column,
   not a label someone could scroll past. */
.spec-table th.tier.featured,
.spec-table tbody tr td:nth-child(3) {
  background: rgba(37,220,110,.05);
}
.pricing-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }

.text-link { font-size: 15px; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.text-link:hover { color: var(--green); opacity: 1; }
.text-link svg { transition: transform .18s var(--ease-out); }
.text-link:hover svg { transform: translateY(2px); }

/* ─── Sample builds — asymmetric layout, not a uniform grid ─────────────── */
.eyebrow-plain {
  font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted); margin-bottom: 14px;
}
.sample-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; margin-top: 44px; }
.sample-layout.sample-layout--even { grid-template-columns: 1fr 1fr; margin-top: 20px; }
.sample-stack { display: flex; flex-direction: column; gap: 20px; }
.sample-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.sample-card.featured .mock-body { padding: 22px 24px; }
.sample-bars-label { font-family: 'Geist Mono', monospace; font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.sample-bars { display: flex; align-items: flex-end; gap: 5px; height: 64px; }
.sample-card.featured .sample-bars { height: 96px; }
.sample-bars i { flex: 1; background: linear-gradient(to top, rgba(37,220,110,.5), rgba(37,220,110,.12)); border-radius: 2px; }
.sample-info { padding: 18px 20px 20px; flex: 1; }
.sample-tag {
  font-family: 'Geist Mono', monospace; font-size: 9.5px; text-transform: uppercase; letter-spacing: .08em;
  color: #C98A2B; background: rgba(201,138,43,.12); border: 1px solid rgba(201,138,43,.3);
  padding: 3px 8px; border-radius: 999px; display: inline-block; margin-bottom: 10px;
}
.sample-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.sample-card.featured .sample-name { font-size: 19px; }
.sample-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.sample-footnote { font-size: 13px; color: var(--muted); margin-top: 28px; max-width: 640px; line-height: 1.6; }

/* ─── Website templates (portfolio.html) ────────────────────────────────── */
.tpl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 44px; }
.tpl-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 8px; transition: border-color .18s; }
.tpl-card:hover { border-color: rgba(37,220,110,.3); }
.tpl-swatch { display: flex; gap: 6px; margin-bottom: 6px; }
.tpl-swatch span { width: 18px; height: 18px; border-radius: 4px; border: 1px solid rgba(255,255,255,.08); display: block; }
.tpl-tag { font-family: 'Geist Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.tpl-name { font-size: 16px; font-weight: 700; color: var(--white); }
.tpl-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.tpl-link { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .05em; margin-top: 6px; }
.tpl-link:hover { opacity: .85; }
.tpl-link svg { transition: transform .18s var(--ease-out); }
.tpl-link:hover svg { transform: translateX(2px); }

/* ─── Interactive dashboard demos (portfolio.html — click Analyze to run) ── */
.demo-body { display: flex; flex-direction: column; justify-content: center; min-height: 168px; padding: 18px 16px; }
.demo-idle { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.demo-table { width: 100%; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; font-family: 'Geist Mono', monospace; font-size: 9.5px; }
.demo-row { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 6px; padding: 5px 9px; border-bottom: 1px solid var(--border); }
.demo-row:last-child { border-bottom: none; }
.demo-row span:first-child { text-align: left; color: var(--text); }
.demo-row span:not(:first-child) { text-align: right; color: var(--muted); }
.demo-head { background: var(--bg-3); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.demo-head span { color: var(--muted); }
.demo-more { grid-template-columns: 1fr; background: rgba(255,255,255,.02); }
.demo-more span { text-align: center; color: var(--muted); font-style: italic; }
.demo-analyze-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--bg); border: none; cursor: pointer;
  font-family: 'Geist Mono', monospace; font-weight: 700; font-size: 12px;
  padding: 9px 20px; border-radius: 8px;
  transition: transform .15s var(--ease-out), opacity .2s ease;
}
.demo-analyze-btn:hover { opacity: .9; }
.demo-analyze-btn.pressed { transform: scale(.94); }
.demo-analyze-btn.loading { animation: demoPulse .6s ease-in-out infinite; }
@keyframes demoPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.demo-result { display: none; flex-direction: column; gap: 9px; width: 100%; }
.demo-body.show-result .demo-idle { display: none; }
.demo-body.show-result .demo-result { display: flex; }

/* data-badge pill — matches extension-demo/dashboard.html's real header badge */
.demo-badge {
  display: inline-flex; align-items: center; font-size: 10px; font-weight: 700;
  color: var(--green); background: rgba(37,220,110,.1); border: 1px solid rgba(37,220,110,.22);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 2px;
}

/* Insight card — matches the real insight-card component in extension-demo/dashboard.html
   (see DESIGN.md: "signature component" — bordered card, type badge, bold value, title, desc) */
.demo-insights { display: flex; flex-direction: column; gap: 8px; width: 100%; text-align: left; }
.demo-insight-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.demo-insight-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.demo-insight-type { font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.demo-trend-up { color: var(--green); font-weight: 700; font-size: 11px; }
.demo-trend-down { color: var(--danger); font-weight: 700; font-size: 11px; }
.demo-insight-value { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; line-height: 1.25; }
.demo-insight-title { font-size: 11.5px; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.4; }
.demo-insight-desc { font-size: 11px; color: var(--muted); line-height: 1.55; }
.demo-insight-card.type-warning { border-color: rgba(245,158,11,.3); }
.demo-insight-card.type-warning .demo-insight-type { color: var(--warn); }
.demo-insight-card.type-opportunity { border-color: rgba(37,220,110,.3); }
.demo-insight-card.type-opportunity .demo-insight-type { color: var(--green); }
.demo-insight-card.type-risk { border-color: rgba(248,113,113,.3); }
.demo-insight-card.type-risk .demo-insight-type { color: var(--danger); }
.demo-reset-btn {
  align-self: center; margin-top: 2px; background: none; border: none; color: var(--muted);
  font-family: 'Geist Mono', monospace; font-size: 10.5px; cursor: pointer; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 8px;
}
.demo-reset-btn:hover { color: var(--green); }

/* ─── Use-case tiles (vertical pages — replaces icon-in-square feature cards) ── */
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.usecase-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .18s; }
.usecase-card:hover { border-color: rgba(37,220,110,.3); }
.usecase-info { padding: 18px 20px 20px; }
.usecase-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.usecase-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ─── Service list (services.html add-ons — rows, not icon cards) ───────── */
.service-list { display: flex; flex-direction: column; margin-top: 36px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.service-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: none; }
.service-row:nth-child(odd) { background: rgba(255,255,255,.012); }
.service-row-main { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
.service-icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: var(--bg-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.service-name { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 560px; }
.service-learn-more {
  display: inline-block;
  align-self: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(37,220,110,.3);
  border-radius: 999px;
  padding: 7px 16px;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}
.service-learn-more:hover { background: rgba(37,220,110,.08); border-color: rgba(37,220,110,.5); opacity: 1; }

@media (max-width: 560px) {
  .service-row { flex-direction: column; gap: 8px; }
  .service-learn-more { align-self: flex-start; }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .hero-ctas,
  .hero-grid .hero-trust { justify-content: center; }
  .pipeline-row { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .pipeline-row--reverse .pipeline-media,
  .pipeline-row--reverse .pipeline-text { order: 0; }
  .sample-layout,
  .sample-layout.sample-layout--even { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .container { padding: 0 16px; }

  /* Nav collapses to logo + hamburger + CTA; links become a slide-down panel */
  .logo-img { height: 40px; }
  .nav-inner { gap: 10px; padding: 0 16px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { padding: 8px 14px; font-size: 13px; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: rgba(6,14,27,.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
  }
  .nav-links.open { max-height: 400px; opacity: 1; padding: 8px 16px 14px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }

  .steps::before { display: none; }
  .step { padding: 0; margin-bottom: 32px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wf-chip-label { display: none; }
}
@media (max-width: 420px) {
  .stage-title { font-size: 19px; }
}
