:root {
  --bg: #08111f;
  --panel: rgba(11, 20, 33, 0.84);
  --panel-strong: #0d1728;
  --line: rgba(148, 163, 184, 0.14);
  --text: #f8fafc;
  --muted: #94a3b8;
  --blue: #3b82f6;
  --green: #22c55e;
  --violet: #a855f7;
  --red: #ef4444;
  --amber: #f59e0b;
  --gold: #fbbf24;
  --slate: #334155;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.18), transparent 24%),
    radial-gradient(circle at top right, rgba(168,85,247,.16), transparent 22%),
    radial-gradient(circle at bottom left, rgba(34,197,94,.14), transparent 24%),
    linear-gradient(180deg, #07111c 0%, #091523 42%, #08111f 100%);
}

a {
  color: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 17, 31, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a,
.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #e2e8f0;
  font-weight: 700;
  transition: .18s ease;
}

.nav-links a:hover,
.button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
}

.hero {
  padding: 72px 0 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #cbd5e1;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.04em;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 84px);
  line-height: .94;
  margin-top: 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.lede {
  max-width: 880px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.panel p,
.panel li,
.panel td,
.panel th,
.panel code {
  line-height: 1.65;
}

.section {
  padding: 48px 0 40px;
}

/* ── Section color accents ── */
.section-blue { border-top: 3px solid var(--blue); }
.section-green { border-top: 3px solid var(--green); }
.section-violet { border-top: 3px solid var(--violet); }
.section-gold { border-top: 3px solid var(--gold); }
.section-amber { border-top: 3px solid var(--amber); }
.section-red { border-top: 3px solid var(--red); }

.section-blue .kicker { color: var(--blue); }
.section-green .kicker { color: var(--green); }
.section-violet .kicker { color: var(--violet); }
.section-gold .kicker { color: var(--gold); }
.section-amber .kicker { color: var(--amber); }
.section-red .kicker { color: var(--red); }

.section-blue h2 { color: #93c5fd; }
.section-green h2 { color: #86efac; }
.section-violet h2 { color: #d8b4fe; }
.section-gold h2 { color: #fde68a; }
.section-amber h2 { color: #fcd34d; }
.section-red h2 { color: #fca5a5; }

/* ── Full-width band sections ── */
.band {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 52px calc(50vw - 50%);
}

.band-dark {
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.18) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.band-blue {
  background: linear-gradient(160deg, rgba(59,130,246,.1) 0%, rgba(8,17,31,.95) 60%);
  border-top: 1px solid rgba(59,130,246,.2);
  border-bottom: 1px solid rgba(59,130,246,.1);
}

.band-violet {
  background: linear-gradient(160deg, rgba(168,85,247,.08) 0%, rgba(8,17,31,.95) 60%);
  border-top: 1px solid rgba(168,85,247,.18);
  border-bottom: 1px solid rgba(168,85,247,.08);
}

.band-green {
  background: linear-gradient(160deg, rgba(34,197,94,.08) 0%, rgba(8,17,31,.95) 60%);
  border-top: 1px solid rgba(34,197,94,.18);
  border-bottom: 1px solid rgba(34,197,94,.08);
}

.band-gold {
  background: linear-gradient(160deg, rgba(251,191,36,.07) 0%, rgba(8,17,31,.95) 60%);
  border-top: 1px solid rgba(251,191,36,.18);
  border-bottom: 1px solid rgba(251,191,36,.08);
}

.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.card {
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
}

.blue-card { background: linear-gradient(160deg, rgba(59,130,246,.18), rgba(13,23,40,.92)); }
.green-card { background: linear-gradient(160deg, rgba(34,197,94,.18), rgba(13,23,40,.92)); }
.violet-card { background: linear-gradient(160deg, rgba(168,85,247,.18), rgba(13,23,40,.92)); }
.red-card { background: linear-gradient(160deg, rgba(239,68,68,.18), rgba(13,23,40,.92)); }
.amber-card { background: linear-gradient(160deg, rgba(245,158,11,.18), rgba(13,23,40,.92)); }
.gold-card { background: linear-gradient(160deg, rgba(251,191,36,.18), rgba(13,23,40,.92)); }

.metric {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.metric strong {
  display: block;
  font-size: 30px;
  margin-top: 8px;
}

/* ── Colored metric variants ── */
.metric-blue strong { color: #60a5fa; }
.metric-green strong { color: #4ade80; }
.metric-violet strong { color: #c084fc; }
.metric-gold strong { color: var(--gold); }
.metric-amber strong { color: #fbbf24; }
.metric-red strong { color: #f87171; }

/* ── Panel accent borders ── */
.panel-accent-blue { border-left: 4px solid var(--blue); }
.panel-accent-green { border-left: 4px solid var(--green); }
.panel-accent-violet { border-left: 4px solid var(--violet); }
.panel-accent-gold { border-left: 4px solid var(--gold); }

/* ── Colored icon dots before h3 ── */
.panel-accent-blue h3::before { content: "\25CF "; color: var(--blue); }
.panel-accent-green h3::before { content: "\25CF "; color: var(--green); }
.panel-accent-violet h3::before { content: "\25CF "; color: var(--violet); }
.panel-accent-gold h3::before { content: "\25CF "; color: var(--gold); }

.stack {
  display: grid;
  gap: 12px;
}

.stack .node {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  background: var(--panel-strong);
}

.stack .node:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.clean li + li {
  margin-top: 10px;
}

code,
pre {
  font-family: Consolas, "Courier New", monospace;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  background: rgba(0,0,0,.22);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  overflow: auto;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-frame {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: #050b14;
}

.formula {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.tiny {
  font-size: 13px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
}

.callout {
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(251,191,36,.08);
}

.footer {
  padding: 34px 0 60px;
  color: var(--muted);
  font-size: 14px;
}

.footer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-number {
  color: #e2e8f0;
  font-size: 15px;
}

/* Phone number hero */
.phone-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--gold);
  margin-top: 8px;
}

/* ── Number Showcase (dual-card hero) ── */
.number-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.number-card {
  border-radius: 28px;
  padding: 32px 28px;
  border: 2px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}

.number-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  opacity: .12;
  z-index: 0;
}

.number-card > * {
  position: relative;
  z-index: 1;
}

.number-card-primary {
  background: linear-gradient(150deg, rgba(59,130,246,.22), rgba(11,20,33,.94));
  border-color: rgba(59,130,246,.3);
}

.number-card-primary::before {
  background: radial-gradient(circle at 30% 20%, rgba(59,130,246,.4), transparent 60%);
}

.number-card-secondary {
  background: linear-gradient(150deg, rgba(251,191,36,.18), rgba(11,20,33,.94));
  border-color: rgba(251,191,36,.25);
}

.number-card-secondary::before {
  background: radial-gradient(circle at 30% 20%, rgba(251,191,36,.3), transparent 60%);
}

.number-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.number-huge {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 24px rgba(59,130,246,.25);
}

.number-card-secondary .number-huge {
  text-shadow: 0 2px 24px rgba(251,191,36,.2);
}

.number-detail {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.number-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.number-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.blue-tag {
  background: rgba(59,130,246,.18);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,.3);
}

.green-tag {
  background: rgba(34,197,94,.18);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.3);
}

.violet-tag {
  background: rgba(168,85,247,.18);
  color: #d8b4fe;
  border: 1px solid rgba(168,85,247,.3);
}

.amber-tag {
  background: rgba(245,158,11,.18);
  color: #fcd34d;
  border: 1px solid rgba(245,158,11,.3);
}

.gold-tag {
  background: rgba(251,191,36,.18);
  color: #fde68a;
  border: 1px solid rgba(251,191,36,.3);
}

/* ── AI Stack Label ── */
.ai-stack-label {
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ── Blog / Insight Cards ── */
.blog-card {
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--panel);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .18s ease, transform .18s ease;
  border-left: 4px solid var(--blue);
}

.blog-card:nth-child(2) { border-left-color: var(--violet); }
.blog-card:nth-child(3) { border-left-color: var(--green); }
.blog-card:nth-child(4) { border-left-color: var(--amber); }
.blog-card:nth-child(5) { border-left-color: var(--gold); }
.blog-card:nth-child(6) { border-left-color: var(--red); }

.blog-card:hover {
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

.blog-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

/* ── Big bottom activation strip ── */
.activation-strip-big {
  padding: 28px 0;
  margin: 36px 0;
  flex-direction: column;
  gap: 8px;
}

.strip-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.strip-number-big {
  font-size: clamp(28px, 5vw, 48px) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

/* ── Footer numbers ── */
.footer-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 15px;
}

.support-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 6px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button-primary {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}

.button-primary:hover {
  background: #2563eb !important;
}

/* Activation strip */
.activation-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.strip-dot {
  color: var(--muted);
}

.strip-number {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: .06em;
}

/* Step cards (How It Works) */
.step-card {
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--panel);
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Grid-5 */
.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Hero stats smaller metric text */
.hero-stats .metric strong {
  font-size: 26px;
  color: var(--gold);
}

/* ── Section divider line ── */
.divider {
  height: 1px;
  border: none;
  margin: 10px 0;
  background: linear-gradient(90deg, transparent, rgba(148,163,184,.25), transparent);
}

.divider-blue {
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.4), transparent);
}

.divider-green {
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.4), transparent);
}

.divider-gold {
  background: linear-gradient(90deg, transparent, rgba(251,191,36,.4), transparent);
}

.divider-violet {
  background: linear-gradient(90deg, transparent, rgba(168,85,247,.4), transparent);
}

@media print {
  /* Hide nav, buttons, and interactive elements */
  .nav,
  .button,
  .button-primary,
  .cta-row,
  .no-print {
    display: none !important;
  }

  /* Reset page background and base text */
  * {
    color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    background: #fff !important;
    color: #111827 !important;
    font-size: 11pt;
  }

  /* All headings dark */
  h1, h2, h3 {
    color: #111827 !important;
  }

  /* Links dark with underline */
  a {
    color: #1e40af !important;
    text-decoration: underline !important;
  }

  /* Panels, cards, metrics, nodes — white bg, dark text, visible border */
  .panel,
  .card,
  .metric,
  .node,
  .step-card,
  .download-card,
  .blue-card,
  .green-card,
  .violet-card,
  .red-card,
  .amber-card,
  .gold-card {
    box-shadow: none !important;
    background: #fff !important;
    color: #111827 !important;
    border-color: #d1d5db !important;
    backdrop-filter: none !important;
  }

  /* Step number circles — dark border instead of colored bg */
  .step-num {
    background: #e5e7eb !important;
    color: #111827 !important;
  }

  /* Secondary text elements */
  .lede,
  .kicker,
  .footer,
  .tiny,
  .support-copy,
  .muted {
    color: #4b5563 !important;
  }

  /* Eyebrow labels */
  .eyebrow {
    color: #374151 !important;
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
  }

  /* Phone number — dark and bold for print */
  .phone-number {
    color: #111827 !important;
  }

  /* Activation strip */
  .activation-strip {
    color: #111827 !important;
    border-color: #d1d5db !important;
  }

  .strip-dot {
    color: #6b7280 !important;
  }

  .strip-number {
    color: #111827 !important;
  }

  /* Pills */
  .pill {
    color: #111827 !important;
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
  }

  /* Formulas */
  .formula {
    color: #111827 !important;
    background: #f9fafb !important;
    border-color: #d1d5db !important;
  }

  /* Callouts */
  .callout {
    color: #111827 !important;
    background: #fffbeb !important;
    border-left-color: #d97706 !important;
  }

  /* Code and pre blocks */
  code, pre {
    color: #111827 !important;
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
  }

  /* Tables */
  th, td {
    color: #111827 !important;
    border-bottom-color: #d1d5db !important;
  }

  th {
    font-weight: 800;
  }

  /* Metric strong numbers */
  .metric strong {
    color: #111827 !important;
  }

  /* Hero stats */
  .hero-stats .metric strong {
    color: #111827 !important;
  }

  /* Footer strip */
  .footer-strip {
    color: #4b5563 !important;
  }

  .footer-number {
    color: #111827 !important;
  }

  /* Videos — show as bordered box */
  .video-frame {
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
  }

  /* General text inside panels */
  .panel p,
  .panel li,
  .panel td,
  .panel th,
  .panel code,
  .card p,
  .card li,
  .card strong,
  .card em {
    color: #111827 !important;
  }

  /* Stack node arrows */
  .stack .node:not(:last-child)::after {
    color: #6b7280 !important;
  }

  /* Page breaks */
  .section {
    page-break-inside: avoid;
  }

  .panel {
    page-break-inside: avoid;
  }

  /* Wrap overflow */
  .wrap {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Brand in header (if visible in print) */
  .brand,
  .brand small {
    color: #111827 !important;
  }

  /* Number showcase */
  .number-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .number-card,
  .number-card-primary,
  .number-card-secondary {
    background: #fff !important;
    border-color: #d1d5db !important;
    color: #111827 !important;
  }

  .number-card::before {
    display: none !important;
  }

  .number-huge {
    color: #111827 !important;
    text-shadow: none !important;
  }

  .number-label,
  .number-detail {
    color: #4b5563 !important;
  }

  .number-tag,
  .blue-tag,
  .green-tag,
  .violet-tag,
  .amber-tag,
  .gold-tag {
    color: #111827 !important;
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
  }

  .ai-stack-label {
    color: #4b5563 !important;
    background: #f9fafb !important;
    border-color: #d1d5db !important;
  }

  /* Blog cards */
  .blog-card {
    background: #fff !important;
    border-color: #d1d5db !important;
    color: #111827 !important;
    backdrop-filter: none !important;
  }

  .blog-date {
    color: #1e40af !important;
  }

  /* Big activation strip */
  .activation-strip-big {
    border-color: #d1d5db !important;
  }

  .strip-label {
    color: #4b5563 !important;
  }

  .strip-number-big {
    color: #111827 !important;
  }

  .footer-numbers {
    color: #111827 !important;
  }

  /* Colored metrics — all dark in print */
  .metric-blue strong,
  .metric-green strong,
  .metric-violet strong,
  .metric-gold strong,
  .metric-amber strong,
  .metric-red strong {
    color: #111827 !important;
  }

  /* Panel accent borders */
  .panel-accent-blue { border-left-color: #93c5fd !important; }
  .panel-accent-green { border-left-color: #86efac !important; }
  .panel-accent-violet { border-left-color: #c4b5fd !important; }
  .panel-accent-gold { border-left-color: #fcd34d !important; }

  .panel-accent-blue h3::before,
  .panel-accent-green h3::before,
  .panel-accent-violet h3::before,
  .panel-accent-gold h3::before {
    color: #111827 !important;
  }

  /* Bands — remove backgrounds in print */
  .band,
  .band-dark,
  .band-blue,
  .band-violet,
  .band-green,
  .band-gold {
    background: #fff !important;
    border-color: #d1d5db !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Section color accents — keep borders visible */
  .section-blue,
  .section-green,
  .section-violet,
  .section-gold,
  .section-amber,
  .section-red {
    border-top-color: #d1d5db !important;
  }

  .section-blue h2,
  .section-green h2,
  .section-violet h2,
  .section-gold h2,
  .section-amber h2,
  .section-red h2 {
    color: #111827 !important;
  }

  .section-blue .kicker,
  .section-green .kicker,
  .section-violet .kicker,
  .section-gold .kicker,
  .section-amber .kicker,
  .section-red .kicker {
    color: #4b5563 !important;
  }

  /* Dividers */
  .divider,
  .divider-blue,
  .divider-green,
  .divider-gold,
  .divider-violet {
    background: #d1d5db !important;
  }

  /* Blog card borders */
  .blog-card,
  .blog-card:nth-child(2),
  .blog-card:nth-child(3),
  .blog-card:nth-child(4),
  .blog-card:nth-child(5),
  .blog-card:nth-child(6) {
    border-left-color: #d1d5db !important;
  }
}

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .number-showcase {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .activation-strip {
    font-size: 14px;
    gap: 8px;
  }

  .footer-strip {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}