/* =====================================================================
   RUNUP HQ — DESIGN SYSTEM
   "Simple systems for clearer businesses."
   Colors, type, layout & components — straight from the Brand Guide.
   ===================================================================== */

/* ----------------------------- TOKENS ----------------------------- */
:root {
  /* Brand palette (Brand Guide) */
  --navy: #050716;
  --ink: #090b18;
  --offwhite: #f7f6f0;
  --mist: #e9e9e3;
  --blue: #1200ff;
  --teal: #39d98a;
  --orange: #ff8a3d;

  /* Derived */
  --bg: var(--offwhite);
  --bg-soft: #fbfcfa;
  --surface: #ffffff;
  --text: var(--ink);
  --text-dim: #4b5563;
  --text-mute: #6b7280;
  --line: #dde3ea;
  --line-strong: #cfd6e0;
  --on-dark: #e9edf5;
  --on-dark-dim: #9aa6bd;

  /* Effects */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(14, 23, 42, .06), 0 1px 3px rgba(14, 23, 42, .04);
  --shadow: 0 10px 30px -12px rgba(14, 23, 42, .18), 0 2px 8px rgba(14, 23, 42, .05);
  --shadow-lg: 0 30px 60px -22px rgba(14, 23, 42, .28);
  --ring: 0 0 0 4px rgba(47, 128, 237, .18);

  /* Type */
  --font-display: "Instrument Serif", Georgia, serif;
  --font-head: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  /* Layout */
  --container: 1160px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .35s;
}

/* ----------------------------- RESET ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ----------------------------- TYPOGRAPHY ----------------------------- */
h1, h2 { font-family: var(--font-display); line-height: .98; letter-spacing: -.035em; font-weight: 400; color: var(--ink); }
h3, h4 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -.035em; font-weight: 600; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-dim); }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text-dim); line-height: 1.6; }
strong { color: var(--ink); font-weight: 600; }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p, .on-dark li { color: var(--on-dark-dim); }
.on-dark strong { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.on-dark .eyebrow { color: var(--teal); }
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .6;
}

/* ----------------------------- LAYOUT ----------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.section-dark { background: var(--navy); color: var(--on-dark); }
.section-navy { background: linear-gradient(180deg, #050716 0%, #090d24 100%); color: var(--on-dark); }
.section-soft { background: var(--bg-soft); }
.section-grid-bg { background-image:
    linear-gradient(rgba(18,0,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,0,255,.05) 1px, transparent 1px);
  background-size: 46px 46px; }
.center { text-align: center; }
.center .eyebrow::after { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .6; }
.center .eyebrow { display: inline-flex; }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.6rem; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 18px; }

/* ----------------------------- HEADER ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 239, .82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.scrolled { border-color: var(--line); }
.skip-link {
  position: fixed; top: 8px; left: 12px; z-index: 100;
  padding: 10px 14px; border-radius: 9px; background: var(--ink); color: #fff;
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: none; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); letter-spacing: -.02em; }
.brand .logo-mark { width: 32px; height: 32px; flex: none; }
.brand-name { display: block; letter-spacing: -.045em; line-height: 1; }
.brand-slash { color: var(--blue); padding-inline: .02em; }
.brand-hq { display: inline-block; margin-left: 2px; padding: 3px 5px 2px; border-radius: 5px; background: var(--blue); color: #fff; font-family: var(--font-mono); font-size: .55em; line-height: 1; letter-spacing: .05em; vertical-align: .18em; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); line-height: 1; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
  color: var(--text-dim); transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--mist); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; background: var(--mist); border-radius: 999px; }
.lang-switch a { padding: 5px 10px; border-radius: 999px; font-size: .8rem; font-weight: 600; color: var(--text-mute); font-family: var(--font-head); letter-spacing: .02em; }
.lang-switch a.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; width: 20px; }
.nav-toggle span::after { position: absolute; top: 6px; width: 20px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 10px; border-radius: 10px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-cta .btn-primary { display: none; }
}

/* ----------------------------- BUTTONS ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap; cursor: pointer; text-align: center;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: linear-gradient(135deg, #3d2cff, #1200ff); color: #fff; box-shadow: 0 12px 28px -10px rgba(18,0,255,.7); }
.btn-primary:hover { background: #0e00d6; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 20px -8px rgba(255,138,61,.6); }
.btn-orange:hover { background: #e08738; transform: translateY(-2px); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.on-dark .btn-light { color: var(--ink); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ----------------------------- HERO ----------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 112px) 0 clamp(70px, 9vw, 118px); }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
}
.hero-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.hero-glow.g1 { width: 520px; height: 520px; background: var(--blue); top: -150px; right: -80px; opacity: .38; }
.hero-glow.g2 { width: 380px; height: 380px; background: var(--teal); bottom: -160px; left: -120px; opacity: .22; }
.hero .container { position: relative; z-index: 1; }
.hero-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { margin: 20px 0 0; }
.hero h1 .accent { color: var(--teal); }
.hero .lead { margin-top: 22px; max-width: 560px; }
.hero .btn-row { margin-top: 30px; }
.hero-meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--on-dark-dim); font-size: .9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--teal); }

/* RunUp HQ terminal visual */
.terminal-card {
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; background: rgba(5,7,22,.88);
  box-shadow: 0 32px 80px -28px rgba(18,0,255,.75);
  font-family: var(--font-mono); color: #fff;
}
.terminal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035); font-size: .72rem; color: var(--on-dark-dim);
}
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); }
.terminal-dots i:nth-child(1) { background: var(--orange); }
.terminal-dots i:nth-child(2) { background: var(--teal); }
.terminal-dots i:nth-child(3) { background: var(--blue); }
.terminal-body { padding: clamp(24px, 4vw, 40px); display: grid; gap: 14px; font-size: clamp(.82rem, 1.4vw, .96rem); }
.terminal-path { color: var(--teal); margin-bottom: 8px; }
.terminal-line { display: flex; gap: 12px; color: #b9c0d3; }
.terminal-line::before { content: ">"; color: var(--blue); font-weight: 700; }
.terminal-tree { display: grid; gap: 8px; color: #d5d9e5; }
.terminal-status {
  margin-top: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; color: #fff;
}
.terminal-status span:last-child { color: var(--teal); }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 18px; }
}

/* ----------------------------- CARDS / GRID ----------------------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 1px 0 rgba(14,23,42,.03);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px -28px rgba(14,23,42,.38); border-color: #cbd5e1; }
.card-icon { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(18,0,255,.1); color: var(--blue); flex: none; }
.card-icon svg { width: 24px; height: 24px; }
.card-icon.teal { background: rgba(57,217,138,.12); color: var(--teal); }
.card-icon.orange { background: rgba(255,138,61,.14); color: var(--orange); }
.card-icon.navy { background: rgba(14,23,42,.08); color: var(--navy); }
.card h3 { font-size: 1.2rem; }
.card p { font-size: .96rem; }
.card .card-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.card .card-list li { font-size: .92rem; color: var(--text-dim); display: flex; gap: 9px; align-items: flex-start; }
.card .card-list li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); margin-top: 9px; transform: rotate(45deg); }
.card-link { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: "→"; transition: transform var(--dur) var(--ease); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Feature row (icon + text) */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px) { .features { grid-template-columns: 1fr !important; } }
.feature { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.feature .fi { width: 38px; height: 38px; border-radius: 10px; background: rgba(57,217,138,.12); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.feature .fi svg { width: 20px; height: 20px; }
.feature h4 { margin-bottom: 3px; }
.feature p { font-size: .9rem; }

/* Pill chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; font-weight: 500; color: var(--text-dim); }
.chip svg { width: 14px; height: 14px; color: var(--blue); }
.on-dark .chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: var(--on-dark); }
.on-dark .chip svg { color: var(--teal); }

/* ----------------------------- DASHBOARD VISUAL ----------------------------- */
.dashboard {
  background: linear-gradient(160deg, #0d1230 0%, #050716 100%);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.dashboard::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; position: relative; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); }
.dash-dots span:nth-child(1){ background: var(--orange); }
.dash-dots span:nth-child(2){ background: var(--teal); }
.dash-dots span:nth-child(3){ background: var(--blue); }
.dash-title { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--on-dark); letter-spacing: .02em; }
.dash-body { position: relative; display: grid; gap: 12px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px; }
.dash-card .label { font-size: .72rem; color: var(--on-dark-dim); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.dash-card .value { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: #fff; margin-top: 4px; line-height: 1; }
.dash-card .value .small { font-size: .85rem; color: var(--on-dark-dim); font-weight: 500; }
.dash-card .delta { font-size: .78rem; color: var(--teal); margin-top: 6px; display: inline-flex; align-items: center; gap: 4px; }
.dash-card .delta.warn { color: var(--orange); }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 64px; margin-top: 10px; }
.dash-bars span { flex: 1; background: linear-gradient(180deg, var(--blue), #1c6fd8); border-radius: 4px 4px 0 0; opacity: .9; }
.dash-pipe { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.dash-stage { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--on-dark); }
.dash-stage .bar { flex: 1; height: 7px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.dash-stage .bar i { display: block; height: 100%; border-radius: 999px; background: var(--teal); }
.dash-stage .pct { font-family: var(--font-head); font-weight: 600; color: #fff; min-width: 34px; text-align: right; }
.dash-check { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--on-dark); margin-top: 8px; }
.dash-check svg { width: 15px; height: 15px; color: var(--teal); flex: none; }
.dash-gauge { display: flex; align-items: center; gap: 14px; }
.dash-gauge .ring { width: 64px; height: 64px; flex: none; }

/* Floating accents around dashboard */
.float-card {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 11px 14px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; color: var(--ink);
  font-family: var(--font-head);
}
.float-card .dot { width: 9px; height: 9px; border-radius: 50%; }
.float-card.tl { top: 18px; left: -26px; }
.float-card.br { bottom: 22px; right: -22px; }
@media (max-width: 600px) { .float-card { display: none; } }

/* ----------------------------- SPLIT ----------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split .split-visual { order: -1; } }

/* ----------------------------- STATS ----------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; letter-spacing: -.02em; line-height: 1; }
.stat .num .accent { color: var(--teal); }
.stat .lbl { color: var(--on-dark-dim); font-size: .9rem; margin-top: 8px; }

/* ----------------------------- MARKETS / WHO WE HELP ----------------------------- */
.market-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.market-card .flag { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.market-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.market-head h3 { font-size: 1.3rem; }
.market-head .flag-wrap { width: 44px; height: 44px; border-radius: 11px; overflow: hidden; border: 1px solid var(--line); flex: none; }
.market-head .market-icon { display: grid; place-items: center; color: var(--blue); background: var(--soft-blue); }
.market-head .market-icon svg { width: 24px; height: 24px; }
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 560px) { .niche-grid { grid-template-columns: repeat(2,1fr); } }
.niche { display: flex; align-items: center; gap: 8px; padding: 11px 12px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; font-size: .88rem; color: var(--text-dim); font-weight: 500; }
.niche svg { width: 16px; height: 16px; color: var(--blue); flex: none; }

/* ----------------------------- PROCESS / STEPS ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step .n { font-family: var(--font-head); font-weight: 600; font-size: .8rem; color: var(--blue); letter-spacing: .1em; }
.step h4 { margin: 10px 0 8px; }
.step p { font-size: .92rem; }
.step::after { content: ""; position: absolute; top: 36px; right: -14px; width: 26px; height: 1px; background: var(--line-strong); }
.step:last-child::after { display: none; }
@media (max-width: 900px) { .step:nth-child(2)::after { display: none; } }
@media (max-width: 540px) { .step::after { display: none; } }

/* ----------------------------- TESTIMONIAL / QUOTE ----------------------------- */
.quote { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.4; letter-spacing: -.02em; color: #fff; }
.quote-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.quote-author .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 600; flex: none; }
.quote-author .who { font-size: .92rem; }
.quote-author .who strong { display: block; color: #fff; }
.quote-author .who span { color: var(--on-dark-dim); font-size: .85rem; }

/* Engagement paths */
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engagement-card {
  position: relative; min-height: 100%; padding: 30px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 18px 50px -38px rgba(14,23,42,.5);
}
.engagement-card.featured { background: var(--navy); border-color: var(--navy); }
.engagement-card .path-number { font: 600 .76rem/1 var(--font-head); letter-spacing: .12em; color: var(--blue); }
.engagement-card h3 { margin-top: 16px; }
.engagement-card p { margin-top: 12px; font-size: .95rem; }
.engagement-card ul { margin-top: 18px; display: grid; gap: 9px; }
.engagement-card li { color: var(--text-dim); font-size: .9rem; display: flex; gap: 9px; }
.engagement-card li::before { content: "✓"; color: var(--teal); font-weight: 700; }
.engagement-card .card-link { margin-top: 22px; }
.engagement-card.featured h3 { color: #fff; }
.engagement-card.featured p, .engagement-card.featured li { color: var(--on-dark-dim); }
.engagement-card.featured .path-number, .engagement-card.featured .card-link { color: var(--teal); }
@media (max-width: 820px) { .engagement-grid { grid-template-columns: 1fr; } }

.outcome-band { background: #050716; }
.outcome-grid { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
.outcome-intro, .outcome-item { padding: clamp(24px, 4vw, 38px); background: #090d24; }
.outcome-item .n { color: var(--teal); font: 600 .75rem/1 var(--font-head); letter-spacing: .12em; }
.outcome-item h3 { margin-top: 14px; font-size: 1.15rem; }
.outcome-item p { margin-top: 9px; font-size: .9rem; }
@media (max-width: 900px) { .outcome-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .outcome-grid { grid-template-columns: 1fr; } }

/* ----------------------------- CTA BANNER ----------------------------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--navy) 0%, #11154a 60%, #050716 100%); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000, transparent 75%); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-banner p { color: var(--on-dark-dim); max-width: 560px; margin: 18px auto 0; }
.cta-banner .btn-row { justify-content: center; margin-top: 30px; }

/* ----------------------------- FAQ ----------------------------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); color: var(--text-dim); }
.faq-q .pm::before { content: "+"; font-size: 1.1rem; line-height: 1; }
.faq-item.open .faq-q .pm { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-a-inner { padding: 0 4px 22px; color: var(--text-dim); }

/* ----------------------------- FORM ----------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); font-family: var(--font-head); letter-spacing: -.01em; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1px solid var(--line-strong);
  background: var(--bg-soft); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: var(--ring); }
.field .hint { font-size: .78rem; color: var(--text-mute); }
.field.error input, .field.error select, .field.error textarea { border-color: #e0524d; background: #fdf3f2; }
.field .err-msg { font-size: .78rem; color: #c0392b; display: none; }
.field.error .err-msg { display: block; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-note { font-size: .82rem; color: var(--text-mute); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(57,217,138,.15); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.form-success h3 { color: var(--ink); }

.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.contact-method:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.contact-method .cm-ic { width: 42px; height: 42px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.contact-method .cm-ic svg { width: 22px; height: 22px; }
.contact-method.wa .cm-ic { background: rgba(37,211,102,.12); color: #25d366; }
.contact-method.em .cm-ic { background: rgba(18,0,255,.1); color: var(--blue); }
.contact-method.ca .cm-ic { background: rgba(255,138,61,.14); color: var(--orange); }
.contact-method strong { display: block; color: var(--ink); font-family: var(--font-head); }
.contact-method span { font-size: .9rem; color: var(--text-dim); }

/* ----------------------------- PORTFOLIO ----------------------------- */
.case-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.case-thumb { aspect-ratio: 16/9; background: var(--navy); position: relative; overflow: hidden; }
.case-thumb svg { width: 100%; height: 100%; }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.case-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-body .tag { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-family: var(--font-head); }
.case-body h3 { font-size: 1.25rem; }
.case-body p { font-size: .94rem; }
.case-body .case-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 8px; }

/* Case study layout */
.case-hero { background: var(--navy); color: var(--on-dark); padding: clamp(48px,7vw,84px) 0; position: relative; overflow: hidden; }
.case-hero .hero-grid-bg { opacity: .4; }
.case-meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.case-section { padding: clamp(40px,5vw,64px) 0; border-bottom: 1px solid var(--line); }
.case-section:last-child { border-bottom: 0; }
.live-example {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.live-example h2 { margin-top: 8px; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.live-example p { margin-top: 10px; max-width: 680px; }
.live-example .eyebrow { color: var(--blue); }
@media (max-width: 720px) {
  .live-example { grid-template-columns: 1fr; }
  .live-example .btn { width: 100%; }
}
.case-block h3 { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.case-block h3 .ico { width: 30px; height: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.case-block h3 .ico svg { width: 17px; height: 17px; }
.case-block.problem h3 .ico { background: rgba(224,82,77,.12); color: #e0524d; }
.case-block.solution h3 .ico { background: rgba(18,0,255,.1); color: var(--blue); }
.case-block.deliverables h3 .ico { background: rgba(57,217,138,.12); color: var(--teal); }
.case-block.result h3 .ico { background: rgba(255,138,61,.14); color: var(--orange); }
.deliver-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 14px; }
@media (max-width: 640px) { .deliver-list { grid-template-columns: 1fr; } }
.deliver-list li { display: flex; gap: 10px; align-items: flex-start; padding: 13px 15px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; font-size: .92rem; color: var(--text-dim); }
.deliver-list li::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--teal); margin-top: 2px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: 11px; background-repeat: no-repeat; background-position: center; }
.result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 14px; }
@media (max-width: 640px) { .result-grid { grid-template-columns: 1fr; } }
.result-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.result-stat .big { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--blue); letter-spacing: -.02em; line-height: 1; }
.result-stat .cap { font-size: .88rem; color: var(--text-dim); margin-top: 8px; }

/* ----------------------------- WHAT WE DO (mini) ----------------------------- */
.mini-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px 24px; margin-top: 18px; }
@media (max-width: 720px){ .mini-list { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 480px){ .mini-list { grid-template-columns: 1fr; } }
.mini-list li { display: flex; gap: 10px; align-items: center; font-size: .94rem; color: var(--text-dim); padding: 6px 0; }
.mini-list li::before { content: ""; flex: none; width: 18px; height: 18px; border-radius: 6px; background: rgba(57,217,138,.14); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2339D98A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.on-dark .mini-list li { color: var(--on-dark); }

/* ----------------------------- FOOTER ----------------------------- */
.site-footer { background: var(--navy); color: var(--on-dark-dim); padding: clamp(56px,7vw,80px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-hq { background: var(--teal); color: var(--navy); }
.footer-brand .brand small { color: var(--on-dark-dim); }
.footer-brand p { color: var(--on-dark-dim); font-size: .92rem; margin-top: 16px; max-width: 320px; }
.footer-col h5 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: .92rem; color: var(--on-dark-dim); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12); display: inline-flex; align-items: center; justify-content: center; color: var(--on-dark-dim); transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); }
.footer-social svg { width: 17px; height: 17px; }

/* ----------------------------- WHATSAPP FLOAT ----------------------------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6), 0 4px 10px rgba(0,0,0,.15);
  transition: transform var(--dur) var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25d366; opacity: .5;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ----------------------------- REVEAL ANIM ----------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ----------------------------- HOMEPAGE EDITORIAL COMPOSITION ----------------------------- */
.editorial-head { max-width: 820px; }
.editorial-head h2 { max-width: 760px; }
.editorial-head p { max-width: 680px; }
.layers-section,
.engagement-section { padding-block: 100px; }
.audience-section { padding-bottom: 80px; }
.work-section { padding-top: 80px; }
.final-cta-section { padding-block: 90px; }

.trust-band { padding-block: 0; background: var(--surface); }
.trust-features {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.trust-features .feature {
  min-height: 116px;
  padding: 24px 26px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  align-items: center;
}
.trust-features .feature:last-child { border-right: 0; }

.layers-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.layers-grid .card {
  min-height: 285px;
  padding: 38px 42px 38px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.layers-grid .card:nth-child(even) {
  padding-inline: 42px 0;
  border-left: 1px solid var(--line-strong);
}
.layers-grid .card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line-strong);
}
.layers-grid .card-icon { width: 40px; height: 40px; border-radius: 50%; }
.layers-grid .card h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.layers-grid .card p { max-width: 46ch; }

.engagement-section { background: var(--surface); }
.engagement-grid {
  display: block;
  border-top: 1px solid var(--line-strong);
}
.engagement-card,
.engagement-card.featured {
  display: grid;
  grid-template-columns: .65fr .9fr 1.35fr 1.35fr;
  gap: 22px 32px;
  align-items: start;
  min-height: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.engagement-card .path-number { grid-column: 1; margin-top: 6px; }
.engagement-card h3,
.engagement-card.featured h3 { grid-column: 2; margin-top: 0; color: var(--ink); }
.engagement-card p,
.engagement-card.featured p { grid-column: 3; margin-top: 0; color: var(--text-dim); }
.engagement-card ul { grid-column: 4; margin-top: 0; }
.engagement-card li,
.engagement-card.featured li { color: var(--text-dim); }
.engagement-card .card-link,
.engagement-card.featured .card-link {
  grid-column: 2 / 4;
  margin-top: -4px;
  color: var(--blue);
}

.capabilities-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 34px;
}
.capabilities-list li { padding-block: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }

.audience-section .market-card {
  padding: 28px 0;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
}
.audience-section .niche-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
}
.audience-section .niche {
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: .92rem;
}
.audience-section .niche svg { display: none; }
.audience-section .niche::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

.process-section .steps {
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.process-section .step {
  min-height: 220px;
  padding: 30px 28px 30px 0;
  margin-right: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.process-section .step:last-child { margin-right: 0; border-right: 0; }
.process-section .step::after { display: none; }

@media (max-width: 900px) {
  .trust-features { grid-template-columns: repeat(2, 1fr); }
  .trust-features .feature:nth-child(2) { border-right: 0; }
  .trust-features .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .engagement-card,
  .engagement-card.featured {
    grid-template-columns: .6fr 1fr 1.5fr;
  }
  .engagement-card ul { grid-column: 3; grid-row: 2; }
  .engagement-card .card-link,
  .engagement-card.featured .card-link { grid-column: 2; grid-row: 2; }
}

@media (max-width: 700px) {
  .layers-grid { grid-template-columns: 1fr; }
  .layers-grid .card,
  .layers-grid .card:nth-child(even) {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }
  .engagement-card,
  .engagement-card.featured {
    display: block;
    padding: 30px 0;
  }
  .engagement-card h3 { margin-top: 14px; }
  .engagement-card p { margin-top: 12px; }
  .engagement-card ul { margin-top: 18px; }
  .engagement-card .card-link { margin-top: 20px; }
  .process-section .steps { grid-template-columns: 1fr; }
  .process-section .step {
    min-height: 0;
    margin-right: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .hero { padding-block: 54px 66px; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero .btn-row, .cta-banner .btn-row { display: grid; grid-template-columns: 1fr; }
  .hero .btn, .cta-banner .btn { width: 100%; white-space: normal; }
  .hero-meta { display: grid; gap: 9px; }
  .section-head[style] { display: block !important; }
  .section-head[style] .btn { margin-top: 20px !important; }
  .market-card, .card, .form-card { padding: 22px; }
  .niche-grid { grid-template-columns: 1fr; }
  .trust-features { grid-template-columns: 1fr !important; }
  .trust-features .feature {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-features .feature:last-child { border-bottom: 0; }
  .capabilities-list { grid-template-columns: 1fr; }
  .audience-section .market-card { padding: 26px 0; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* ----------------------------- MISC ----------------------------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-mute); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: .5; }
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
.kbd { font-family: var(--font-head); padding: 2px 8px; border-radius: 6px; background: var(--mist); font-size: .82rem; color: var(--ink); }
.tagline-list { font-family: var(--font-head); color: var(--on-dark-dim); font-size: .92rem; letter-spacing: .02em; }
.text-blue { color: var(--blue); }
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.bg-navy { background: var(--navy); color: var(--on-dark); }
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
