/* =========================================================================
   Pointillist — design system
   Concept: "Connect the dots." Systems built from precise individual points.
   ========================================================================= */

:root {
  /* ---- Color: cool charcoal canvas + mint accent ---- */
  --bg:         oklch(0.165 0.013 250);
  --bg-elev:    oklch(0.205 0.015 250);
  --bg-elev-2:  oklch(0.245 0.016 250);
  --line:       oklch(1 0 0 / 0.10);
  --line-soft:  oklch(1 0 0 / 0.06);

  --text:       oklch(0.965 0.005 250);
  --text-dim:   oklch(0.78 0.012 250);
  --text-faint: oklch(0.60 0.013 250);

  --accent:     oklch(0.84 0.135 178);   /* mint-teal */
  --accent-deep:oklch(0.72 0.13 180);
  --accent-2:   oklch(0.84 0.13 268);     /* periwinkle, matched L/C */
  --accent-ink: oklch(0.18 0.02 200);     /* dark text on accent fills */
  --accent-glow:oklch(0.84 0.135 178 / 0.30);

  /* ---- Type ---- */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* ---- Spacing / radius ---- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --shadow: 0 1px 0 oklch(1 0 0 / 0.04) inset, 0 24px 60px -28px oklch(0 0 0 / 0.7);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Light theme override (tweakable) */
:root[data-theme="light"] {
  --bg:         oklch(0.975 0.006 250);
  --bg-elev:    oklch(0.995 0.003 250);
  --bg-elev-2:  oklch(0.955 0.008 250);
  --line:       oklch(0.2 0.02 250 / 0.14);
  --line-soft:  oklch(0.2 0.02 250 / 0.08);
  --text:       oklch(0.22 0.02 255);
  --text-dim:   oklch(0.42 0.02 255);
  --text-faint: oklch(0.55 0.02 255);
  --accent:     oklch(0.62 0.14 182);
  --accent-deep:oklch(0.55 0.14 184);
  --accent-2:   oklch(0.58 0.15 268);
  --accent-ink: oklch(0.99 0.01 200);
  --accent-glow:oklch(0.62 0.14 182 / 0.22);
  --shadow: 0 1px 0 oklch(1 0 0 / 0.6) inset, 0 24px 50px -30px oklch(0.4 0.05 255 / 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle dotted texture overlay tying to pointillism */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(var(--line-soft) 1px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 30%, transparent 75%);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  position: relative;
  z-index: 1;
}

/* ---- Kicker / mono labels ---- */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

/* ---- Buttons ---- */
.btn {
  --bg-btn: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 var(--accent-glow), 0 12px 30px -12px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px var(--accent-glow), 0 18px 40px -14px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.95rem;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0; background: var(--accent); transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding-top: clamp(120px, 17vh, 180px);
  padding-bottom: clamp(60px, 9vh, 110px);
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.9;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg-elev) 60%, transparent);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-badge b { color: var(--text); font-weight: 600; }
.hero-badge span:not(.badge-dot) { white-space: nowrap; }
.badge-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
}
.hero-cert-logos { display: inline-flex; align-items: center; gap: 4px; }
.hero-cert-logo { width: 14px; height: 14px; flex: none; filter: brightness(0) invert(1); opacity: 0.75; }
.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--text-dim);
  max-width: 30ch;
  margin-bottom: 18px;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px 10px;
  margin-bottom: 34px;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-faint);
}
.hero-tags span { display: inline-flex; align-items: center; gap: 8px; }
.hero-tags span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* hero diagram (right) */
.hero-diagram {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.hero-diagram svg { width: 100%; height: 100%; overflow: visible; }
.hero-diagram .flow-node circle {
  fill: color-mix(in oklab, var(--bg-elev-2) 88%, transparent);
  stroke: var(--line);
  stroke-width: 1.5;
}
.hero-diagram .flow-node text { fill: var(--text-dim); font-family: var(--font-mono); }
.hero-diagram .flow-edges path { stroke: url(#edge); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-diagram { max-width: 460px; margin: 8px auto 0; }
  .hero .lede { max-width: none; }
}

/* ===================== SECTION SCAFFOLD ===================== */
section { position: relative; z-index: 1; }
.section { padding-block: clamp(72px, 11vh, 130px); }
.section-head { max-width: 64ch; margin-bottom: clamp(40px, 6vh, 64px); }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin-top: 16px; }
.section-head p { color: var(--text-dim); font-size: 1.1rem; margin-top: 18px; max-width: 52ch; }

/* ---- Certifications strip ---- */
.certs {
  border-bottom: 1px solid var(--line-soft);
  padding-block: 22px;
  background: color-mix(in oklab, var(--bg-elev) 30%, transparent);
}
.certs-inner {
  display: flex; align-items: center; gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap; justify-content: center;
}
.certs-label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-faint); white-space: nowrap; flex: none;
}
.certs-list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; justify-content: center; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px 7px 9px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--bg-elev);
  cursor: default;
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.cert-chip:hover {
  border-color: var(--brand, var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand, var(--accent)) 18%, transparent);
}
.cert-logo {
  width: 18px; height: 18px; flex: none;
  filter: brightness(0) invert(0.88);
  transition: filter .22s;
}
.cert-chip:hover .cert-logo { filter: none; }
.cert-text { font-size: 0.8rem; color: var(--text-dim); font-family: var(--font-body); line-height: 1; white-space: nowrap; }
.cert-text b { color: var(--text); font-weight: 600; }

/* ---- Trust strip ---- */
.trust {
  border-block: 1px solid var(--line-soft);
  padding-block: 30px;
  background: color-mix(in oklab, var(--bg-elev) 40%, transparent);
}
.trust-inner { display: flex; align-items: center; gap: clamp(20px, 5vw, 60px); flex-wrap: wrap; justify-content: center; }
.trust-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); }
.trust-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }
.tool-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 0.84rem; color: var(--text-dim);
  letter-spacing: 0.01em;
}
.tool-chip .d { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); flex: none; }
.tool-chip:nth-child(even) .d { background: var(--accent); }

/* ---- Problem block ---- */
.problem-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.problem-list { display: grid; gap: 14px; }
.problem-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--bg-elev);
  transition: border-color .25s, transform .25s var(--ease);
}
.problem-item:hover { border-color: var(--line); transform: translateX(4px); }
.problem-item .x { font-family: var(--font-mono); color: var(--accent-2); font-size: 1.1rem; line-height: 1.5; flex: none; }
.problem-item p { color: var(--text-dim); }
.problem-item b { color: var(--text); font-weight: 600; }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }

/* ---- Services ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  padding: 30px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at var(--mx, 50%) -10%, var(--accent-glow), transparent 70%);
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: var(--line); }
.card:hover::after { opacity: 1; }
.card-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.1em; }
.card-icon { margin: 14px 0 20px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 1rem; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* ---- AI section ---- */
.kicker-2 { color: var(--accent-2); }
.kicker-2::before { background: var(--accent-2); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent-2) 32%, transparent); }
.section-head h2 .accent-2 { color: var(--accent-2); }
.ai-cards { grid-template-columns: repeat(2, 1fr); }
.card-ai { padding: 32px 32px 34px; }
.card-ai::after {
  background: radial-gradient(420px 200px at var(--mx, 50%) -10%, color-mix(in oklab, var(--accent-2) 26%, transparent), transparent 70%);
}
.ai-spark {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: color-mix(in oklab, var(--accent-2) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent-2) 30%, transparent);
}
@media (max-width: 820px) { .ai-cards { grid-template-columns: 1fr; } }

/* ---- Process / connect the dots ---- */
.process { background: var(--bg-elev); border-block: 1px solid var(--line-soft); }
.process-track { position: relative; margin-top: 20px; }
.process-line { position: absolute; left: 0; right: 0; top: 34px; height: 2px; background: var(--line); overflow: hidden; }
.process-line .fill { position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 1.1s var(--ease); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 0; }
.step-node {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 1.2rem; color: var(--text-faint);
  position: relative; z-index: 2;
  transition: border-color .4s var(--ease), color .4s, box-shadow .4s, background .4s;
}
.step.lit .step-node {
  border-color: var(--accent); color: var(--accent-ink); background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-glow);
}
.step h3 { font-size: 1.18rem; margin: 22px 0 8px; }
.step p { color: var(--text-dim); font-size: 0.98rem; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .process-line { display: none; }
}
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---- Packages ---- */
.pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pkg {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  background: var(--bg-elev);
  padding: 32px 30px 34px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.pkg:hover { transform: translateY(-6px); border-color: var(--line); }
.pkg.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 9%, var(--bg-elev)), var(--bg-elev) 40%);
  box-shadow: 0 0 0 1px var(--accent), 0 30px 70px -34px var(--accent-glow);
}
.pkg-flag {
  position: absolute; top: -13px; left: 30px;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink);
  padding: 5px 12px; border-radius: 999px; font-weight: 700;
}
.pkg-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; letter-spacing: -0.02em; }
.pkg-tag { color: var(--text-faint); font-size: 0.95rem; margin-top: 4px; min-height: 2.6em; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 4px; }
.pkg-price .amt { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; letter-spacing: -0.03em; }
.pkg-price .per { color: var(--text-faint); font-size: 0.92rem; font-family: var(--font-mono); }
.pkg-rule { height: 1px; background: var(--line-soft); margin: 22px 0; }
.pkg-feats { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; flex: 1; }
.pkg-feats li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); font-size: 0.98rem; }
.pkg-feats .tick { flex: none; margin-top: 3px; color: var(--accent); }
.pkg .btn { width: 100%; justify-content: center; }
.pkg.featured .btn-ghost { border-color: var(--accent); color: var(--accent); }
@media (max-width: 920px) { .pkgs { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-portrait {
  aspect-ratio: 4/5; border-radius: var(--r-lg); border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, var(--bg-elev-2) 0 12px, var(--bg-elev) 12px 24px);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.about-portrait .ph { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.05em; text-align: center; padding: 0 16px; }
.about h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 14px 0 20px; }
.about p { color: var(--text-dim); font-size: 1.08rem; margin-bottom: 16px; }
.about p strong { color: var(--text); font-weight: 600; }
.about-sign { font-family: var(--font-display); font-size: 1.2rem; margin-top: 6px; color: var(--text); }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } .about-portrait { max-width: 280px; } }

/* ---- Contact ---- */
.contact { background: var(--bg-elev); border-top: 1px solid var(--line-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact-aside h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 16px 0 18px; }
.contact-aside p { color: var(--text-dim); font-size: 1.08rem; margin-bottom: 28px; }
.contact-call {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg); margin-top: 8px;
}
.contact-call .cc-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex: none; }
.contact-call b { display: block; color: var(--text); }
.contact-call span { font-size: 0.92rem; color: var(--text-faint); }

form .field { margin-bottom: 18px; }
form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: 0.02em; }
form input, form textarea, form select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
form input::placeholder, form textarea::placeholder { color: var(--text-faint); }
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
form textarea { resize: vertical; min-height: 120px; }
form .field.invalid input, form .field.invalid textarea { border-color: oklch(0.7 0.17 25); }
form .err { display: none; color: oklch(0.78 0.15 25); font-size: 0.82rem; margin-top: 6px; font-family: var(--font-mono); }
form .field.invalid .err { display: block; }
.form-note { font-size: 0.85rem; color: var(--text-faint); margin-top: 6px; }
.form-success {
  display: none; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: var(--r-md);
  background: color-mix(in oklab, var(--accent) 16%, var(--bg));
  border: 1px solid var(--accent); color: var(--text); margin-top: 16px; font-size: 0.96rem;
}
.form-success.show { display: flex; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.footer { padding-block: 54px 40px; border-top: 1px solid var(--line-soft); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer .brand { margin-bottom: 14px; }
.footer-tagline { color: var(--text-faint); font-size: 0.95rem; max-width: 30ch; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; font-weight: 500; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.95rem; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-faint); font-family: var(--font-mono); }

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