/* ASKAI Consulting — Stylesheet v2.0
   Built against brand/BRAND_SYSTEM.md and brand/DESIGN_PLAN.md
   Tokens live in tokens.css and must be loaded before this file via @import. */

@import url('tokens.css');

/* =============================================================
   BASE
   ============================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

body {
  font-family: var(--font-body);
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--cream);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 0.066 0 0 0 0 0.078 0 0 0 0 0.094 0 0 0 0.04 0"/></filter><rect width="200" height="200" filter="url(%23n)"/></svg>');
  background-blend-mode: multiply;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--orange); color: var(--ink); }

/* =============================================================
   ACCESSIBILITY
   ============================================================= */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--cream-warm);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  font-weight: 700;
  z-index: var(--z-toast);
  transition: top var(--d-mid) var(--ease-out);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

/* =============================================================
   TYPOGRAPHY
   ============================================================= */

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
h1 { font-size: var(--fz-h1); line-height: var(--lh-h1); }
h2 { font-size: var(--fz-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--fz-h3); line-height: var(--lh-h3); }
h4 { font-size: var(--fz-h4); line-height: var(--lh-h4); }
h5 { font-size: var(--fz-h5); line-height: var(--lh-h5); text-transform: uppercase; letter-spacing: 0.12em; }

p { font-size: var(--fz-body); line-height: var(--lh-body); color: var(--ink); }
.lead, .lede { font-size: var(--fz-body-lg); line-height: var(--lh-body-lg); color: var(--ink); }
.body-sm { font-size: var(--fz-body-sm); line-height: var(--lh-body-sm); }
.micro { font-size: var(--fz-micro); line-height: var(--lh-micro); letter-spacing: 0.02em; }

.display {
  font-family: var(--font-display);
  font-size: var(--fz-display);
  line-height: var(--lh-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h5);
  line-height: var(--lh-h5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 16px;
}
.eyebrow .sep { color: var(--orange); padding: 0 6px; }

.eyebrow-mono {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-h5);
  line-height: var(--lh-h5);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.muted { color: var(--muted); }
.italic { font-style: italic; }

/* =============================================================
   LAYOUT
   ============================================================= */

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.container-content { max-width: var(--content-max); margin: 0 auto; padding: 0 32px; }

section { padding: var(--section-pad) 0; }

@media (max-width: 768px) {
  .container, .container-sm, .container-content { padding: 0 24px; }
}
@media (max-width: 480px) {
  .container, .container-sm, .container-content { padding: 0 20px; }
}

.surface-cream      { background: var(--cream); color: var(--ink); }
.surface-cream-warm { background: var(--cream-warm); color: var(--ink); }
.surface-dark       { background: var(--ink); color: var(--on-dark); position: relative; }
.surface-dark h1, .surface-dark h2, .surface-dark h3, .surface-dark h4,
.surface-dark p, .surface-dark .lede { color: var(--on-dark); }
.surface-dark h5 { color: var(--on-dark); }
.surface-dark .muted { color: var(--on-dark-muted); }
.surface-dark .eyebrow { color: var(--on-dark); }

.surface-dark.has-hex-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/brand/pattern-hex-dark.svg');
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
}
.surface-dark > * { position: relative; z-index: 1; }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lede { max-width: 640px; }
.section-header.centered .lede { margin-left: auto; margin-right: auto; }

.hairline {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 24px 0;
  width: 100%;
}
.surface-dark .hairline { border-top-color: var(--on-dark-rule); }

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}
.section-divider hr {
  flex: 1;
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.section-divider svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =============================================================
   NAVIGATION
   ============================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--d-mid) var(--ease-out);
}
.nav.scrolled { box-shadow: var(--shadow-scrolled); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 96px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
}
.nav-logo .mark-mobile { display: none; }
@media (max-width: 1023px) {
  .nav-logo img { height: 80px; }
}
@media (max-width: 768px) {
  .nav-logo img { height: 64px; max-width: 260px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  font-size: var(--fz-body-sm);
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color var(--d-mid) var(--ease-out);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.is-current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange);
}

.nav-actions { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-hamburger svg { width: 24px; height: 24px; }

.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: var(--z-overlay);
  padding: 88px 32px 32px;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-slow) var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
}
.mobile-menu .btn { font-family: var(--font-body); font-size: var(--fz-body); margin-top: 24px; }

@media (max-width: 1023px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: inline-flex; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 12px 24px; }
  .nav-logo .mark-desktop { display: none; }
  .nav-logo .mark-mobile { display: block; height: 36px; width: 36px; }
}

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-body-sm);
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition:
    background-color var(--d-mid) var(--ease-out),
    border-color var(--d-mid) var(--ease-out),
    color var(--d-mid) var(--ease-out),
    transform var(--d-fast) var(--ease-out);
  text-decoration: none;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-lg { padding: 16px 28px; font-size: var(--fz-body); }
.btn-xl { padding: 20px 36px; font-size: var(--fz-h4); }
.btn-sm { padding: 10px 16px; font-size: var(--fz-micro); }

.btn-primary { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: var(--cream-warm); transform: none; }

.surface-dark .btn-secondary,
.btn-secondary.on-dark {
  color: var(--on-dark);
  border-color: rgba(247, 244, 238, 0.4);
}
.surface-dark .btn-secondary:hover,
.btn-secondary.on-dark:hover {
  background: var(--on-dark);
  color: var(--ink);
  border-color: var(--on-dark);
}

.btn.w-full { width: 100%; }

/* =============================================================
   CARDS
   ============================================================= */

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--d-mid) var(--ease-out);
}
.card.card-warm { background: var(--cream-warm); box-shadow: none; }
.card.card-dark { background: var(--ink-soft); border: none; color: var(--on-dark); box-shadow: none; }
.card.card-elevated { box-shadow: var(--shadow-elevated); }
.card.is-interactive:hover { border-color: var(--ink); }

/* =============================================================
   HEX LIST
   ============================================================= */

.hex-list { list-style: none; padding: 0; margin: 0; }
.hex-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--ink);
  border-top: 1px solid var(--rule);
}
.hex-list li:first-child { border-top: none; }
.hex-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 14px;
  background: url('../img/brand/divider-hex-orange.svg') no-repeat center / contain;
}
.surface-dark .hex-list li { color: var(--on-dark); border-top-color: var(--on-dark-rule); }

.hex-list.compact li { padding: 8px 0 8px 24px; font-size: var(--fz-body-sm); }
.hex-list.compact li::before { top: 12px; width: 10px; height: 12px; }

/* =============================================================
   FORMS
   ============================================================= */

label, .q-label {
  display: block;
  font-weight: 600;
  font-size: var(--fz-body-sm);
  color: var(--ink);
  margin-bottom: 8px;
}
.q-label .req { color: var(--orange); }
.q-sub, .qform-sub {
  font-size: var(--fz-body-sm);
  color: var(--muted);
  margin: -4px 0 12px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  transition: border-color var(--d-mid) var(--ease-out);
}
textarea { padding: 12px 14px; resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: var(--muted); }

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-color: var(--ink);
}
input:disabled, textarea:disabled, select:disabled {
  background: var(--cream-warm);
  color: var(--muted);
  cursor: not-allowed;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23111418' stroke-width='1.5'%3E%3Cpolyline points='1,1 6,7 11,1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

input[type="checkbox"], input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--d-mid), background var(--d-mid);
  margin: 0;
}
input[type="checkbox"] { border-radius: 4px; }
input[type="radio"] { border-radius: 50%; }

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}
input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23F7F4EE' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4,9 8,13 14,5'/%3E%3C/svg%3E") no-repeat center;
}
input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--cream);
  border-radius: 50%;
}

.opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: var(--fz-body-sm);
  line-height: var(--lh-body-sm);
  transition: border-color var(--d-mid), background var(--d-mid);
}
.opt:hover { border-color: var(--ink); }
.opt input { margin: 2px 0 0; }
.opt:has(input:checked) { border-color: var(--orange); background: var(--cream-warm); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choices.choices-1 { grid-template-columns: 1fr; }
.choices.choices-3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 768px) {
  .two-col, .choices, .choices.choices-3 { grid-template-columns: 1fr; }
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
  position: relative;
  padding: 128px 0 96px;
  overflow: hidden;
}
.hero-glyph {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-content { max-width: 800px; }
.hero h1 {
  font-size: var(--fz-display);
  line-height: var(--lh-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--orange-deep); }
.hero .lede { max-width: 640px; margin-bottom: 32px; }

.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: var(--fz-body-sm);
  color: var(--muted);
}
.hero-trust .sep { color: var(--rule); }

@media (max-width: 768px) {
  .hero { padding: 64px 0 64px; }
  .hero-glyph { width: 500px; height: 500px; right: -220px; opacity: 0.06; }
  .hero-trust .sep { display: none; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.page-hero { padding: 96px 0 64px; background: var(--cream); border-bottom: 1px solid var(--rule); }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lede { max-width: 720px; }

/* =============================================================
   CADENCE STRIP
   ============================================================= */

.cadence {
  background: var(--ink);
  padding: 80px 0;
  border-top: 1px solid var(--on-dark-rule);
  border-bottom: 1px solid var(--on-dark-rule);
  position: relative;
  overflow: hidden;
}
.cadence::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/brand/pattern-hex-dark.svg');
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.6;
  pointer-events: none;
}
.cadence > * { position: relative; z-index: 1; }
.cadence-row {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  text-align: center;
}
.cadence-col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: var(--on-dark);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.cadence-col { padding: 0 16px; }
.cadence-col p { font-size: var(--fz-body-sm); color: var(--on-dark-muted); }
.cadence-hex { width: 12px; height: 14px; flex-shrink: 0; }

@media (max-width: 768px) {
  .cadence-row { flex-direction: column; gap: 24px; }
  .cadence-hex { display: none; }
}

/* =============================================================
   PROBLEM
   ============================================================= */

.problem-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.problem-grid h2 { font-size: var(--fz-h2); line-height: var(--lh-h2); }
.problem-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.problem-block:first-child { border-top: none; padding-top: 0; }
.problem-block:last-child { padding-bottom: 0; }
.problem-block .num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--orange);
}
.problem-block h4 { margin-bottom: 8px; }
.problem-block p { color: var(--muted); }

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .problem-block { grid-template-columns: 56px 1fr; gap: 16px; }
}

/* =============================================================
   SOLUTION + DELIVERABLE
   ============================================================= */

.solution-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: start; }
.solution-grid h2 { margin-bottom: 24px; }
.solution-grid .lede { margin-bottom: 32px; }

.feature-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.feature-row:first-of-type { border-top: none; }
.feature-row svg { width: 24px; height: 24px; color: var(--ink); margin-top: 2px; }
.feature-row h4 { margin-bottom: 2px; }
.feature-row p { font-size: var(--fz-body-sm); color: var(--muted); }

.deliverable-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.deliverable-card .eyebrow { margin-bottom: 16px; }
.deliverable-card hr { border: 0; border-top: 1px solid var(--rule); margin: 0 0 16px; }

@media (max-width: 1023px) {
  .solution-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =============================================================
   PROCESS STRIP
   ============================================================= */

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.process-step { text-align: center; padding: 0 8px; }
.process-step .glyph-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step .glyph-wrap svg.hex { position: absolute; inset: 0; width: 100%; height: 100%; }
.process-step .glyph-wrap svg.icon {
  width: 28px; height: 28px;
  position: relative;
  z-index: 1;
  color: var(--on-dark);
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-h5);
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}
.process-step h4 { color: var(--on-dark); margin-bottom: 6px; }
.process-step p { color: var(--on-dark-muted); font-size: var(--fz-body-sm); line-height: var(--lh-body-sm); }

.process-strip-foot { text-align: right; margin-top: 48px; }
.process-strip-foot a {
  font-size: var(--fz-body-sm);
  color: var(--on-dark);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-mid);
}
.process-strip-foot a:hover { border-color: var(--orange); }

@media (max-width: 1023px) {
  .process-strip { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-step:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}
@media (max-width: 600px) {
  .process-strip { grid-template-columns: 1fr; gap: 40px; }
  .process-step:last-child { max-width: none; }
}

/* =============================================================
   STEP BLOCKS (How It Works)
   ============================================================= */

.step-block-stacked {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}
.step-block-stacked:first-of-type { border-top: none; padding-top: 0; }

.step-glyph-block { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.step-glyph-block .step-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-h5);
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.step-glyph-block .glyph-wrap {
  width: 96px;
  height: 96px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-glyph-block .glyph-wrap svg.hex { position: absolute; inset: 0; width: 100%; height: 100%; }
.step-glyph-block .glyph-wrap svg.icon {
  width: 40px; height: 40px;
  position: relative;
  z-index: 1;
  color: var(--ink);
}
.step-glyph-block .step-time { font-size: var(--fz-body-sm); font-weight: 700; color: var(--muted); }

.step-content h2 { margin-bottom: 16px; }
.step-content .lede { margin-bottom: 16px; }
.step-content p + p { margin-top: 16px; }

@media (max-width: 1023px) {
  .step-block-stacked { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   PRICING
   ============================================================= */

.price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.price-old {
  position: relative;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  color: var(--muted);
  padding: 0 4px;
}
.price-old::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 52%;
  height: 1.5px;
  background: var(--orange);
  transform: rotate(-6deg);
}
.price-new {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 56px;
  line-height: 64px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-meta { font-size: var(--fz-body-sm); color: var(--muted); align-self: baseline; }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  max-width: 580px;
  margin: 0 auto;
}
.pricing-card .pricing-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}
.pricing-card hr { border: 0; border-top: 1px solid var(--rule); margin: 24px 0; }
.pricing-card .pricing-foot {
  text-align: center;
  font-size: var(--fz-body-sm);
  color: var(--muted);
  margin-top: 16px;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
}
.tier-card.is-featured { border: 1px solid var(--orange); }
.tier-card .tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: var(--fz-micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.tier-card .tier-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h4);
  color: var(--ink);
  margin-bottom: 4px;
}
.tier-card .tier-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--ink);
  margin-bottom: 4px;
}
.tier-card .tier-desc { font-size: var(--fz-body-sm); color: var(--muted); margin-bottom: 16px; }
.tier-card .btn { margin-top: auto; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 32px;
}
@media (max-width: 960px) { .tier-grid { grid-template-columns: 1fr; } }

/* =============================================================
   FAQ
   ============================================================= */

.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h4);
  line-height: var(--lh-h4);
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 24px;
  color: var(--orange);
  transition: transform var(--d-mid) var(--ease-out);
}
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--d-slow) var(--ease-out);
  color: var(--muted);
}
.faq-body-inner { padding: 0 0 24px; max-width: 720px; }

/* =============================================================
   CTA BANNER
   ============================================================= */

.cta-banner {
  background: var(--ink);
  padding: var(--section-pad) 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fz-h1);
  line-height: var(--lh-h1);
  color: var(--on-dark);
  max-width: 720px;
  margin: 0 auto 24px;
}
.cta-banner p {
  color: var(--on-dark-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}
.cta-banner .micro-link {
  margin-top: 16px;
  font-size: var(--fz-body-sm);
  color: var(--on-dark-muted);
}
.cta-banner .micro-link a { color: var(--orange); border-bottom: 1px solid transparent; }
.cta-banner .micro-link a:hover { border-bottom-color: var(--orange); }

/* =============================================================
   ARTICLE ROW (insights index)
   ============================================================= */

.article-row {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: background var(--d-mid);
}
.article-row:first-of-type { border-top: none; }
.article-row:hover { background: var(--cream-warm); }
.article-row:hover h3 { color: var(--orange); }

.article-row .num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  color: var(--muted);
}
.article-row .topic-tag {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.article-row h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fz-h3);
  line-height: var(--lh-h3);
  margin-bottom: 12px;
  color: var(--ink);
  transition: color var(--d-mid);
}
.article-row .excerpt {
  font-size: var(--fz-body-lg);
  line-height: var(--lh-body-lg);
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 640px;
}
.article-row .meta {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-row .read-cta {
  text-align: right;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-body-sm);
  color: var(--ink);
  align-self: center;
}

@media (max-width: 768px) {
  .article-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .article-row .read-cta { text-align: left; }
}

/* Stacked variant */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--d-mid);
  height: 100%;
}
.article-card:hover { border-color: var(--ink); }
.article-card:hover h3 { color: var(--orange); }
.article-card .meta {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.article-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fz-h3);
  line-height: var(--lh-h3);
  margin-bottom: 12px;
  color: var(--ink);
  transition: color var(--d-mid);
}
.article-card .excerpt {
  font-size: var(--fz-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
}
.article-card .read-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-body-sm);
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }

/* =============================================================
   ARTICLE PAGE
   ============================================================= */

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 32px;
}
.article .article-meta {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.article h1 {
  font-family: var(--font-display);
  font-size: var(--fz-h1);
  line-height: var(--lh-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
}
.article .article-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fz-body-lg);
  line-height: var(--lh-body-lg);
  color: var(--ink);
  margin-bottom: 32px;
}
.article hr.article-rule { border: 0; border-top: 1px solid var(--rule); margin: 32px 0 48px; }
.article h2 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  margin: 64px 0 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.article h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h4);
  line-height: var(--lh-h4);
  margin: 32px 0 12px;
  color: var(--ink);
}
.article p { margin-bottom: 24px; }
.article ul, .article ol { margin: 0 0 24px 0; padding: 0; }
.article ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  list-style: none;
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 12px;
  background: url('../img/brand/divider-hex-orange.svg') no-repeat center / contain;
}
.article ol { counter-reset: list; padding-left: 0; list-style: none; }
.article ol li {
  counter-increment: list;
  position: relative;
  padding: 6px 0 6px 36px;
}
.article ol li::before {
  content: counter(list, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--orange);
  font-size: var(--fz-body-sm);
}
.article blockquote {
  background: var(--cream-warm);
  border-left: 4px solid var(--orange);
  padding: 32px 40px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: var(--ink);
}
.article a {
  color: var(--orange-deep);
  border-bottom: 1px solid var(--orange);
  transition: color var(--d-mid), border-color var(--d-mid);
}
.article a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.article strong { font-weight: 700; }

.article-cta-card {
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  margin: 48px 0;
}
.article-cta-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fz-h3);
  line-height: var(--lh-h3);
  margin: 0 0 12px;
  color: var(--ink);
}
.article-cta-card p { margin-bottom: 20px; color: var(--ink); }

.article-byline {
  font-size: var(--fz-body-sm);
  color: var(--muted);
  margin: 32px 0;
}
.article-byline strong { color: var(--ink); font-weight: 700; }

.article-more h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin: 64px 0 24px;
}
.article-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .article-more-grid { grid-template-columns: 1fr; } }

/* =============================================================
   GET STARTED
   ============================================================= */

.start-layout {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 64px;
  padding: 64px 0;
  align-items: start;
}
.start-steps { display: flex; flex-direction: column; }
.start-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.start-step:first-of-type { border-top: none; padding-top: 0; }
.start-step .step-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.start-step h4 { margin-bottom: 6px; }
.start-step p { color: var(--muted); font-size: var(--fz-body-sm); line-height: var(--lh-body-sm); }

.founder-quote {
  margin: 48px 0 0;
  padding: 32px;
  background: var(--cream-warm);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.founder-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fz-body-lg);
  line-height: var(--lh-body-lg);
  color: var(--ink);
  margin-bottom: 16px;
}
.founder-quote cite {
  font-style: normal;
  font-size: var(--fz-body-sm);
  font-weight: 700;
  color: var(--ink);
}
.founder-quote cite span { font-weight: 400; color: var(--muted); }

.payment-card {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.payment-card .eyebrow { margin-bottom: 8px; }
.payment-card .price-meta { font-size: var(--fz-body-sm); color: var(--muted); margin-top: 8px; }
.payment-card hr { border: 0; border-top: 1px solid var(--rule); margin: 24px 0; }
.payment-card .pay-list-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: var(--ink);
}
.payment-card .btn { margin-top: 24px; }
.payment-card .pay-secure {
  margin-top: 16px;
  font-size: var(--fz-micro);
  color: var(--muted);
  text-align: center;
}
.payment-card .pay-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-size: var(--fz-body-sm);
  color: var(--muted);
}
.payment-card .pay-foot a { color: var(--orange-deep); font-weight: 600; }

@media (max-width: 1023px) {
  .start-layout { grid-template-columns: 1fr; gap: 32px; }
  .payment-card { position: static; order: -1; }
}

/* =============================================================
   QUESTIONNAIRE
   ============================================================= */

.qform-wrap { max-width: 880px; margin: 48px auto 96px; padding: 0 24px; }

.qform-progress {
  position: sticky;
  top: 73px;
  z-index: 50;
  background: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.qform-progress-track {
  width: 100%;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.qform-progress-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width var(--d-slow) var(--ease-out);
}
.qform-progress-meta {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: var(--fz-micro);
  color: var(--muted);
  text-align: right;
}

.qform-meta-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: var(--fz-body-sm);
  color: var(--muted);
}
.qform-meta-pills .sep { color: var(--rule); }

.qform-block {
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.qform-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.qform-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--orange);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  flex-shrink: 0;
}
.qform-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fz-h3);
  line-height: var(--lh-h3);
  color: var(--ink);
}
.qform-row + .qform-row { margin-top: 20px; }

.qform-submit-block {
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 32px;
}
.qform-submit-block p { margin-bottom: 24px; color: var(--ink); }
.qform-submit-block .micro { color: var(--muted); margin-top: 16px; display: block; }

.choices.tight { gap: 8px; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }

.scale-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.scale-end { font-size: var(--fz-body-sm); color: var(--muted); flex-shrink: 0; }
.scale-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--fz-body-sm);
  transition: border-color var(--d-mid), background var(--d-mid);
  flex: 1;
  min-width: 60px;
}
.scale-opt:hover { border-color: var(--ink); }
.scale-opt:has(input:checked) { border-color: var(--orange); background: var(--cream-warm); }

/* =============================================================
   THANK YOU
   ============================================================= */

.ty-section { padding: 96px 0 128px; background: var(--cream); }
.ty-inner { max-width: 640px; margin: 0 auto; padding: 0 32px; text-align: center; }
.ty-hex-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-hex-check svg.hex { position: absolute; inset: 0; width: 100%; height: 100%; }
.ty-hex-check svg.tick { width: 36px; height: 36px; color: var(--orange); position: relative; z-index: 1; }

.ty-section h1 { margin-bottom: 16px; color: var(--ink); }
.ty-section .lede { color: var(--ink); margin-bottom: 48px; }

.ty-next {
  text-align: left;
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
}
.ty-next-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.ty-next-item:first-child { border-top: none; padding-top: 0; }
.ty-next-item:last-child { padding-bottom: 0; }
.ty-next-item .num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--orange);
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: var(--radius);
}
.ty-next-item h4 { margin-bottom: 4px; }
.ty-next-item p { color: var(--muted); font-size: var(--fz-body-sm); line-height: var(--lh-body-sm); }

.ty-foot { font-size: var(--fz-body-sm); color: var(--muted); margin: 24px 0; }
.ty-foot a { color: var(--orange-deep); font-weight: 600; }

/* =============================================================
   CONTACT
   ============================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  padding: 64px 0;
  align-items: start;
}
.contact-info-card {
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { margin-bottom: 12px; }
.contact-info-card > p { color: var(--muted); margin-bottom: 24px; }
.contact-detail {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.contact-detail svg { width: 24px; height: 24px; color: var(--ink); margin-top: 2px; }
.contact-detail-label {
  font-size: var(--fz-h5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 700;
}
.contact-detail-value { color: var(--ink); font-weight: 500; }
.contact-detail-value a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.contact-detail-value a:hover { border-bottom-color: var(--orange); color: var(--orange-deep); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.contact-form-card h3 { margin-bottom: 24px; }

@media (max-width: 1023px) { .contact-layout { grid-template-columns: 1fr; gap: 32px; } }

/* =============================================================
   FOOTER
   ============================================================= */

footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 2fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand img {
  height: auto;
  width: auto;
  max-width: 440px;
  max-height: 180px;
  margin-bottom: 24px;
  object-fit: contain;
  display: block;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 8px;
}
@media (max-width: 1023px) {
  .footer-brand img { max-width: 360px; max-height: 140px; }
}
.footer-brand p {
  color: var(--on-dark-muted);
  font-size: var(--fz-body-sm);
  line-height: var(--lh-body-sm);
  max-width: 300px;
  margin-bottom: 16px;
}
.footer-email { font-size: var(--fz-body-sm); color: var(--on-dark); }
.footer-email a { color: var(--orange); border-bottom: 1px solid transparent; }
.footer-email a:hover { border-bottom-color: var(--orange); }

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fz-h5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-dark);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--on-dark-muted);
  font-size: var(--fz-body-sm);
  transition: color var(--d-mid);
}
.footer-col ul li a:hover { color: var(--on-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--on-dark-rule);
  font-size: var(--fz-body-sm);
  color: var(--on-dark-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .footer-tagline {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fz-micro);
  letter-spacing: 0.08em;
  color: var(--on-dark-subtle);
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   ANIMATIONS
   ============================================================= */

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--d-reveal) var(--ease-out), transform var(--d-reveal) var(--ease-out);
}
.animate-in.is-visible { opacity: 1; transform: none; }
.animate-in.delay-1 { transition-delay: 80ms; }
.animate-in.delay-2 { transition-delay: 160ms; }
.animate-in.delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-in { opacity: 1; transform: none; }
}

/* =============================================================
   UTILITIES
   ============================================================= */

.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
