/* ──────────────────────────────────────────────────────────────────────────
   NEXUS — modern dev shop template, self-contained. Linear/Vercel-inspired.
   Dark navy + cyan refined accents + Inter primary + JetBrains Mono only
   for code blocks. Bento grid services + horizontal timeline + IDE hero.
   Tokens scoped under body.nexus. Buttons specificity-prefixed from start.
   ────────────────────────────────────────────────────────────────────────── */

body.nexus {
  --nexus-bg: #0a0e1a;
  --nexus-bg-alt: #111827;
  --nexus-bg-card: #131a2a;
  --nexus-bg-elevated: #1a2238;
  --nexus-border: #1f2940;
  --nexus-border-bright: #2a3858;
  --nexus-text: #e2e8f0;
  --nexus-text-dim: #94a3b8;
  --nexus-text-mute: #64748b;
  --nexus-primary: #06b6d4;
  --nexus-primary-soft: rgba(6, 182, 212, 0.12);
  --nexus-accent: #22d3ee;
  --nexus-success: #10b981;
  --nexus-radius: 10px;
  --nexus-radius-lg: 16px;
  --nexus-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --nexus-shadow-glow: 0 0 40px rgba(6, 182, 212, 0.18);
  --nexus-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nexus-font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

body.nexus *,
body.nexus *::before,
body.nexus *::after { box-sizing: border-box; }
body.nexus {
  margin: 0;
  padding: 0;
  background: var(--nexus-bg);
  color: var(--nexus-text);
  font-family: var(--nexus-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nexus img { max-width: 100%; height: auto; display: block; }
body.nexus a { color: inherit; text-decoration: none; transition: color .2s ease; }
body.nexus h1, body.nexus h2, body.nexus h3, body.nexus h4 {
  font-family: var(--nexus-font-body);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  color: var(--nexus-text);
}
body.nexus p { margin: 0; }
body.nexus ul, body.nexus ol { margin: 0; padding: 0; list-style: none; }
body.nexus button { font-family: inherit; cursor: pointer; }
body.nexus code, body.nexus pre { font-family: var(--nexus-font-mono); }

.nexus-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ── Reveal ────────────────────────────────────────────────────────────── */
.nexus-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.nexus-reveal.active { opacity: 1; transform: translateY(0); }
body.nexus.no-scroll-anim .nexus-reveal { opacity: 1; transform: none; transition: none; }

/* ── Buttons (specificity-prefixed) ────────────────────────────────────── */
body.nexus .nexus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--nexus-radius);
  font-family: var(--nexus-font-body);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .25s ease;
  text-decoration: none;
}
body.nexus .nexus-btn-primary {
  background: var(--nexus-primary);
  color: #ffffff;
}
body.nexus .nexus-btn-primary:hover {
  background: var(--nexus-accent);
  color: #ffffff;
  box-shadow: var(--nexus-shadow-glow);
  transform: translateY(-1px);
}
body.nexus .nexus-btn-ghost {
  background: transparent;
  color: var(--nexus-text);
  border-color: var(--nexus-border-bright);
}
body.nexus .nexus-btn-ghost:hover {
  background: var(--nexus-bg-card);
  border-color: var(--nexus-primary);
  color: var(--nexus-primary);
}
body.nexus .nexus-btn-lg { padding: 14px 26px; font-size: 15px; }

/* ── Topbar ────────────────────────────────────────────────────────────── */
.nexus-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nexus-border);
  padding: 18px 0;
}
.nexus-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nexus-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--nexus-text);
  letter-spacing: -0.02em;
}
.nexus-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--nexus-primary);
  border-radius: 8px;
  color: var(--nexus-bg);
  font-family: var(--nexus-font-mono);
  font-size: 13px;
  font-weight: 700;
}
.nexus-nav { display: flex; gap: 32px; align-items: center; }
.nexus-nav a { font-size: 14px; font-weight: 500; color: var(--nexus-text-dim); }
.nexus-nav a:hover { color: var(--nexus-text); }
.nexus-hamburger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nexus-hamburger span { display: block; width: 22px; height: 2px; background: var(--nexus-text); margin: 5px 0; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.nexus-hero {
  position: relative;
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(6, 182, 212, 0.10) 0%, transparent 55%),
    var(--nexus-bg);
  overflow: hidden;
}
.nexus-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.nexus-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--nexus-primary);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--nexus-border-bright);
  background: var(--nexus-primary-soft);
  border-radius: 100px;
}
.nexus-hero-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nexus-success);
  box-shadow: 0 0 8px var(--nexus-success);
}
.nexus-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin: 0 0 22px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.nexus-hero h1 em { font-style: normal; color: var(--nexus-primary); }
.nexus-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--nexus-text-dim);
  margin: 0 0 36px;
  max-width: 500px;
}
.nexus-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.nexus-hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--nexus-text-mute);
  font-family: var(--nexus-font-mono);
}
.nexus-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.nexus-hero-trust span::before { content: "✓"; color: var(--nexus-primary); font-weight: 700; }

/* ── IDE code panel ────────────────────────────────────────────────────── */
.nexus-ide {
  background: var(--nexus-bg-card);
  border: 1px solid var(--nexus-border);
  border-radius: var(--nexus-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(6, 182, 212, 0.12);
}
.nexus-ide-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--nexus-border);
}
.nexus-ide-bar > span { width: 12px; height: 12px; border-radius: 50%; }
.nexus-ide-bar > span:nth-child(1) { background: #ef4444; }
.nexus-ide-bar > span:nth-child(2) { background: #f59e0b; }
.nexus-ide-bar > span:nth-child(3) { background: #10b981; }
.nexus-ide-file {
  margin-left: 14px;
  font-family: var(--nexus-font-mono);
  font-size: 12px;
  color: var(--nexus-text-mute);
}
.nexus-ide-body {
  padding: 22px 24px;
  font-family: var(--nexus-font-mono);
  font-size: 13.5px;
  line-height: 1.75;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}
.nexus-ide-line-numbers {
  text-align: right;
  color: var(--nexus-text-mute);
  user-select: none;
  font-size: 12px;
  opacity: 0.6;
}
.nexus-ide-line-numbers span { display: block; }
.nexus-ide-code { color: var(--nexus-text); white-space: pre-wrap; }
.nexus-ide-code .kw  { color: #c084fc; }    /* purple keyword */
.nexus-ide-code .fn  { color: #38bdf8; }    /* blue function */
.nexus-ide-code .str { color: #86efac; }    /* green string */
.nexus-ide-code .cmt { color: var(--nexus-text-mute); font-style: italic; }
.nexus-ide-code .var { color: #fbbf24; }    /* yellow variable */
.nexus-ide-code .ok  { color: var(--nexus-success); }

/* ── Logo wall ─────────────────────────────────────────────────────────── */
.nexus-logos {
  padding: 36px 0;
  border-top: 1px solid var(--nexus-border);
  border-bottom: 1px solid var(--nexus-border);
  background: var(--nexus-bg-alt);
}
.nexus-logos-label {
  text-align: center;
  font-family: var(--nexus-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nexus-text-mute);
  margin-bottom: 24px;
}
.nexus-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.nexus-logo {
  font-family: var(--nexus-font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--nexus-text-dim);
  opacity: 0.7;
  letter-spacing: -0.01em;
}

/* ── Section base ──────────────────────────────────────────────────────── */
.nexus-section { padding: 110px 0; position: relative; }
.nexus-section-alt { background: var(--nexus-bg-alt); }
.nexus-section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.nexus-eyebrow {
  display: inline-block;
  font-family: var(--nexus-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--nexus-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.nexus-section h2 { font-size: clamp(32px, 4.5vw, 48px); margin: 0 0 14px; letter-spacing: -0.025em; }
.nexus-section h2 em { font-style: normal; color: var(--nexus-primary); }
.nexus-section-lead {
  font-size: 17px;
  color: var(--nexus-text-dim);
  margin: 0 auto;
  max-width: 600px;
}

/* ── BENTO grid (services) ─────────────────────────────────────────────── */
.nexus-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
.nexus-bento-cell {
  background: var(--nexus-bg-card);
  border: 1px solid var(--nexus-border);
  border-radius: var(--nexus-radius-lg);
  padding: 28px 28px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.nexus-bento-cell::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--nexus-primary);
  transition: width .3s ease;
}
.nexus-bento-cell:hover {
  border-color: var(--nexus-border-bright);
  box-shadow: var(--nexus-shadow);
  transform: translateY(-3px);
}
.nexus-bento-cell:hover::before { width: 100%; }
.nexus-bento-cell-num {
  font-family: var(--nexus-font-mono);
  font-size: 12px;
  color: var(--nexus-primary);
  margin-bottom: auto;
  display: block;
}
.nexus-bento-cell h3 {
  font-size: 22px;
  margin: 16px 0 10px;
  color: var(--nexus-text);
  letter-spacing: -0.01em;
}
.nexus-bento-cell p {
  font-size: 14px;
  color: var(--nexus-text-dim);
  line-height: 1.65;
}
/* Bento sizing — 2 wide cells + 4 small cells in 6-col grid */
.nexus-bento-cell:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.nexus-bento-cell:nth-child(2) { grid-column: span 3; }
.nexus-bento-cell:nth-child(3) { grid-column: span 3; }
.nexus-bento-cell:nth-child(4) { grid-column: span 2; }
.nexus-bento-cell:nth-child(5) { grid-column: span 2; }
.nexus-bento-cell:nth-child(6) { grid-column: span 2; }
.nexus-bento-cell:nth-child(7) { grid-column: span 3; }
.nexus-bento-cell:nth-child(8) { grid-column: span 3; }
.nexus-bento-cell:nth-child(9) { grid-column: span 6; }
.nexus-bento-cell:nth-child(1) h3 { font-size: 28px; }

/* ── Horizontal timeline (process) ─────────────────────────────────────── */
.nexus-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 56px;
}
.nexus-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--nexus-primary) 20%, var(--nexus-primary) 80%, transparent 100%);
  opacity: 0.35;
}
.nexus-tstep {
  position: relative;
  text-align: center;
  padding-top: 8px;
}
.nexus-tstep-dot {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nexus-bg);
  border: 2px solid var(--nexus-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--nexus-font-mono);
  font-size: 14px;
  color: var(--nexus-primary);
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--nexus-bg);
}
.nexus-tstep h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--nexus-text);
  letter-spacing: -0.01em;
}
.nexus-tstep p {
  font-size: 14px;
  color: var(--nexus-text-dim);
  line-height: 1.65;
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.nexus-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.nexus-plan {
  background: var(--nexus-bg-card);
  border: 1px solid var(--nexus-border);
  border-radius: var(--nexus-radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  position: relative;
}
.nexus-plan:hover { border-color: var(--nexus-border-bright); box-shadow: var(--nexus-shadow); transform: translateY(-2px); }
.nexus-plan-featured {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.05), var(--nexus-bg-card) 50%);
  border-color: var(--nexus-primary);
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.15);
}
.nexus-plan-featured::before {
  content: "Recommended";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nexus-primary);
  color: #ffffff;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 100px;
}
.nexus-plan h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--nexus-text);
  letter-spacing: -0.01em;
}
.nexus-plan-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--nexus-text);
  margin: 8px 0 14px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.nexus-plan-desc {
  font-size: 14px;
  color: var(--nexus-text-dim);
  line-height: 1.65;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--nexus-border);
  flex: 1;
}

/* ── Testimonials (featured + smaller) ─────────────────────────────────── */
.nexus-testi-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.nexus-testi {
  background: var(--nexus-bg-card);
  border: 1px solid var(--nexus-border);
  border-radius: var(--nexus-radius-lg);
  padding: 28px 28px;
  transition: border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nexus-testi:hover { border-color: var(--nexus-border-bright); box-shadow: var(--nexus-shadow); }
.nexus-testi:first-child { grid-row: span 2; background: linear-gradient(180deg, rgba(6, 182, 212, 0.04), var(--nexus-bg-card)); border-color: var(--nexus-border-bright); }
.nexus-testi:first-child .nexus-testi-text { font-size: 18px; line-height: 1.55; }
.nexus-testi-mark {
  font-size: 36px;
  line-height: 0.7;
  color: var(--nexus-primary);
  margin-bottom: 14px;
  font-family: var(--nexus-font-body);
  font-weight: 800;
}
.nexus-testi-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--nexus-text);
  margin: 0 0 20px;
  flex: 1;
}
.nexus-testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--nexus-text);
  font-weight: 600;
}
.nexus-testi-author span {
  font-family: var(--nexus-font-mono);
  font-size: 12px;
  color: var(--nexus-text-mute);
  letter-spacing: 0.04em;
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.nexus-faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.nexus-faq {
  background: var(--nexus-bg-card);
  border: 1px solid var(--nexus-border);
  border-radius: var(--nexus-radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.nexus-faq[open] { border-color: var(--nexus-primary); }
.nexus-faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--nexus-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.005em;
}
.nexus-faq summary::-webkit-details-marker { display: none; }
.nexus-faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--nexus-primary);
  font-weight: 400;
}
.nexus-faq[open] summary::after { content: "−"; }
.nexus-faq p {
  padding: 0 26px 22px;
  margin: 0;
  font-size: 15px;
  color: var(--nexus-text-dim);
  line-height: 1.7;
}

/* ── CTA band ──────────────────────────────────────────────────────────── */
.nexus-cta-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.18) 0%, transparent 60%),
    var(--nexus-bg);
  text-align: center;
  border-top: 1px solid var(--nexus-border);
  border-bottom: 1px solid var(--nexus-border);
}
.nexus-cta-band h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}
.nexus-cta-band p {
  font-size: 17px;
  color: var(--nexus-text-dim);
  margin: 0 0 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Contact ───────────────────────────────────────────────────────────── */
.nexus-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.nexus-contact-info h3 { font-size: 24px; margin: 0 0 12px; letter-spacing: -0.02em; }
.nexus-contact-info > p { font-size: 15px; color: var(--nexus-text-dim); margin: 0 0 32px; line-height: 1.65; }
.nexus-contact-meta { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.nexus-contact-meta-item { display: flex; align-items: flex-start; gap: 16px; font-size: 15px; }
.nexus-contact-meta-item strong {
  display: inline-block;
  min-width: 90px;
  color: var(--nexus-text-mute);
  font-family: var(--nexus-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.nexus-contact-meta-item span,
.nexus-contact-meta-item a { color: var(--nexus-text); }
.nexus-social-row { display: flex; gap: 10px; }
.nexus-social-link {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nexus-border-bright);
  border-radius: var(--nexus-radius);
  color: var(--nexus-text-dim);
  font-family: var(--nexus-font-mono);
  font-size: 11px;
  font-weight: 600;
  transition: all .2s ease;
}
.nexus-social-link:hover { background: var(--nexus-primary); color: #ffffff; border-color: var(--nexus-primary); }

.nexus-form {
  background: var(--nexus-bg-card);
  border: 1px solid var(--nexus-border);
  border-radius: var(--nexus-radius-lg);
  padding: 34px;
}
.nexus-form h3 { font-size: 20px; margin: 0 0 6px; letter-spacing: -0.01em; }
.nexus-form-sub { font-size: 14px; color: var(--nexus-text-dim); margin: 0 0 22px; }
.nexus-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.nexus-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nexus-text-dim);
}
.nexus-field input,
.nexus-field textarea {
  background: var(--nexus-bg);
  border: 1px solid var(--nexus-border-bright);
  border-radius: var(--nexus-radius);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--nexus-font-body);
  color: var(--nexus-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nexus-field input:focus,
.nexus-field textarea:focus { outline: none; border-color: var(--nexus-primary); box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15); }
.nexus-field textarea { min-height: 130px; resize: vertical; }
.nexus-form-status { font-size: 14px; margin-top: 12px; }
.nexus-form-status.success { color: var(--nexus-success); }
.nexus-form-status.error { color: #ef4444; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.nexus-footer {
  background: #060912;
  color: var(--nexus-text-mute);
  padding: 72px 0 32px;
  border-top: 1px solid var(--nexus-border);
}
.nexus-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.nexus-footer-brand .nexus-brand { color: var(--nexus-text); margin-bottom: 14px; }
.nexus-footer-brand p { font-size: 14px; max-width: 360px; color: var(--nexus-text-mute); line-height: 1.7; }
.nexus-footer-col h4 {
  color: var(--nexus-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}
.nexus-footer-col ul li { margin-bottom: 10px; }
.nexus-footer-col a { font-size: 14px; color: var(--nexus-text-mute); }
.nexus-footer-col a:hover { color: var(--nexus-primary); }
.nexus-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--nexus-border);
  font-size: 13px;
  color: var(--nexus-text-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nexus-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .nexus-bento { grid-template-columns: repeat(2, 1fr); }
  .nexus-bento-cell { grid-column: span 1 !important; grid-row: span 1 !important; }
  .nexus-bento-cell:nth-child(1) { grid-column: span 2 !important; }
  .nexus-bento-cell:nth-child(9) { grid-column: span 2 !important; }
  .nexus-timeline { grid-template-columns: repeat(2, 1fr); gap: 56px 32px; }
  .nexus-timeline::before { display: none; }
  .nexus-pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .nexus-testi-wrap { grid-template-columns: 1fr 1fr; }
  .nexus-testi:first-child { grid-row: span 1; grid-column: span 2; }
  .nexus-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .nexus-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nexus-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nexus-section { padding: 70px 0; }
  .nexus-hero { padding: 70px 0 60px; }
  .nexus-bento { grid-template-columns: 1fr; }
  .nexus-bento-cell:nth-child(1),
  .nexus-bento-cell:nth-child(9) { grid-column: span 1 !important; }
  .nexus-timeline { grid-template-columns: 1fr; }
  .nexus-testi-wrap { grid-template-columns: 1fr; }
  .nexus-testi:first-child { grid-column: span 1; }
  .nexus-nav { display: none; }
  .nexus-hamburger { display: block; }
  .nexus-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: blur(12px);
    padding: 18px 24px;
    border-bottom: 1px solid var(--nexus-border);
  }
  .nexus-footer-grid { grid-template-columns: 1fr; }
  .nexus-footer-bottom { flex-direction: column; text-align: center; }
  .nexus-logos-row { gap: 28px; }
  .nexus-logo { font-size: 14px; }
}
