/* =====================================================================
   AGERO (BLUE) DESIGN SYSTEM - 00-base.css
   The foundation: design tokens, reset, shared components, utilities, nav.
   A deep-navy agency look with an electric-blue accent and solid (not glassy)
   navy borders. Edit tokens here to re-skin the whole site; never hardcode a
   brand colour in a section file. Typefaces: Rethink Sans + IBM Plex Mono.
   ===================================================================== */

:root {
  /* --- surfaces: a deep near-black NAVY canvas (not pure black) --- */
  --bg:        #00020f;            /* page background (deep navy-black) */
  --bg-soft:   #080b1c;            /* slightly lifted band */
  --panel:     #0a0d1f;            /* nav / translucent panels */
  --card:      #0c1230;            /* default card */
  --card-2:    #131839;            /* raised / active card */
  --card-deep: #00041f;            /* deepest card fill (feature cards) */

  /* --- borders: SOLID navy-blue (the structured, techy signature) --- */
  --border:    #1f275f;
  --border-2:  #232d6b;
  --border-3:  #161c44;            /* darker hairline on deep cards */
  --border-soft: rgba(31,39,95,0.5);

  /* --- brand: electric blue --- */
  --blue:      #4c75ff;            /* primary brand */
  --blue-2:    #1a4fff;            /* deep brand (gradient end, glints) */
  --blue-soft: #3b6bff;
  --grad-blue: linear-gradient(180deg, #4c75ff 0%, #1a4fff 100%);
  --glow:      #2447ff;            /* ambient glow colour */

  /* --- text --- */
  --text:    #ffffff;
  --muted:   #a7adbe;             /* secondary (cool grey) */
  --muted-2: #6b7390;             /* tertiary */

  /* --- geometry --- */
  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 100px;                  /* pills are everywhere in this system */
  --font: "Rethink Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* --------------------------------------------------------------------- */
/* reset                                                                  */
/* --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -0.03em; color: #fff; }

/* --------------------------------------------------------------------- */
/* layout helpers                                                         */
/* --------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding-block: 110px; }   /* generous rhythm */

.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 { font-size: 52px; line-height: 1.06; letter-spacing: -0.04em; font-weight: 600; }
.section__head p { margin-top: 18px; font-size: 18px; color: var(--muted); line-height: 1.55; }

/* --------------------------------------------------------------------- */
/* shared components                                                      */
/* --------------------------------------------------------------------- */

/* eyebrow - a pill label above a heading (navy fill, blue dot) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--pill);
  border: 1px solid var(--border-2);
  background: rgba(19,24,57,0.5);
  font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: -0.01em;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: none; }

/* buttons - PILL-shaped. Gradient (primary) + ghost (secondary). */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 55px; padding-inline: 26px; border-radius: var(--pill);
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .15s ease, filter .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn-grad { background: var(--grad-blue); color: #fff; box-shadow: 0 10px 30px rgba(26,79,255,0.35); }
.btn-grad:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: var(--card-2); color: #fff; border: 1px solid var(--border-2); }
.btn-ghost:hover { background: #182052; }
.btn-sm { height: 46px; font-size: 16px; padding-inline: 20px; }

/* --------------------------------------------------------------------- */
/* signature utilities (the look) - reuse these everywhere                */
/* --------------------------------------------------------------------- */

/* card - deep navy fill, solid hairline border, generously rounded */
.card { background: var(--card-deep); border: 1px solid var(--card-2); border-radius: 20px; }
.card--pad { padding: 40px; }

/* pill chip - small rounded label/tag (navy fill, hairline). Often holds an
   icon + mono/label text; used in marquees and tag rows. */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 51px; padding-inline: 14px; border-radius: var(--pill);
  background: #000529; border: 1px solid var(--border-3);
  font-size: 18px; font-weight: 500; color: #f0f1f4; letter-spacing: -0.01em;
}
.pill--sm { height: 40px; font-size: 16px; }

/* ambient blue glow blob (large, behind sections) */
.glow {
  position: absolute; border-radius: 50%; filter: blur(120px);
  background: radial-gradient(circle, rgba(40,71,255,0.55), rgba(40,71,255,0) 70%);
  pointer-events: none; z-index: 0;
}
/* flare - a smaller, tighter blue glow used behind section heads (the
   "cosmic" backdrop, CSS-only stand-in for the Figma cone+starfield). */
.flare {
  position: absolute; border-radius: 50%; filter: blur(70px);
  background: radial-gradient(closest-side, rgba(26,75,255,0.32), rgba(26,75,255,0) 75%);
  pointer-events: none; z-index: 0;
}

/* blue gradient hairline (section dividers / "other services" rules) */
.hairline { width: 100%; height: 1px; border: 0; background: linear-gradient(90deg, rgba(26,75,255,0) 0%, rgba(26,75,255,0.35) 50%, rgba(26,75,255,0) 100%); }

/* monospace accent (small labels / stats / kickers) */
.mono { font-family: var(--mono); letter-spacing: 0; }

/* =====================================================================
   NAV - logo (left) · centred pill of links · gradient CTA (right)
   ===================================================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 97px; display: flex; align-items: center; }
.nav__inner { width: 100%; max-width: 1290px; margin-inline: auto; padding-inline: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo { height: 40px; display: flex; align-items: center; font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.nav__logo img { height: 40px; width: auto; }
.nav__center { display: flex; align-items: center; gap: 6px; padding: 8px; border-radius: var(--pill); background: rgba(10,13,31,0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); border: 1px solid var(--border-2); }
.nav__link { padding: 12px 18px; border-radius: var(--pill); font-size: 18px; font-weight: 500; color: var(--muted); border: 1px solid transparent; transition: color .15s ease, background-color .15s ease, border-color .15s ease; display: inline-flex; align-items: center; gap: 6px; }
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: #fff; background: var(--card-2); border-color: var(--border); }
.nav__cta { height: 55px; }
/* mobile-only menu CTA + divider (shown inside the dropdown on small screens) */
.nav__menu-cta, .nav__menu-divider { display: none; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border-radius: 12px; background: rgba(10,13,31,0.8); border: 1px solid var(--border-2); align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__inner { padding-inline: 20px; }
  .nav__center {
    position: absolute; top: 84px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 10px; border-radius: 18px;
    background: rgba(7, 10, 26, 0.98);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-2);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
    display: flex;                       /* kept in layout; shown/hidden via opacity for a smooth open */
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px) scale(0.985); transform-origin: top center;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .nav--open .nav__center {
    opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav__link { width: 100%; justify-content: flex-start; padding: 14px 16px; border-radius: 12px; font-size: 17px; border-color: transparent; }
  .nav__link:hover, .nav__link:active { color: #fff; background: rgba(255,255,255,0.04); }
  .nav__link.is-active { color: #fff; background: var(--card-2); border-color: var(--border); }
  .nav__cta { display: none; }
  .nav__menu-divider { display: block; height: 1px; margin: 8px 6px; background: var(--border-2); }
  .nav__menu-cta { display: inline-flex; width: 100%; height: 50px; margin-top: 2px; }
  .nav__toggle { display: flex; }
}

/* section heads step down on small screens */
@media (max-width: 860px) {
  .section { padding-block: 80px; }
  .section__head { margin-bottom: 48px; }
  .section__head h2 { font-size: 34px; }
  .section__head p { font-size: 16px; }
}
/* =====================================================================
   02-fx.css - animated particle background, SCOPED to specific sections
   (Benefits & Contact - the navy sections with blue glows). Each holds a
   <canvas class="fx-canvas"> that fills the section, sitting above the glow and
   below the content. isolation:isolate sandboxes the stacking per section so the
   canvas can't bleed outside it.
   ===================================================================== */
.s-hero, .s-benefits, .s-contact { isolation: isolate; }

.fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;            /* above .band + .aurora (DOM order), below content (z-index:1) */
  pointer-events: none;
  display: block;
}

/* =====================================================================
   BUTTON MOTION - a light "shine" sweeps across the gradient button on hover,
   plus a lift + intensified blue glow. Ghost buttons get a blue-edge lift.
   ===================================================================== */
.btn-grad { position: relative; overflow: hidden; }
.btn-grad::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -130%; width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.40), transparent);
  transform: skewX(-18deg); pointer-events: none;
  transition: left .6s ease;
}
.btn-grad:hover::after { left: 150%; }
.btn-grad:hover { transform: translateY(-2px); filter: brightness(1.12); box-shadow: 0 14px 36px rgba(26,79,255,0.5); }
.btn-grad:active { transform: translateY(0); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue); background: #182052; box-shadow: 0 10px 26px rgba(26,79,255,0.22); }
.btn-ghost:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .btn-grad::after { display: none; }
  .btn-grad:hover, .btn-ghost:hover { transform: none; }
}

/* =====================================================================
   REVEAL BORDER - bordered .card boxes get a blue glow that traces the edge
   nearest the cursor on hover (the "spotlight border" reveal). JS feeds the
   cursor position into --mx/--my (see 99-tail.html).
   ===================================================================== */
.card { position: relative; }
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: radial-gradient(170px circle at var(--mx, 50%) var(--my, 50%),
              rgba(90,130,255,0.9), rgba(90,130,255,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease; pointer-events: none; z-index: 2;
}
.card:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .card::after { transition: none; } }
/* =====================================================================
   03-hero.css - HERO (deep navy + blue glow). Scoped under .s-hero.
   ===================================================================== */
.s-hero { padding-top: 150px; padding-bottom: 90px; overflow: hidden; text-align: center; }

/* video background + bottom→top black fade (blends the hero into the navy page) */
.s-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.s-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.s-hero__fade {
  position: absolute; inset: 0; pointer-events: none;
  /* Only the bottom fades to navy; the top is left clear (no darkening). */
  background: linear-gradient(to top, var(--bg) 0%, rgba(0,2,15,0.6) 30%, rgba(0,2,15,0) 70%);
}

.s-hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

/* availability pill (reuses .eyebrow) with a live pulse dot */
.s-hero__badge { gap: 9px; }
.s-hero__spot-dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 0 rgba(61,220,132,0.5); animation: s-hero-pulse 2.2s ease-out infinite; flex: none; }
@keyframes s-hero-pulse { 0% { box-shadow: 0 0 0 0 rgba(61,220,132,0.5); } 70% { box-shadow: 0 0 0 7px rgba(61,220,132,0); } 100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); } }
@media (prefers-reduced-motion: reduce) { .s-hero__spot-dot { animation: none; } }

.s-hero__title { margin-top: 28px; max-width: 920px; font-size: 72px; line-height: 1.04; letter-spacing: -0.04em; font-weight: 600; }
.s-hero__lead { margin-top: 22px; max-width: 600px; font-size: 19px; line-height: 1.55; color: var(--muted); }

.s-hero__cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* reassurance / risk-reversal microcopy under the CTA */
.s-hero__assure { margin-top: 18px; max-width: 540px; font-size: 14px; line-height: 1.5; color: var(--muted-2); }

/* proof tile - navy card with 3 stats */
.s-hero__proof { margin-top: 56px; display: inline-flex; align-items: center; gap: 32px; padding: 22px 34px; }
.s-hero__stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.s-hero__num { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.s-hero__statlbl { font-size: 13px; color: var(--muted-2); }
.s-hero__vr { width: 1px; height: 40px; background: var(--border); flex: none; }

@media (max-width: 1100px) { .s-hero__title { font-size: clamp(40px, 7vw, 72px); } }
@media (max-width: 860px) {
  .s-hero { padding-top: 128px; padding-bottom: 64px; }
  .s-hero__title { margin-top: 24px; font-size: clamp(34px, 9vw, 52px); line-height: 1.06; }
  .s-hero__lead { font-size: 16px; }
  .s-hero__proof { gap: 18px; padding: 18px 20px; flex-wrap: wrap; }
  .s-hero__num { font-size: 24px; }
}
@media (max-width: 460px) { .s-hero__vr { display: none; } }
/* =====================================================================
   04-trust.css - pill marquee. Scoped under .s-trust + generic .pill-row.
   ===================================================================== */
.s-trust { padding-block: 60px; }
.s-trust__label { text-align: center; margin-bottom: 28px; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-2); font-family: var(--mono); }
.pill-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); }
.pill-row__track { display: flex; align-items: center; gap: 12px; width: max-content; animation: pill-marq 28s linear infinite; }
.pill-row__track .pill { font-weight: 600; color: #cdd3e6; white-space: nowrap; }
@keyframes pill-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .pill-row__track { animation: none; } }
/* =====================================================================
   05-audience.css - "Who I help" persona cards. Scoped under .s-aud.
   ===================================================================== */
.s-aud__head { position: relative; }
.s-aud__flare--l { left: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }
.s-aud__flare--r { right: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }

.s-aud__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.s-aud__card { padding: 32px; display: flex; flex-direction: column; align-items: flex-start; transition: transform .18s ease, border-color .18s ease; }
.s-aud__card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.s-aud__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: var(--blue); border: 1px solid var(--border-2); background: rgba(19,24,57,0.5); }
.s-aud__icon svg { width: 26px; height: 26px; }
.s-aud__title { margin-top: 22px; font-size: 21px; font-weight: 700; letter-spacing: -0.03em; }
.s-aud__desc { margin-top: 12px; font-size: 16px; line-height: 25px; color: var(--muted); }

@media (max-width: 980px) { .s-aud__grid { grid-template-columns: repeat(2, 1fr); } .s-aud__flare--l, .s-aud__flare--r { display: none; } }
@media (max-width: 540px) { .s-aud__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } .s-aud__card { padding: 28px; } }
/* =====================================================================
   06-services.css - navy cards + cosmic head. Scoped under .s-services.
   ===================================================================== */
.s-services__head { position: relative; }
.s-services__flare--l { left: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }
.s-services__flare--r { right: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }

.s-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { padding: 32px; display: flex; flex-direction: column; align-items: flex-start; transition: transform .18s ease, border-color .18s ease; }
.svc-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.svc-card__icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; color: #fff; background: var(--grad-blue); box-shadow: 0 8px 20px rgba(26,79,255,0.35); }
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card__title { margin-top: 22px; font-size: 24px; font-weight: 700; letter-spacing: -0.03em; }
.svc-card__desc { margin-top: 12px; font-size: 16px; line-height: 25px; color: var(--muted); }
.svc-card__tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card__tags li { font-size: 13px; color: var(--muted); padding: 6px 12px; border-radius: var(--pill); border: 1px solid var(--border-2); background: rgba(19,24,57,0.4); }

@media (max-width: 980px) { .s-services__grid { grid-template-columns: repeat(2, 1fr); } .s-services__flare--l, .s-services__flare--r { display: none; } }
@media (max-width: 640px) { .s-services__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } .svc-card { padding: 28px; } }
/* =====================================================================
   07-shift.css - positioning comparison. Scoped under .s-shift.
   ===================================================================== */
.s-shift { overflow: hidden; }
.s-shift__glow { width: 820px; height: 460px; left: 50%; top: 4%; transform: translateX(-50%); opacity: .3; }

.s-shift__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 940px; margin-inline: auto; }
.s-shift__col { padding: 36px; }
.s-shift__col--hard { background: var(--card); opacity: 0.92; }
.s-shift__col--with { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 24px 60px rgba(26,79,255,0.18); }

.s-shift__tag { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: var(--pill); font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: var(--muted); border: 1px solid var(--border-2); background: rgba(19,24,57,0.4); }
.s-shift__tag--good { color: #fff; background: var(--grad-blue); border-color: transparent; box-shadow: 0 8px 20px rgba(26,79,255,0.3); }

.s-shift__list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.s-shift__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; line-height: 1.45; color: #c4c8d4; }
.s-shift__col--hard .s-shift__list li { color: var(--muted); }

/* cross marker - muted counterpart to the blue .tick */
.cross { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(120,130,170,0.12); border: 1px solid var(--border-2); color: var(--muted-2); font-size: 11px; flex: none; margin-top: 2px; }

.s-shift__foot { position: relative; z-index: 1; margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.s-shift__line { font-size: 24px; font-weight: 600; letter-spacing: -0.03em; color: #fff; max-width: 620px; }

@media (max-width: 760px) {
  .s-shift__grid { grid-template-columns: 1fr; max-width: 460px; }
  .s-shift__col { padding: 28px; }
  .s-shift__line { font-size: 20px; }
}
/* =====================================================================
   08-work.css - SELECTED WORK (deep navy). Scoped under .s-work /
   .work-card / .wc- / .case-modal.
   ===================================================================== */
.s-work { overflow: hidden; }
.s-work__glow { width: 900px; height: 600px; left: 50%; top: -60px; transform: translateX(-50%); opacity: .5; }

/* ---- filters (pills) ---- */
.s-work__filters { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -20px 0 48px; }
.s-work__filter { padding: 10px 18px; border-radius: var(--pill); border: 1px solid var(--border-2); background: rgba(19,24,57,0.4); color: var(--muted); font-size: 15px; transition: all .15s ease; }
.s-work__filter:hover { color: #fff; }
.s-work__filter.is-active { color: #fff; background: var(--grad-blue); border-color: transparent; box-shadow: 0 8px 24px rgba(26,79,255,0.3); }

/* ---- grid + card ---- */
.s-work__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card[hidden] { display: none; }
.work-card { display: flex; flex-direction: column; cursor: pointer; overflow: hidden; outline: none; transition: transform .18s ease, border-color .18s ease; }
.work-card:hover, .work-card:focus-visible { transform: translateY(-4px); border-color: var(--blue); }
.work-card:focus-visible { box-shadow: 0 0 0 2px rgba(76,117,255,0.5); }
.work-card.is-featured { box-shadow: 0 0 0 1px rgba(76,117,255,0.35); }

.work-card__body { display: flex; flex-direction: column; padding: 24px; flex: 1; }
.work-card__meta { display: flex; align-items: center; gap: 10px; }
.work-card__cat { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-soft); font-family: var(--mono); }
.work-card__badge { font-size: 11px; padding: 4px 10px; border-radius: var(--pill); background: rgba(76,117,255,0.15); border: 1px solid rgba(76,117,255,0.4); color: #fff; }
.work-card__badge--concept { background: rgba(19,24,57,0.5); border-color: var(--border-2); color: var(--muted); }
.work-card__title { margin-top: 12px; font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
.work-card__tag { margin-top: 8px; font-size: 15px; line-height: 23px; color: var(--muted); }
.work-card__metrics { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.work-card__metrics span { font-size: 12.5px; padding: 6px 11px; border-radius: var(--pill); border: 1px solid var(--border-2); background: rgba(19,24,57,0.4); color: #fff; }
.work-card__cue { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 600; color: var(--blue-soft); }
.work-card__cue svg { width: 16px; height: 16px; transition: transform .18s ease; }
.work-card:hover .work-card__cue svg { transform: translateX(3px); }

/* ===== covers (navy + blue) ===== */
.wc-cover { position: relative; height: 190px; overflow: hidden; display: grid; place-items: center; border-bottom: 1px solid var(--card-2); background: radial-gradient(120% 120% at 50% 0%, rgba(40,71,255,0.22), rgba(0,4,31,0) 60%), #00041a; }

/* automation - flow */
.wc-flow { display: flex; align-items: center; gap: 8px; padding: 0 14px; flex-wrap: wrap; justify-content: center; }
.wc-node { font-size: 12px; padding: 8px 12px; border-radius: var(--pill); background: rgba(19,24,57,0.7); border: 1px solid var(--border-2); color: #fff; white-space: nowrap; }
.wc-node--ai { background: var(--grad-blue); border: 0; box-shadow: 0 6px 16px rgba(26,79,255,0.45); }
.wc-edge { width: 18px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, rgba(76,117,255,0.3), var(--blue)); flex: none; }
.wc-flow__time { position: absolute; bottom: 14px; font-size: 12px; color: var(--blue-soft); font-family: var(--mono); }

/* website - browser */
.wc-cover--browser { padding: 18px 18px 0; align-items: stretch; }
.wc-browser__bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: rgba(19,24,57,0.6); border: 1px solid var(--border-2); border-bottom: 0; border-radius: 10px 10px 0 0; }
.wc-browser__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.wc-browser__url { margin-left: 10px; flex: 1; height: 16px; border-radius: var(--pill); background: rgba(255,255,255,0.06); font-size: 10px; color: var(--muted-2); display: flex; align-items: center; padding: 0 10px; }
.wc-browser__screen { flex: 1; padding: 18px; background: #020722; border: 1px solid var(--border-2); border-radius: 0 0 10px 10px; display: flex; flex-direction: column; gap: 9px; }
.wc-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.10); width: 70%; }
.wc-line--lg { width: 90%; height: 12px; background: rgba(255,255,255,0.18); }
.wc-line--sm { width: 50%; }
.wc-cta { margin-top: 4px; width: 92px; height: 22px; border-radius: var(--pill); background: var(--grad-blue); }

/* funnel - bars */
.wc-funnel { width: 76%; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.wc-funnel span { height: 20px; border-radius: 6px; background: var(--grad-blue); opacity: .9; }
.wc-funnel span:nth-child(2){ opacity:.7 } .wc-funnel span:nth-child(3){ opacity:.52 } .wc-funnel span:nth-child(4){ opacity:.38 }

/* carousel - phone */
.wc-phone { width: 104px; height: 150px; margin-top: 16px; border-radius: 18px 18px 0 0; border: 1px solid var(--border-2); border-bottom: 0; background: #020722; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.wc-phone__slide { flex: 1; border-radius: 10px; background: var(--grad-blue); display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; padding: 10px; }
.wc-phone__slide span { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.7); }
.wc-phone__slide span:last-child { width: 60%; background: rgba(255,255,255,0.45); }
.wc-dots { display: flex; gap: 5px; justify-content: center; }
.wc-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.wc-dots i.on { background: var(--blue); width: 14px; border-radius: 3px; }

/* design - monogram + swatches */
.wc-cover--brand { flex-direction: column; gap: 16px; }
.wc-brand__mono { width: 64px; height: 64px; border-radius: 16px; background: var(--grad-blue); display: grid; place-items: center; font-size: 34px; font-weight: 700; color: #fff; box-shadow: 0 10px 26px rgba(26,79,255,0.45); }
.wc-swatches { display: flex; gap: 8px; }
.wc-swatches i { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--border-2); }
.wc-swatches i:nth-child(1){ background:#1a4fff } .wc-swatches i:nth-child(2){ background:#4c75ff } .wc-swatches i:nth-child(3){ background:#3b6bff } .wc-swatches i:nth-child(4){ background:#8aa6ff }

/* system - dashboard */
.wc-dash { width: 80%; height: 72%; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 8px; }
.wc-dash__tile { background: rgba(19,24,57,0.6); border: 1px solid var(--border-2); border-radius: 8px; min-height: 34px; }
.wc-dash__tile--wide { grid-column: span 2; min-height: 28px; }
.wc-dash__spark { grid-column: span 2; min-height: 36px; border-radius: 8px; border: 1px solid var(--border-2); background: #020722; position: relative; overflow: hidden; }
.wc-dash__spark::after { content: ""; position: absolute; left: 8px; right: 8px; bottom: 10px; height: 18px;
  background: linear-gradient(90deg, transparent, var(--blue));
  clip-path: polygon(0 80%, 16% 60%, 32% 70%, 50% 30%, 66% 50%, 82% 20%, 100% 40%, 100% 100%, 0 100%); opacity: .6; }

/* ===== modal (navy) ===== */
.case-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.case-modal[hidden] { display: none; }
.case-modal__backdrop { position: absolute; inset: 0; background: rgba(0,2,15,0.8); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.case-modal__panel { position: relative; z-index: 1; width: 100%; max-width: 620px; max-height: 88vh; overflow-y: auto; padding: 34px; animation: case-in .22s ease; }
@keyframes case-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.case-modal__close { position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-2); background: rgba(19,24,57,0.6); color: #fff; font-size: 24px; line-height: 1; transition: background .15s ease; }
.case-modal__close:hover { background: var(--card-2); }
.case__head .work-card__meta { margin-bottom: 14px; }
.case__title { font-size: 30px; letter-spacing: -0.03em; font-weight: 700; }
.case__tagline { margin-top: 8px; font-size: 16px; color: var(--muted); }
.case__results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; padding: 18px; border-radius: 16px; border: 1px solid var(--border-2); background: rgba(19,24,57,0.4); }
.case__metric { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.case__metric b { font-size: 22px; font-weight: 700; color: #fff; }
.case__metric span { font-size: 12px; color: var(--muted-2); }
.case__block { margin-top: 18px; }
.case__block h4 { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-soft); font-family: var(--mono); }
.case__block p { margin-top: 7px; font-size: 15px; line-height: 25px; color: var(--muted); }
.case__block ul { margin-top: 9px; display: flex; flex-wrap: wrap; gap: 8px; }
.case__block li { font-size: 13px; padding: 6px 12px; border-radius: var(--pill); border: 1px solid var(--border-2); background: rgba(19,24,57,0.4); color: #fff; }
.case__meta { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--border-2); font-size: 13px; color: var(--muted-2); font-family: var(--mono); }

/* ===== responsive ===== */
@media (max-width: 980px) { .s-work__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .s-work__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .case-modal__panel { padding: 26px 20px; }
  .case__results { grid-template-columns: 1fr; gap: 8px; }
}
/* =====================================================================
   09-benefits.css - Why an AI Implementer. Scoped under .s-benefits.
   ===================================================================== */
.s-benefits { overflow: hidden; }
.s-benefits__glow { width: 820px; height: 500px; left: 50%; top: 0; transform: translateX(-50%); opacity: .4; }
.s-benefits__head { position: relative; }
.s-benefits__flare--l { left: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }
.s-benefits__flare--r { right: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }

.s-benefits__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ben { padding-top: 24px; border-top: 1px solid var(--border-2); }
.ben__num { font-size: 15px; font-weight: 600; color: var(--blue-soft); }
.ben__title { margin-top: 16px; font-size: 21px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
.ben__desc { margin-top: 10px; font-size: 15px; line-height: 25px; color: var(--muted); }

@media (max-width: 980px) { .s-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; } .s-benefits__flare--l, .s-benefits__flare--r { display: none; } }
@media (max-width: 560px) { .s-benefits__grid { grid-template-columns: 1fr; gap: 26px; } }
/* =====================================================================
   10-about.css - navy profile. Scoped under .s-about (+ generic .tick).
   ===================================================================== */
.s-about { overflow: hidden; }
.s-about__glow { width: 580px; height: 440px; left: -170px; top: 50%; transform: translateY(-50%); opacity: .5; }
.s-about__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: center; }

.s-about__lead { margin-top: 22px; max-width: 580px; font-size: 28px; line-height: 1.3; letter-spacing: -0.03em; font-weight: 600; color: #fff; }
.s-about__body { margin-top: 18px; max-width: 540px; font-size: 17px; line-height: 28px; color: var(--muted); }
.s-about__facts { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.s-about__fact { display: inline-flex; align-items: baseline; gap: 8px; padding: 10px 16px; border-radius: var(--pill); border: 1px solid var(--border-2); background: rgba(19,24,57,0.5); font-size: 14px; color: #fff; }
.s-about__fact-k { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-2); font-family: var(--mono); }

.s-about__card { text-align: center; }
.s-about__avatar { width: 88px; height: 88px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; font-size: 30px; font-weight: 700; color: #fff; background: var(--grad-blue); box-shadow: 0 10px 30px rgba(26,79,255,0.4); }
.s-about__name { margin-top: 18px; font-size: 24px; font-weight: 700; letter-spacing: -0.03em; }
.s-about__role { margin-top: 5px; font-size: 14px; color: var(--muted); }
.s-about__rule { margin: 22px 0; }
.s-about__list { text-align: left; display: flex; flex-direction: column; gap: 14px; }
.s-about__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--muted); }

/* generic blue tick (reused by services + pricing) */
.tick { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--grad-blue); color: #fff; font-size: 11px; flex: none; }

@media (max-width: 900px) {
  .s-about__inner { grid-template-columns: 1fr; gap: 36px; }
  .s-about__card { max-width: 420px; }
  .s-about__lead { font-size: 23px; }
}
/* =====================================================================
   11-outcomes.css - navy stat cards. Scoped under .s-out.
   ===================================================================== */
.s-out { overflow: hidden; }
.s-out__glow { width: 760px; height: 380px; left: 50%; top: 28%; transform: translateX(-50%); opacity: .4; }
.s-out__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.s-out__stat { padding: 34px 16px; text-align: center; }
.s-out__num { display: block; font-size: 54px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(180deg, #ffffff 0%, #4c75ff 130%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.s-out__lbl { display: block; margin-top: 10px; font-size: 14px; color: var(--muted); }
@media (max-width: 860px) { .s-out__grid { grid-template-columns: repeat(2, 1fr); } .s-out__num { font-size: 42px; } }
/* =====================================================================
   13-process.css - productized monthly flow. Scoped under .s-proc.
   ===================================================================== */
.s-proc__head { position: relative; }
.s-proc__flare--l { left: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }
.s-proc__flare--r { right: -240px; top: 50%; transform: translateY(-50%); width: 340px; height: 200px; }

.s-proc__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.s-proc__step { position: relative; padding: 26px; display: flex; flex-direction: column; align-items: flex-start; transition: transform .18s ease, border-color .18s ease; }
.s-proc__step:hover { transform: translateY(-4px); border-color: var(--border-2); }
.s-proc__num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; font-size: 17px; font-weight: 600; color: var(--blue); border: 1px solid var(--border-2); background: rgba(19,24,57,0.5); }
.s-proc__title { margin-top: 20px; font-size: 19px; font-weight: 700; letter-spacing: -0.03em; }
.s-proc__desc { margin-top: 10px; font-size: 15px; line-height: 23px; color: var(--muted); }

/* ongoing band - the subscription / maintenance loop */
.s-proc__ongoing { margin-top: 18px; padding: 30px 36px; display: flex; align-items: center; gap: 26px; border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 24px 60px rgba(26,79,255,0.18); }
.s-proc__loop { display: inline-grid; place-items: center; width: 58px; height: 58px; flex: none; border-radius: 16px; font-size: 30px; font-weight: 600; color: #fff; background: var(--grad-blue); box-shadow: 0 8px 20px rgba(26,79,255,0.35); }
.s-proc__ongoing-text { flex: 1; }
.s-proc__ongoing-title { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
.s-proc__ongoing-desc { margin-top: 8px; font-size: 16px; line-height: 25px; color: var(--muted); max-width: 760px; }
.s-proc__ongoing-cta { flex: none; }

@media (max-width: 1100px) { .s-proc__grid { grid-template-columns: repeat(3, 1fr); } .s-proc__flare--l, .s-proc__flare--r { display: none; } }
@media (max-width: 720px) { .s-proc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .s-proc__ongoing { flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px; }
  .s-proc__ongoing-cta { width: 100%; }
}
@media (max-width: 460px) { .s-proc__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
/* =====================================================================
   14-pricing.css - tiered "how much we keep doing" pricing. Scoped under .s-pricing.
   ===================================================================== */
.s-pricing { overflow: hidden; }
.s-pricing__glow { width: 820px; height: 460px; left: 50%; top: 2%; transform: translateX(-50%); opacity: .32; }

/* tiers */
.s-pricing__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin-inline: auto; align-items: start; }
.price { position: relative; padding: 34px; display: flex; flex-direction: column; }
.price--popular { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 22px 55px color-mix(in srgb, var(--blue) 22%, transparent); }
.price__badge { position: absolute; top: 20px; right: 20px; font-size: 12px; padding: 6px 14px; border-radius: var(--pill); background: var(--grad-blue); color: #fff; }
.price__label { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; }
.price__for { margin-top: 4px; font-size: 14px; color: var(--muted); }
.price__amount { margin-top: 20px; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price__from { font-size: 14px; color: var(--muted-2); }
.price__num { font-size: 40px; font-weight: 700; letter-spacing: -0.04em; }
.price__per { font-size: 15px; color: var(--muted); }
.price__note { margin-top: 6px; font-size: 12.5px; color: var(--muted-2); }
.price__pitch { margin-top: 16px; font-size: 14.5px; line-height: 22px; color: var(--muted); }
.price__cta { margin-top: 20px; width: 100%; }
.price__list { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border-3); display: flex; flex-direction: column; gap: 13px; }
.price__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.4; color: #c4c8d4; }
.price__list .tick { margin-top: 1px; }
.price__person { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border-3); display: flex; gap: 12px; align-items: flex-start; }
.price__avatar { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 10px; font-size: 13px; font-weight: 700; color: #fff; background: var(--grad-blue); }
.price__person-name { font-size: 14px; font-weight: 600; color: #fff; }
.price__person-desc { margin-top: 3px; font-size: 13px; line-height: 19px; color: var(--muted); }

/* guarantees */
.s-pricing__guards { position: relative; z-index: 1; max-width: 1100px; margin: 30px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guard { display: flex; gap: 12px; align-items: flex-start; padding: 18px 20px; border: 1px solid var(--border-2); border-radius: 14px; background: var(--card); font-size: 14px; line-height: 1.45; color: var(--muted); }
.guard b { color: #fff; font-weight: 600; }
.guard__ic { font-size: 16px; flex: none; line-height: 1.4; }

.s-pricing__note { position: relative; z-index: 1; margin-top: 24px; text-align: center; font-size: 13px; color: var(--muted-2); }

@media (max-width: 980px) {
  .s-pricing__grid { grid-template-columns: 1fr; max-width: 460px; }
  .s-pricing__guards { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 560px) { .price { padding: 28px; } }
/* =====================================================================
   15-faq.css - navy accordion. Scoped under .s-faq / .faq-item.
   ===================================================================== */
.s-faq__inner { max-width: 820px; }
.s-faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border-2); border-radius: 16px; background: rgba(12,18,48,0.5); overflow: hidden; transition: border-color .15s ease; }
.faq-item.is-open { border-color: var(--blue); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 26px; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #fff; text-align: left; }
.faq-item__ic { position: relative; width: 18px; height: 18px; flex: none; }
.faq-item__ic::before, .faq-item__ic::after { content: ""; position: absolute; background: var(--blue-soft); border-radius: 2px; transition: transform .25s ease; }
.faq-item__ic::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-item__ic::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.is-open .faq-item__ic::after { transform: scaleY(0); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.is-open .faq-item__a { max-height: 340px; }
.faq-item__a p { padding: 0 26px 24px; font-size: 16px; line-height: 26px; color: var(--muted); }
/* =====================================================================
   16-contact.css - BOOK A CALL (blue glow). Scoped under .s-contact.
   ===================================================================== */
.s-contact { overflow: hidden; text-align: center; }
.s-contact__glow { width: 900px; height: 520px; left: 50%; top: -40px; transform: translateX(-50%); }
.s-contact__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.s-contact__eyebrow { margin-bottom: 22px; }
.s-contact__title { font-size: 60px; line-height: 1.04; letter-spacing: -0.04em; font-weight: 600; max-width: 760px; }
.s-contact__sub { margin-top: 20px; max-width: 560px; font-size: 18px; line-height: 28px; color: var(--muted); }
.s-contact__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.s-contact__assure { margin-top: 18px; font-size: 14px; color: var(--muted-2); }
.s-contact__socials { margin-top: 24px; display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); }
.s-contact__socials a { color: #fff; transition: color .15s ease; }
.s-contact__socials a:hover { color: var(--blue-soft); }
.s-contact__notes { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.s-contact__notes li { font-size: 13px; color: var(--muted); padding: 8px 16px; border-radius: var(--pill); border: 1px solid var(--border-2); background: rgba(19,24,57,0.4); }
@media (max-width: 860px) { .s-contact__title { font-size: 38px; } }
/* =====================================================================
   17-footer.css - navy footer. Scoped under .s-footer.
   ===================================================================== */
.s-footer { position: relative; padding: 64px 0 56px; border-top: 1px solid var(--border); }
.s-footer__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.s-footer__name { display: block; font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
.s-footer__tag { display: block; margin-top: 8px; max-width: 380px; font-size: 14px; line-height: 22px; color: var(--muted); }
.s-footer__nav { display: flex; flex-wrap: wrap; gap: 24px; }
.s-footer__nav a { font-size: 15px; color: var(--muted); transition: color .15s ease; }
.s-footer__nav a:hover { color: #fff; }
.s-footer__base { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); font-family: var(--mono); }
@media (max-width: 600px) { .s-footer__base { flex-direction: column; gap: 8px; } }
