/* ============================================================
   UPTIME AUTOMATION — one-page site
   Modeled on Dribbble's design language:
   Mona Sans · near-black #0d0c22 · white canvas · 8px radii
   · yellow text-selection · generous whitespace.
   Accent shifted to "uptime green" per brand.
   ============================================================ */

/* ---------- Fonts ---------- */
/* Satoshi (variable) via Fontshare — premium geometric — system fallback. */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li,
figure, blockquote, section, header, footer, nav, button, input, label, form {
  margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline;
}
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; cursor: pointer; font-family: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* ink — charcoal, not pure black (Awwwards) */
  --ink:        #222222;
  --ink-2:      #565663;
  --ink-3:      #6a6a76;   /* darkened to pass WCAG AA (≈5:1) on light */
  --ink-soft:   #9a9aa4;   /* only for dark surfaces (passes there); on light, use --ink-3 */

  /* surfaces — soft grey canvas, white cards float on top */
  --bg:         #f8f8f8;
  --surface:    #ffffff;
  --bg-soft:    #ededed;
  --bg-2:       #f2f2f2;
  --line:       #e6e6e6;
  --line-2:     #dcdcdc;

  /* uptime green accent */
  --green:      #00b86b;
  --green-600:  #00a15f;
  --green-ink:  #0a7d50;      /* AA text on white */
  --green-soft: #eafaf2;
  --green-glow: rgba(0, 184, 107, .16);

  /* misc */
  --amber-sel:  rgba(255, 218, 121, .5);
  --shadow-sm:  0 1px 2px rgba(13,12,34,.04), 0 2px 8px rgba(13,12,34,.05);
  --shadow-md:  0 6px 24px -6px rgba(13,12,34,.12), 0 2px 8px rgba(13,12,34,.06);
  --shadow-lg:  0 24px 60px -20px rgba(13,12,34,.22), 0 8px 24px -12px rgba(13,12,34,.12);

  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;

  --container:  1180px;
  --gutter:     clamp(20px, 5vw, 40px);

  --btn-bg:       #222222;
  --btn-bg-hover: #000000;

  --nav-h: 68px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Base ---------- */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
::selection { background: var(--amber-sel); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(84px, 13vw, 156px); }
.section--tight { padding-block: clamp(60px, 9vw, 104px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--green-ink);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px var(--green-glow);
}

/* centered section headers (uppit-style cadence) */
.section-head { max-width: 680px; margin: 0 auto clamp(48px, 7vw, 84px); text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 750; line-height: 1.05; letter-spacing: -.025em;
  margin-top: 18px; text-wrap: balance;
}
.section-head p { margin: 18px auto 0; max-width: 52ch; font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink-2); }

.lead { font-size: clamp(1.06rem, 2vw, 1.24rem); color: var(--ink-2); line-height: 1.62; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding-inline: 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--btn-bg); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--btn-bg-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--sm { height: 42px; padding-inline: 18px; font-size: 14px; }
.btn--green { background: var(--green); color: #04361f; }
.btn--green:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 12px 30px -10px var(--green-glow); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--ink);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.arrow-link:hover { color: var(--green-ink); gap: 11px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.85); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.02em; font-size: 18px; }
.brand__logo { height: 30px; width: auto; flex: none; display: block; }
.brand__dot {
  width: 11px; height: 11px; border-radius: 50%; background: var(--green);
  position: relative; flex: none;
}
.brand__dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--green); opacity: .6;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.7); opacity: .7; } 100% { transform: scale(1.9); opacity: 0; } }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .16s; }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; }
.nav__toggle svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 92px)); padding-bottom: clamp(60px, 8vw, 100px); position: relative; }

/* ---- constellation background (full-bleed, behind hero content) ---- */
.hero__const {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw;
  transform: translateX(-50%); z-index: 0; pointer-events: none; overflow: hidden;
}
.hero__net {
  position: absolute; top: 50%; left: 50%; width: 118%; height: 118%;
  transform: translate(-50%, -50%) translate(var(--px, 0px), var(--py, 0px));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hero__net .field { transform-origin: center; animation: netDrift 26s ease-in-out infinite alternate; }
@keyframes netDrift { from { transform: translate(-14px, -8px) scale(1.02); } to { transform: translate(14px, 10px) scale(1.05); } }
.hero__net .ln { stroke: url(#netlg); stroke-width: 1; opacity: .2; animation: netLine 7s ease-in-out infinite; }
@keyframes netLine { 0%,100% { opacity: .1; } 50% { opacity: .28; } }
.hero__net .pulse { stroke: var(--green); stroke-width: 1.4; stroke-dasharray: 6 220; opacity: .5; animation: netFlow 4.5s linear infinite; }
@keyframes netFlow { from { stroke-dashoffset: 226; } to { stroke-dashoffset: 0; } }
.hero__net .nd { fill: var(--green); opacity: .7; animation: netTwinkle 5.5s ease-in-out infinite; }
@keyframes netTwinkle { 0%,100% { opacity: .32; } 50% { opacity: .9; } }
.hero__net .halo { fill: var(--green); opacity: .1; animation: netHalo 5.5s ease-in-out infinite; }
@keyframes netHalo { 0%,100% { opacity: .04; } 50% { opacity: .15; } }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(50px); z-index: 0; pointer-events: none; }
.hero__glow.a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(0,184,107,.18), transparent 65%); top: -140px; right: -60px; animation: netFloatA 18s ease-in-out infinite alternate; }
.hero__glow.b { width: 440px; height: 440px; background: radial-gradient(circle, rgba(20,190,150,.14), transparent 65%); bottom: -160px; left: -40px; animation: netFloatB 22s ease-in-out infinite alternate; }
@keyframes netFloatA { to { transform: translate(-40px, 30px); } }
@keyframes netFloatB { to { transform: translate(40px, -30px); } }

/* ============================================================
   VIDEO HERO (home) — greenery clip, loop + zoom
   ============================================================ */
.vhero { position: relative; width: 100%; min-height: 100vh; min-height: 100svh; overflow: hidden; background: #e6ebdf; }
.vhero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: vheroZoom 22s ease-in-out infinite alternate; will-change: transform; }
@keyframes vheroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.2); } }
.vhero__copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: calc(var(--nav-h) + clamp(40px, 9vh, 96px)) clamp(16px, 5vw, 24px) 0; }
.vhero__copy h1 { margin: 0; font-weight: 800; line-height: .98; letter-spacing: -.035em; font-size: clamp(2.1rem, 6vw, 5rem); max-width: 15ch; color: #2f5238; text-wrap: balance; }
.vhero__copy h1 .accent { color: #7ba888; }
.vhero__copy p { margin: 26px 0 0; max-width: 34ch; color: #3e5340; font-weight: 500; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.55; }
.vhero__feature { position: absolute; left: clamp(16px, 5vw, 40px); right: clamp(16px, 5vw, 40px); bottom: clamp(24px, 5vh, 40px); z-index: 2; max-width: 24rem; }
.vhero__ey { display: flex; align-items: center; gap: 8px; color: #3d5638; font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.vhero__ey svg { width: 16px; height: 16px; }
.vhero__feature p { margin: 0 0 20px; color: rgba(61,86,56,.92); font-weight: 500; font-size: 12.5px; line-height: 1.55; max-width: 21rem; }
.vhero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.vhero__btn { display: inline-flex; background: #3d5638; color: #fff; font-weight: 600; font-size: .9rem; padding: 11px 22px; border-radius: 999px; text-decoration: none; transition: background .18s; }
.vhero__btn:hover { background: #2d4228; }
.vhero__link { color: #3d5638; font-weight: 600; font-size: .9rem; text-decoration: none; }
.vhero__link:hover { opacity: .8; }
.vhero__play { position: absolute; right: clamp(16px, 5vw, 40px); bottom: clamp(24px, 5vh, 40px); z-index: 2; display: flex; align-items: center; gap: 8px; color: #fff; font-size: .9rem; text-decoration: none; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.vhero__play .pb { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 999px; background: rgba(255,255,255,.25); backdrop-filter: blur(4px); }
.vhero__play .t { color: rgba(255,255,255,.7); }
@media (min-width: 640px) {
  .vhero__feature { right: auto; }
  .vhero__ey { color: rgba(255,255,255,.95); }
  .vhero__feature p { color: rgba(255,255,255,.85); }
  .vhero__btn { background: #fff; color: #1f2a1d; }
  .vhero__btn:hover { background: rgba(255,255,255,.9); }
  .vhero__link { color: #fff; }
}
@media (max-width: 639px) { .vhero__play { display: none; } }
@media (prefers-reduced-motion: reduce) { .vhero__video { animation: none; } }

.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 11px; border-radius: 999px;
  background: var(--green-soft); border: 1px solid #cdeede;
  font-size: 13px; font-weight: 600; color: var(--green-ink);
  margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s steps(1) infinite; }
@keyframes blink { 0%,60% { opacity: 1; } 61%,100% { opacity: .3; } }

.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.7rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -.035em;
}
.hero h1 .hl { color: var(--green-ink); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .09em;
  background: var(--green); border-radius: 2px; opacity: .55;
}
.hero__sub { margin-top: 26px; max-width: 560px; font-size: clamp(1.06rem, 2vw, 1.22rem); color: var(--ink-2); }
.hero__cta { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__micro { margin-top: 16px; font-size: 14.5px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero__micro svg { width: 16px; height: 16px; color: var(--green-ink); flex: none; }

.hero__proof {
  margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; gap: clamp(24px, 4vw, 44px); flex-wrap: wrap;
}
.stat__num { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 780; letter-spacing: -.03em; line-height: 1; }
.stat__num .u { color: var(--green-ink); }
.stat__label { margin-top: 6px; font-size: 13.5px; color: var(--ink-3); max-width: 150px; }

/* ---- Hero live-status panel ---- */
.status-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.status-panel__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.status-panel__bar .dots { display: flex; gap: 6px; }
.status-panel__bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.status-panel__title { font-size: 13px; font-weight: 600; color: var(--ink-3); margin-left: 6px; }
.status-panel__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--green-ink);
  background: var(--green-soft); padding: 4px 9px; border-radius: 999px;
}
.status-panel__live .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.6s steps(1) infinite; }
.status-panel__body { padding: 20px; }
.status-hero {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px; border-radius: var(--radius-sm); background: var(--green-soft); margin-bottom: 18px;
}
.status-hero__num { font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; color: var(--green-ink); line-height: 1; }
.status-hero__lab { font-size: 13px; color: var(--ink-2); margin-top: 4px; }
.spark { width: 116px; height: 44px; }
.spark path.line { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.mon-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}
.mon-row:last-child { border-bottom: 0; }
.mon-row__ico { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-soft); display: grid; place-items: center; flex: none; }
.mon-row__ico svg { width: 17px; height: 17px; color: var(--ink-2); }
.mon-row__name { font-size: 14.5px; font-weight: 600; }
.mon-row__meta { font-size: 12.5px; color: var(--ink-3); }
.mon-row__stat { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--green-ink); }
.mon-row__stat .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---- marquee logos strip ---- */
.trust { border-block: 1px solid var(--line); background: var(--bg-2); }
.trust__inner { display: flex; align-items: center; gap: 18px; padding-block: 20px; flex-wrap: wrap; justify-content: center; }
.trust__label { font-size: 13px; font-weight: 600; color: var(--ink-3); letter-spacing: .03em; }
.trust__logos { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; justify-content: center; }
.trust__logos span { font-size: 15px; font-weight: 650; color: var(--ink-3); letter-spacing: -.01em; }

/* ============================================================
   SERVICES — bento
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.svc__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; margin-bottom: 20px; }
.svc__ico svg { width: 23px; height: 23px; color: var(--ink); }
.svc h3 { font-size: 1.24rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 9px; }
.svc p { font-size: 15.5px; color: var(--ink-2); line-height: 1.58; }
.svc__num { position: absolute; top: 22px; right: 26px; font-size: 13px; font-weight: 600; color: var(--ink-3); }

/* small "we also build the site" note under the services section */
.svc__also { text-align: center; margin-top: 24px; font-size: 15px; color: var(--ink-2); }
.svc__also a { color: var(--green-ink); font-weight: 600; white-space: nowrap; }
.svc__also a:hover { text-decoration: underline; }

/* featured reliability card */
.svc--feature {
  grid-column: 1 / -1; background: var(--ink); color: #fff; border-color: var(--ink);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; padding: 40px;
}
.svc--feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc--feature .svc__ico { background: rgba(255,255,255,.08); }
.svc--feature .svc__ico svg { color: var(--green); }
.svc--feature h3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: 12px; }
.svc--feature p { color: #c7c6d4; font-size: 16.5px; }
.svc--feature .tagline {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 750; letter-spacing: -.025em; line-height: 1.2;
}
.svc--feature .tagline .u { color: var(--green); }
.svc--feature__right { border-left: 1px solid rgba(255,255,255,.12); padding-left: 32px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--bg-soft); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding-top: 30px;
}
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--line-2);
}
.step.is-free::before { background: var(--green); }
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1.5px solid var(--line-2);
  font-weight: 700; font-size: 15px; margin-bottom: 18px;
}
.step.is-free .step__n { border-color: var(--green); color: var(--green-ink); }
/* uppit-style process cards */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pcard__ico { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--green); display: grid; place-items: center; color: var(--green-ink); flex: none; }
.pcard__ico svg { width: 23px; height: 23px; }
.pcard__num { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; font-size: 12.5px; font-weight: 700; color: var(--ink-3); flex: none; }
.pcard h3 { font-size: 1.26rem; font-weight: 700; letter-spacing: -.02em; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.pcard__free { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--green-ink); background: var(--green-soft); padding: 3px 8px; border-radius: 6px; }
.pcard__lead { margin-top: 8px; color: var(--green-ink); font-weight: 600; font-size: .98rem; }
.pcard__list { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.pcard__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.pcard__list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: none; margin-top: 7px; }
@media (max-width: 900px) { .pgrid { grid-template-columns: 1fr; } }

.step h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 9px; display: flex; align-items: center; gap: 10px; }
.step__tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--green-ink); background: var(--green-soft); padding: 3px 8px; border-radius: 6px; }
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.58; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.case {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case--wide { grid-column: span 2; }
.case__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.case__client { font-size: 1.35rem; font-weight: 750; letter-spacing: -.02em; }
.case__type { font-size: 14px; color: var(--ink-3); margin-top: 3px; }
.badge {
  flex: none; font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.badge--deployed { background: var(--green); color: #04361f; }
.badge--audit { background: var(--ink); color: #fff; }
.badge--build { background: var(--bg-soft); color: var(--ink-2); border: 1px solid var(--line-2); }

.case__body { display: grid; gap: 16px; }
.case--wide .case__body { grid-template-columns: repeat(3, 1fr); }
.case__block h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3);
  margin-bottom: 7px;
}
.case__block p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.case__block--result p { color: var(--ink); font-weight: 500; }
.case__result-num { color: var(--green-ink); font-weight: 700; }

/* coming soon */
.case--soon { align-items: flex-start; justify-content: center; background: var(--bg-2); border-style: dashed; }
.case--soon .case__client { color: var(--ink-2); }
.soon-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-3); margin-top: 14px; }
.soon-tag svg { width: 15px; height: 15px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.about::before { content: ""; position: absolute; inset: 0; background: url(../assets/ai-circuit.jpg) center/cover; opacity: .3; z-index: 0; pointer-events: none; }
.about .container { position: relative; z-index: 1; }
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.about .eyebrow { color: var(--green); }
.about .eyebrow::before { box-shadow: 0 0 0 4px rgba(0,184,107,.22); }
.about h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 780; letter-spacing: -.025em; line-height: 1.05; margin-top: 16px; }
.about__lead { margin-top: 22px; font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: #b9b8c8; }
.about__copy p { color: #c7c6d4; font-size: 16.5px; margin-bottom: 18px; line-height: 1.62; }
.about__copy p strong { color: #fff; font-weight: 650; }
.about__copy .kicker { color: #fff; font-weight: 650; font-size: 1.18rem; }
.about__cta { margin-top: 26px; }
.tech-strip { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.tech-strip__label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); margin-bottom: 14px; }
.tech-strip__items { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
  font-size: 14px; font-weight: 550; color: #e6e6ee;
}
.tech-chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.about__loc { margin-top: 20px; font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.about__loc svg { width: 16px; height: 16px; color: var(--green); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 64px); align-items: start; }
.faq__aside { position: sticky; top: calc(var(--nav-h) + 30px); }
.faq__aside h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 760; letter-spacing: -.025em; line-height: 1.06; margin-top: 16px; }
.faq__aside p { margin-top: 16px; color: var(--ink-2); }
.faq__list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item--pinned { background: var(--green-soft); border-radius: var(--radius-sm); border: 1px solid #cdeede; margin-bottom: 10px; }
.faq-item--pinned .faq-q { padding-inline: 18px; }
.faq-item--pinned .faq-a { padding-inline: 18px; }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px; justify-content: space-between;
  padding: 22px 4px; text-align: left; font-size: 1.12rem; font-weight: 650; letter-spacing: -.015em; color: var(--ink);
}
.faq-q__pin { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--green-ink); margin-right: auto; margin-left: 10px; }
.faq-q__ico { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: transform .3s var(--ease), border-color .2s, background .2s; }
.faq-q__ico svg { width: 15px; height: 15px; transition: opacity .2s; }
.faq-q__ico .minus { position: absolute; opacity: 0; }
.faq-item.is-open .faq-q__ico { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.faq-a__inner { overflow: hidden; }
.faq-a p { padding: 0 40px 24px 4px; color: var(--ink-2); font-size: 16px; line-height: 1.62; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { text-align: center; }
.final__card {
  background: linear-gradient(rgba(27,27,30,.8), rgba(27,27,30,.9)), url(../assets/ai-network.jpg) center/cover, var(--ink);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 92px) clamp(24px, 5vw, 40px);
  position: relative; overflow: hidden;
}
.final__card::before {
  content: ""; position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; background: radial-gradient(circle, rgba(0,184,107,.28), transparent 60%);
  filter: blur(10px); pointer-events: none;
}
.final__card > * { position: relative; }
.final .eyebrow { color: var(--green); }
.final .eyebrow::before { box-shadow: 0 0 0 4px rgba(0,184,107,.25); }
.final h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 790; letter-spacing: -.03em; line-height: 1.04; margin-top: 18px; }
.final p { max-width: 620px; margin: 20px auto 0; font-size: clamp(1.05rem, 2vw, 1.22rem); color: #c1c0d0; }
.final__cta { margin-top: 34px; display: flex; justify-content: center; }
.final__trust { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 56px 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 32px; align-items: start; }
.footer__brand .brand { font-size: 19px; }
.footer__brand .brand__logo { height: 34px; }
.footer__tag { margin-top: 12px; font-size: 14.5px; color: var(--ink-3); max-width: 260px; }
.footer__col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 14px; }
.footer__col a { display: block; font-size: 15px; color: var(--ink-2); padding-block: 6px; transition: color .16s; }
.footer__col a:hover { color: var(--ink); }
.footer__loc { font-size: 14px; color: var(--ink-3); margin-top: 12px; max-width: 240px; }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   CUSTOM CURSOR (fine-pointer only, JS-driven)
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0; will-change: transform;
}
.cursor-dot { width: 7px; height: 7px; background: var(--green); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--green); background: transparent;
  transition: width .25s var(--ease), height .25s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease),
              opacity .25s var(--ease);
}
.cursor-ring.is-hover { width: 58px; height: 58px; background: var(--green-glow); border-color: transparent; }
.cursor-ring.is-down  { width: 26px; height: 26px; }
/* Only when the custom cursor is live do we hide the native one. */
.has-cursor,
.has-cursor a,
.has-cursor button,
.has-cursor .btn,
.has-cursor .faq-q { cursor: none; }

/* ============================================================
   REVEAL ANIMATION (JS-driven)
   ============================================================ */
/* Hidden state only applies once JS marks the page ready — so if JS
   fails to load, all content stays visible (progressive enhancement). */
.reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .status-panel { max-width: 460px; }
  .about__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .svc--feature { grid-column: span 2; grid-template-columns: 1fr; gap: 24px; }
  .svc--feature__right { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-left: 0; padding-top: 24px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__right .btn--ghost { display: none; }
  .brand__suffix { display: none; }
  .nav__right .btn--primary { padding-inline: 16px; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 24px;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a { padding-block: 10px; font-size: 17px; }
  .services__grid { grid-template-columns: 1fr; }
  .svc--feature { grid-column: span 1; }
  .process__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .case--wide { grid-column: span 1; }
  .case--wide .case__body { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__proof { gap: 20px 32px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS (services / portfolio / faq / contact)
   ============================================================ */

/* active nav link */
.nav__links a.is-active { color: var(--ink); font-weight: 600; }

/* generic page hero (constellation reused from the home hero) */
.page-hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(56px, 9vw, 104px));
  padding-bottom: clamp(48px, 7vw, 88px);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 900; line-height: 1.03; letter-spacing: -.03em; margin-top: 18px; text-wrap: balance; }
.page-hero .lead { margin: 22px auto 0; max-width: 60ch; }
.page-hero__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }

/* grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* service detail card (reuses .svc look with a little more room) */
.svc--lg { padding: 32px; }
.svc--lg h3 { font-size: 1.35rem; }
.svc--lg .svc__wins { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.svc__wins li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: var(--ink-2); }
.svc__wins svg { width: 17px; height: 17px; color: var(--green-ink); flex: none; margin-top: 2px; }

/* case media — real project screenshots (reserves space via aspect-ratio → no CLS) */
.case__media { display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 22px; border: 1px solid var(--line); background: var(--bg-soft); }
.case__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .5s var(--ease); }
.case__media:hover img { transform: scale(1.04); }
.case--work { display: flex; flex-direction: column; }
.case--work .arrow-link { margin-top: auto; padding-top: 14px; }

/* full-width featured service card (Custom AI automation) */
.svc--wide { grid-column: 1 / -1; }
.svc--wide .svc__ico { background: var(--green-soft); }
.svc--wide .svc__ico svg { color: var(--green-ink); }
@media (min-width: 640px) {
  .svc--wide { display: grid; grid-template-columns: 56px 1fr; gap: 26px; align-items: start; padding: 32px; }
  .svc--wide .svc__ico { margin-bottom: 0; }
  .svc--wide .svc__num { top: 26px; }
}

/* contact */
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); }
.contact-card--dark { background: var(--ink); color: #fff; }
.contact-card--dark h3 { color: #fff; }
.contact-card--dark p { color: #c7c6d4; }
.contact-list { margin-top: 22px; display: flex; flex-direction: column; gap: 4px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-row:first-child { border-top: 0; }
.contact-row__ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; }
.contact-row__ico svg { width: 19px; height: 19px; color: var(--green); }
.contact-row__k { font-size: 12.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.contact-row__v { font-size: 15.5px; font-weight: 550; color: #fff; }
.contact-row__v a:hover { color: var(--green); }

.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row label { font-size: 14px; font-weight: 600; color: var(--ink); }
.form-row label .req { color: var(--green-ink); }
.form-row input, .form-row textarea {
  width: 100%; border: 1.5px solid var(--line-2); border-radius: 10px;
  font: inherit; font-size: 15px; background: #fff; color: var(--ink);
  transition: border-color .16s, box-shadow .16s;
}
.form-row input { height: 50px; padding: 0 14px; }
.form-row textarea { min-height: 140px; padding: 12px 14px; resize: vertical; line-height: 1.55; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { margin-top: 6px; font-size: 14px; color: var(--ink-3); }
.form-status { margin-top: 14px; font-size: 14.5px; font-weight: 550; color: var(--green-ink); min-height: 20px; }
.form-status.is-error { color: #c0392b; }
.form-row select {
  width: 100%; height: 50px; padding: 0 12px; border: 1.5px solid var(--line-2); border-radius: 10px;
  font: inherit; font-size: 15px; background: #fff; color: var(--ink); cursor: pointer;
  transition: border-color .16s, box-shadow .16s;
}
.form-row select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 18px; font-size: 14px; color: var(--ink-2); line-height: 1.5; cursor: pointer; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex: none; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .form-row--split { grid-template-columns: 1fr; }
}

/* ============================================================
   SITE FOOTER (big, dark) — adapted from starter, Uptime-branded
   All tokens scoped to .site-footer so nothing leaks to the page.
   ============================================================ */
.site-footer {
  --f-bg: #1b1b1e; --f-ink: #f5f5f4; --f-muted: #9a9aa4; --f-line: #2c2c31;
  --f-accent: var(--green); --f-tile: #26262b;
  --f-maxw: 1180px; --f-pad: var(--gutter);
  width: 100%; background: var(--f-bg); color: var(--f-ink);
  font-family: 'Satoshi', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: clamp(56px, 8vw, 116px) var(--f-pad) 0; overflow: hidden;
}
.site-footer .footer-inner { max-width: var(--f-maxw); margin: 0 auto; }

/* 1. CTA */
.site-footer .footer-cta {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 32px; padding-bottom: clamp(48px, 7vw, 92px); border-bottom: 1px solid var(--f-line);
}
.site-footer .footer-cta h2 { font-weight: 800; letter-spacing: -.03em; line-height: .98; font-size: clamp(2.3rem, 6vw, 5rem); max-width: 16ch; }
.site-footer .footer-cta p { color: var(--f-muted); max-width: 36ch; line-height: 1.55; margin-top: 20px; font-size: 1.05rem; }
.site-footer .say-hello {
  display: inline-flex; align-items: center; gap: 12px; color: var(--f-ink); text-decoration: none;
  font-size: 1.02rem; font-weight: 600; padding: 16px 28px; border: 1px solid var(--f-line);
  border-radius: 100px; white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.site-footer .say-hello .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--f-accent); transition: transform .35s var(--ease); }
.site-footer .say-hello:hover { background: var(--f-accent); border-color: var(--f-accent); color: #04361f; transform: translateY(-2px); }
.site-footer .say-hello:hover .dot { transform: scale(1.6); background: #04361f; }

/* 2. Project marquee (case-study tiles for now; swap for <video> later) */
.site-footer .marquee-track { position: relative; }
.site-footer .marquee { --gap: 20px; display: flex; gap: var(--gap); padding: clamp(32px, 5vw, 56px) 0; width: max-content; animation: footScroll 45s linear infinite; }
.site-footer .marquee:hover { animation-play-state: paused; }
.site-footer .marquee-track::before, .site-footer .marquee-track::after { content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none; }
.site-footer .marquee-track::before { left: 0; background: linear-gradient(90deg, var(--f-bg), transparent); }
.site-footer .marquee-track::after { right: 0; background: linear-gradient(-90deg, var(--f-bg), transparent); }
.site-footer .tile {
  width: clamp(210px, 25vw, 320px); aspect-ratio: 16 / 10; border-radius: 14px;
  background: var(--f-tile); border: 1px solid var(--f-line);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 18px; color: var(--f-ink); text-decoration: none; flex: none;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.site-footer a.tile:hover { border-color: var(--f-accent); transform: translateY(-4px); }
.site-footer .tile__name { font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; }
.site-footer .tile__tag { margin-top: 4px; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--f-muted); }
/* image tiles — real project screenshots */
.site-footer .tile--img { position: relative; padding: 0; overflow: hidden; }
.site-footer .tile--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease); }
.site-footer a.tile--img:hover img { transform: scale(1.05); }
.site-footer .tile__over { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.15) 55%, rgba(0,0,0,0)); }
.site-footer .tile--img .tile__name { color: #fff; }
.site-footer .tile--img .tile__tag { color: rgba(255,255,255,.72); }
@keyframes footScroll { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }

/* 3 & 4. Columns + contact */
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--f-line); border-bottom: 1px solid var(--f-line);
}
.site-footer .col h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--f-muted); font-weight: 600; margin-bottom: 22px; }
.site-footer .col a { display: block; color: var(--f-ink); text-decoration: none; font-size: 1.1rem; padding: 7px 0; width: fit-content; transition: color .25s var(--ease), transform .25s var(--ease); }
.site-footer .col a:hover { color: var(--f-accent); transform: translateX(6px); }
.site-footer .contact p { color: var(--f-muted); line-height: 1.55; margin-bottom: 16px; max-width: 32ch; }
.site-footer .contact .email { font-size: clamp(1.25rem, 2.4vw, 1.85rem); font-weight: 600; letter-spacing: -.02em; padding: 0; }
.site-footer .contact .email:hover { transform: none; color: var(--f-accent); text-decoration: underline; text-underline-offset: 6px; }

/* 5. Giant wordmark — SVG scales to fill the footer width, always fully visible */
.site-footer .wordmark {
  display: block; width: 100%; height: auto; padding: clamp(24px, 4vw, 48px) 0 0; overflow: visible;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.site-footer .wordmark text {
  font-family: 'Satoshi', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; font-size: 100px;
  fill: transparent; stroke: var(--f-muted); stroke-width: 1.2; vector-effect: non-scaling-stroke;
  transition: fill .6s var(--ease), stroke .6s var(--ease);
}
.site-footer .wordmark:hover text { fill: var(--f-ink); stroke: var(--f-ink); }

/* 6. Baseline */
.site-footer .footer-base {
  display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between; align-items: center;
  padding: 28px 0 36px; color: var(--f-muted); font-size: .9rem;
}
.site-footer .footer-base a { color: var(--f-muted); text-decoration: none; }
.site-footer .footer-base a:hover { color: var(--f-ink); }

.site-footer a:focus-visible, .site-footer .say-hello:focus-visible { outline: 2px solid var(--f-accent); outline-offset: 4px; border-radius: 4px; }

@media (max-width: 860px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .contact { grid-column: 1 / -1; order: -1; margin-bottom: 8px; }
}
@media (max-width: 520px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer .footer-cta { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer .marquee { animation: none; }
}
