/* ClientForge Lab — locked brand system */
:root {
  --forge-lime: #7AE05A;
  --forge-lime-600: #5fc73f;
  --amber-spark: #F5A623;
  --midnight: #0F1923;
  --midnight-2: #16222e;
  --chalk: #F7F6F2;
  --chalk-2: #efeee8;
  --slate: #2C3544;
  --slate-2: #4a5468;
  --slate-3: #7a8497;
  --line: #e3e1d8;
  --success: #4CAF50;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15,25,35,.04), 0 2px 6px rgba(15,25,35,.04);
  --shadow-md: 0 6px 24px -8px rgba(15,25,35,.18);
  --shadow-lg: 0 24px 60px -20px rgba(15,25,35,.25);

  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -120px;
  z-index: 1000;
  background: var(--midnight);
  color: var(--chalk);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { top: 12px; }

/* Type */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--midnight);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 6vw, 68px); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--slate-2); line-height: 1.55; }
small { font-size: 13px; }

a { color: var(--midnight); text-decoration: none; }
a:hover { color: var(--forge-lime-600); }
:focus-visible {
  outline: 2px solid var(--forge-lime);
  outline-offset: 3px;
  border-radius: 6px;
}

img, svg { max-width: 100%; height: auto; display: block; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: clamp(56px, 8vw, 112px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 16px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled {
  background: rgba(247, 246, 242, 0.94);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--midnight);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--midnight); }
.logo svg { width: 26px; height: 26px; }
.nav {
  display: flex;
  gap: 22px;
  margin: 0 auto;
  align-items: center;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
}
.nav a:hover { color: var(--midnight); }
.nav a.active { color: var(--midnight); font-weight: 600; }
.header-actions { display: flex; gap: 10px; align-items: center; }

.lang-toggle {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.lang-toggle a {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--slate-2);
  font-weight: 500;
}
.lang-toggle a.active {
  background: var(--midnight);
  color: var(--chalk);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--forge-lime);
  color: var(--midnight);
  border-color: var(--forge-lime);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 22px -10px rgba(122, 224, 90, .55);
}
.btn-primary:hover {
  background: var(--forge-lime-600);
  color: var(--midnight);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 12px 30px -8px rgba(122, 224, 90, .6);
}
.btn-secondary {
  background: var(--midnight);
  color: var(--chalk);
  border-color: var(--midnight);
}
.btn-secondary:hover { background: #1c2c3b; color: var(--chalk); }
.btn-ghost {
  background: transparent;
  color: var(--midnight);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--midnight); color: var(--midnight); }
.btn-wa {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-wa:hover { background: #1fb858; color: white; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-lg { padding: 16px 26px; font-size: 16.5px; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
}
.hero-bg::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  right: -260px; top: -240px;
  background: radial-gradient(closest-side, rgba(122,224,90,.18), rgba(122,224,90,0) 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  left: -200px; bottom: -160px;
  background: radial-gradient(closest-side, rgba(245,166,35,.16), rgba(245,166,35,0) 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { max-width: 18ch; }
.hero .lead { max-width: 56ch; margin-top: 16px; }
.hero-meta { display:flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-top: 28px; color: var(--slate-2); font-size: 14px; }
.hero-meta .dot { width:6px; height:6px; background: var(--forge-lime); border-radius: 50%; }

/* Vertical fork cards (homepage hero) */
.fork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 880px) { .fork-grid { grid-template-columns: 1fr; } }
.fork-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
  text-decoration: none;
  color: var(--midnight);
  overflow: hidden;
}
.fork-card::after {
  content: "→";
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--slate-3);
  transition: transform .25s ease, color .2s ease;
}
.fork-card:hover {
  border-color: var(--midnight);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--midnight);
}
.fork-card:hover::after { transform: translateX(6px); color: var(--midnight); }
.fork-card .vertical-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.fork-card h3 { margin: 0; }
.fork-card .price {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--midnight);
  font-weight: 500;
  margin-top: 6px;
}
.fork-card .price small { color: var(--slate-3); font-weight: 400; }
.fork-card .badge {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--slate-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fork-card .badge::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--forge-lime);
  border-radius: 50%;
  display: inline-block;
}
.fork-card.medspa .vertical-tag { color: #7c5b1f; }
.fork-card.auto .vertical-tag { color: #1f4f7c; }
.fork-card.pet .vertical-tag { color: #2e6f2a; }

/* Card grid (engines, etc.) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.card .stat {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--midnight);
  background: var(--chalk-2);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 16px;
}
.card .stat-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--slate-3);
}
.card .icon-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forge-lime) 0%, var(--amber-spark) 130%);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  color: var(--midnight);
  font-weight: 700;
}

/* Tier table */
.tier-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tier-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  padding: 22px 28px;
  align-items: center;
}
.tier-row + .tier-row { border-top: 1px solid var(--line); }
.tier-row.head {
  background: var(--midnight);
  color: var(--chalk);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--midnight);
}
.tier-name .tier-vertical {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-3);
  margin-top: 4px;
}
.tier-desc { color: var(--slate-2); font-size: 15px; }
.tier-fit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--midnight);
}
@media (max-width: 760px) {
  .tier-row { grid-template-columns: 1fr; gap: 8px; }
  .tier-row.head { display: none; }
}

/* Pricing strip / pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.price-card.featured {
  border-color: var(--midnight);
  box-shadow: var(--shadow-md);
}
.price-card .vertical-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 10px;
}
.price-card h3 { margin-bottom: 12px; }
.price-card .price {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  color: var(--forge-lime-600);
  letter-spacing: -0.02em;
}
.price-card .price small {
  font-size: 16px;
  color: var(--slate-3);
  font-weight: 400;
}
.price-card .founder {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--midnight);
  background: rgba(245,166,35,.14);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.price-card li {
  font-size: 14.5px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--slate);
  border-bottom: 1px solid var(--chalk-2);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--forge-lime-600);
  border-bottom: 2px solid var(--forge-lime-600);
  transform: rotate(-45deg);
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 0;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--forge-lime);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--midnight);
  background: rgba(122,224,90,.08);
}
.trust-item {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--slate-2);
  letter-spacing: 0.04em;
}
.trust-item::before {
  content: "·";
  color: var(--slate-3);
  margin-right: 14px;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--midnight);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--slate-3);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p {
  margin-top: 14px;
  color: var(--slate-2);
  font-size: 16px;
}

/* Final CTA band */
.cta-band {
  background: var(--midnight);
  color: var(--chalk);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(122,224,90,.18), transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(245,166,35,.12), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--chalk); max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(247,246,242,.75); margin-bottom: 32px; }
.cta-band .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
  background: var(--midnight);
  color: rgba(247,246,242,.78);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,246,242,.1);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(247,246,242,.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer .col-brand .logo { color: var(--chalk); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin: 8px 0; }
.footer ul a { color: rgba(247,246,242,.78); font-size: 14.5px; }
.footer ul a:hover { color: var(--forge-lime); }
.footer .trust-line {
  font-size: 12.5px;
  color: rgba(247,246,242,.55);
  line-height: 1.6;
}
.footer .wa-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forge-lime);
  font-size: 14px;
  font-weight: 500;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(247,246,242,.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .lang-toggle { border-color: rgba(247,246,242,.18); }
.footer-bottom .lang-toggle a { color: rgba(247,246,242,.6); }
.footer-bottom .lang-toggle a.active { background: var(--chalk); color: var(--midnight); }

/* Lang banner */
.lang-banner {
  background: var(--midnight);
  color: var(--chalk);
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  display: none;
}
.lang-banner.show { display: block; }
.lang-banner a {
  color: var(--forge-lime);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
}
.lang-banner button {
  background: transparent;
  border: none;
  color: rgba(247,246,242,.6);
  margin-left: 16px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-body);
}

/* Bullet list (what you get) */
.bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}
@media (max-width: 720px) { .bullets { grid-template-columns: 1fr; } }
.bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.55;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--forge-lime-600);
  border-bottom: 2px solid var(--forge-lime-600);
  transform: rotate(-45deg);
}

/* Disclosure box */
.disclosure {
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px;
  color: var(--slate);
}
.disclosure strong {
  color: var(--midnight);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-head);
  font-weight: 600;
}

/* Vertical hero ribbons */
.vertical-hero {
  background: var(--midnight);
  color: var(--chalk);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.vertical-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(122,224,90,.18), transparent 45%),
              radial-gradient(circle at 0% 90%, rgba(245,166,35,.12), transparent 50%);
}
.vertical-hero > .container { position: relative; }
.vertical-hero h1 { color: var(--chalk); max-width: 22ch; }
.vertical-hero .eyebrow { color: var(--forge-lime); }
.vertical-hero .lead { color: rgba(247,246,242,.78); }
.vertical-hero .btn-row { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* Founder cards */
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}
@media (max-width: 720px) { .founders { grid-template-columns: 1fr; } }
.founder-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.founder-card .role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 6px;
}
.founder-card h3 { margin-bottom: 6px; }
.founder-card p { font-size: 15px; color: var(--slate-2); margin: 8px 0 0; }

/* Form */
.form { display: grid; gap: 16px; max-width: 540px; }
.form label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-2);
  display: block;
  margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--midnight);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--forge-lime);
  outline-offset: 1px;
  border-color: var(--forge-lime);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--slate-2);
}
.form .checkbox input { width: auto; margin-top: 4px; }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Hours */
.hours-block {
  background: var(--midnight);
  color: var(--chalk);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hours-block h4 { color: var(--chalk); }
.hours-block dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 22px; font-size: 14.5px; }
.hours-block dt {
  font-family: var(--font-mono);
  color: var(--forge-lime);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
}
.hours-block dd { margin: 0; color: rgba(247,246,242,.85); }

/* Legal pages typography */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal h2 { margin-top: 48px; font-size: 26px; }
.legal h3 { margin-top: 28px; font-size: 18px; }
.legal p, .legal li { font-size: 15.5px; color: var(--slate); }
.legal ul { padding-left: 20px; }
.legal small { display: block; color: var(--slate-3); margin-top: 24px; font-size: 12.5px; }

/* Triptych engines */
.engines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .engines { grid-template-columns: 1fr; } }
.engine {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.engine .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-3);
}
.engine h3 { margin-top: 8px; margin-bottom: 8px; font-size: 22px; }
.engine p { font-size: 15px; color: var(--slate-2); margin: 0; }
.engine .stat {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--midnight);
  background: var(--chalk-2);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}
.engine .stat-note {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--slate-3);
  font-family: var(--font-body);
}

/* Forge mark spark */
.spark-art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--midnight) 0%, #1a2a3a 100%);
  overflow: hidden;
}
.spark-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Utility */
.text-center { text-align: center; }
.mono { font-family: var(--font-mono); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--slate-2); }

/* Mobile nav */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .header-inner { gap: 12px; padding: 12px 18px; }
  .header-actions { margin-left: auto; }
}
@media (max-width: 480px) {
  .lang-toggle { font-size: 11px; }
  .lang-toggle a { padding: 3px 8px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
