/* ============================================================
   TURNKEY SERVICES — v4
   Modern services firm. Not a holding company.
   Brand-locked: black/grayscale/silver per official brand guide.
   Single font: Plus Jakarta Sans.
   ============================================================ */

:root {
  /* Deep-navy base — matched to the Turnkey Services neon card */
  --c-000:  #08080F;
  --c-100:  #10101D;
  --c-200:  #1B1B2E;
  --c-300:  #5A5A6E;
  --c-400:  #A1A1B2;
  --c-500:  #EDEDF3;
  --c-600:  #FFFFFF;

  /* Per-service neon palette (matches the business card) */
  --cfo:     #00E676;
  --ai:      #2E9BFF;
  --web:     #8B5CFF;
  --seo:     #FF8A1E;
  --design:  #FF2D9C;
  --cyan:    #22D3EE;

  /* Colourful spectrum sweep — used for headlines, bars + waves */
  --spectrum: linear-gradient(100deg, #2E9BFF 0%, #8B5CFF 26%, #FF2D9C 52%, #FF8A1E 76%, #00E676 100%);

  --bg:        var(--c-000);
  --bg-2:      var(--c-100);
  --bg-3:      var(--c-200);
  --surface:   rgba(255, 255, 255, 0.02);
  --surface-2: rgba(255, 255, 255, 0.04);
  --ink:       var(--c-600);
  --ink-soft:  rgba(255, 255, 255, 0.78);
  --muted:     rgba(255, 255, 255, 0.55);
  --muted-2:   rgba(255, 255, 255, 0.32);
  --rule:      rgba(255, 255, 255, 0.08);
  --rule-soft: rgba(255, 255, 255, 0.04);

  /* Silver gradient — drawn from K-arm in the brand guide */
  --silver:        linear-gradient(135deg, #F4F1E8 0%, #C9C3B4 25%, #7A766D 55%, #B5AFA2 78%, #EFEAE0 100%);
  --silver-line:   linear-gradient(90deg, transparent 0%, rgba(244,241,232,0.6) 50%, transparent 100%);
  --silver-edge:   linear-gradient(180deg, rgba(244,241,232,0.5), rgba(122,118,109,0.05));

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --maxw:    1440px;
  --content: 1240px;
  --gutter:  clamp(24px, 4vw, 80px);
  --ease:    cubic-bezier(0.7, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background:
    radial-gradient(1100px 620px at 82% -180px, rgba(46, 155, 255, 0.11), transparent 62%),
    radial-gradient(900px 520px at -120px 420px, rgba(139, 92, 255, 0.11), transparent 60%),
    radial-gradient(820px 520px at 112% 820px, rgba(255, 138, 30, 0.07), transparent 60%),
    radial-gradient(760px 500px at 14% 1240px, rgba(255, 45, 156, 0.07), transparent 60%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: #fff; color: var(--c-000); }

/* ── grain ── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.32;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── silver text helper ── */
.silver-text {
  background: var(--silver);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: silverShift 14s ease-in-out infinite alternate;
}
@keyframes silverShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  background: rgba(8, 8, 8, 0.65);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(8, 8, 8, 0.92);
  padding-top: 14px; padding-bottom: 14px;
}

.brand {
  display: flex; align-items: center; gap: 14px;
  transition: opacity 0.3s;
}
.brand:hover { opacity: 0.82; }
.brand-mark { width: 42px; height: auto; }
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
  letter-spacing: 0.04em;
}
.brand-text .t1 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.18em;
}
.brand-text .t2 {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.32em;
  margin-top: 5px;
  text-transform: uppercase;
}
.nav.scrolled .brand-mark { width: 36px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
  background: var(--surface-2);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--c-000); background: var(--ink); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.nav-cta:hover { color: var(--c-000); border-color: transparent; transform: translateY(-1px); }
.nav-cta:hover::before { opacity: 1; }
.nav-cta .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-500);
  box-shadow: 0 0 0 3px rgba(237,237,237,0.18);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(237,237,237,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(237,237,237,0.06); }
}

@media (max-width: 920px) { .nav-links { display: none; } }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap   { max-width: var(--maxw);    margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.narrow { max-width: var(--content); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.section { padding: clamp(100px, 12vw, 180px) 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--surface);
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--silver);
}

/* ============================================================
   HERO — center-anchored monogram + tagline
   ============================================================ */
.hero {
  min-height: 96vh;
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(60px, 7vw, 100px);
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 50% 50%, rgba(244,241,232,0.08) 0%, transparent 70%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px;
}
.hero-meta-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-meta-right span:first-child { color: var(--ink); }

.hero-mark {
  display: flex; align-items: center; justify-content: center;
  margin-top: clamp(50px, 7vw, 90px);
}
.hero-mark svg {
  width: clamp(220px, 28vw, 460px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(244,241,232,0.06));
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(48px, 8.4vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: clamp(40px, 5vw, 64px) 0 0;
  text-align: center;
}
.hero h1 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.hero h1 .silver-text { font-weight: 700; }

.hero-lede {
  max-width: 680px;
  margin: clamp(32px, 4vw, 56px) auto 0;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
}
.hero-lede strong { font-weight: 700; color: var(--ink); }

.hero-cta-row {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: clamp(36px, 4.5vw, 64px);
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.btn-primary { background: var(--ink); color: var(--c-000); border-color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); color: var(--c-000); border-color: transparent; }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--c-000); border-color: var(--ink); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.4s; }
.btn:hover .arrow { transform: translateX(6px); }

.hero-meta-strip {
  display: flex; justify-content: center; gap: clamp(20px, 4vw, 60px);
  margin-top: clamp(48px, 6vw, 90px);
  padding-top: clamp(32px, 4vw, 52px);
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero-meta-strip .pin {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-strip .pin::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-500);
  opacity: 0.7;
}

@media (max-width: 720px) {
  .hero-meta-right { text-align: left; }
  .hero-top { flex-direction: column; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.ribbon-section {
  padding: clamp(36px, 4.5vw, 56px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.marquee {
  display: flex; gap: 56px;
  white-space: nowrap;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 100px);
  letter-spacing: -0.04em;
  line-height: 1;
  animation: marquee 38s linear infinite;
}
.marquee .glyph {
  display: inline-flex; align-items: center; gap: 56px;
  background: var(--silver);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: silverShift 14s ease-in-out infinite alternate;
}
.marquee .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}
.marquee em { font-style: italic; font-weight: 300; color: var(--muted); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CAPABILITIES (6 PILLARS BENTO)
   ============================================================ */
.capabilities { padding: clamp(100px, 13vw, 180px) 0; }
.cap-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.cap-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 24px;
  max-width: 14ch;
}
.cap-head h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.cap-head .cap-lede {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cap-tile {
  background: var(--bg);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
  min-height: 320px;
}
.cap-tile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.cap-tile:hover { background: var(--bg-2); }
.cap-tile:hover::before { transform: scaleX(1); }

.cap-tile .ic {
  width: 44px; height: 44px;
  color: var(--ink);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
}
.cap-tile .num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.cap-tile h3 {
  font-weight: 700;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cap-tile p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 1000px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-head { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cap-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES (three service tracks as tiles)
   ============================================================ */
.services-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.services-sec::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--silver-line);
  opacity: 0.45;
}

.svc-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.svc-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 24px;
  max-width: 16ch;
}
.svc-head h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.svc-head .svc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
  white-space: nowrap;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.svc-tile {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: clamp(36px, 4vw, 52px);
  display: flex; flex-direction: column;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.svc-tile::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.svc-tile:hover {
  background: var(--bg-3);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.svc-tile:hover::after { transform: scaleX(1); }

.svc-tile .svc-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.svc-tile .svc-name {
  margin-top: 28px;
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.svc-tile .svc-name .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
.svc-tile .svc-body {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.svc-tile .svc-list {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.svc-tile .svc-list span {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.svc-tile .svc-list span::before {
  content: ""; width: 14px; height: 1px; background: var(--c-300);
  flex-shrink: 0;
}
.svc-tile .svc-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.svc-tile .svc-footer .visit-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.svc-tile:hover .svc-footer .visit-link { color: var(--ink); }
.svc-tile .svc-footer .arrow-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-tile .svc-footer .arrow-circle::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.svc-tile:hover .svc-footer .arrow-circle { border-color: transparent; color: var(--c-000); }
.svc-tile:hover .svc-footer .arrow-circle::before { opacity: 1; }
.svc-tile .svc-footer .arrow-circle svg { width: 14px; height: 14px; transition: transform 0.4s; }
.svc-tile:hover .svc-footer .arrow-circle svg { transform: translate(2px, -2px); }

@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-head { flex-direction: column; align-items: flex-start; }
  .svc-head .svc-tag { text-align: left; }
}

/* ============================================================
   PROCESS (4 steps)
   ============================================================ */
.process { padding: clamp(100px, 13vw, 180px) 0; }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.process-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 24px;
  max-width: 14ch;
}
.process-head h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.process-head p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.proc-step {
  padding: clamp(36px, 4vw, 56px) clamp(20px, 2.5vw, 36px) clamp(36px, 4vw, 56px) 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.4s;
}
.proc-step:last-child { border-right: 0; }
.proc-step::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.proc-step:hover::before { transform: scaleX(1); }
.proc-step:hover { background: var(--surface); }

.proc-step .step-num {
  font-weight: 700;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--silver);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 32px;
}
.proc-step h3 {
  font-weight: 700;
  font-size: clamp(22px, 1.85vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.proc-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 1000px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-step:nth-child(2) { border-right: 0; }
  .proc-step { border-bottom: 1px solid var(--rule); }
  .process-head { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .process-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: 0; padding-right: 0; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 200px) 0;
}
.manifesto::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--silver-line);
}
.manifesto-inner { max-width: 1080px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); position: relative; z-index: 2; }
.manifesto blockquote {
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.manifesto blockquote em { font-style: italic; font-weight: 300; color: var(--muted); }
.manifesto blockquote .silver-text { font-weight: 600; }
.manifesto-mark {
  display: flex; justify-content: center;
  margin-bottom: 48px;
  opacity: 0.85;
}
.manifesto-mark svg { width: 64px; height: auto; }
.manifesto .source {
  display: block;
  margin-top: 48px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-style: normal;
}

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: clamp(96px, 12vw, 160px) 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.cta h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.cta h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.btn-block {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px;
  border-radius: 6px;
  border: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  width: 100%;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.btn-block::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.btn-block.primary { background: var(--ink); color: var(--c-000); border-color: var(--ink); }
.btn-block.primary:hover { transform: translateY(-2px); color: var(--c-000); border-color: transparent; }
.btn-block.primary:hover::before { opacity: 1; }
.btn-block.ghost:hover { background: var(--ink); color: var(--c-000); border-color: var(--ink); transform: translateY(-2px); }
.btn-block .arrow { transition: transform 0.4s; }
.btn-block:hover .arrow { transform: translateX(8px); }

@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  padding: clamp(80px, 9vw, 140px) 0 36px;
  position: relative;
}
footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--silver-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(60px, 7vw, 100px);
  border-bottom: 1px solid var(--rule);
}
.footer-brand p {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 60px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============================================================
   PAGE HERO (about/services/contact)
   ============================================================ */
.page-hero {
  padding-top: clamp(160px, 18vw, 240px);
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-weight: 700;
  font-size: clamp(48px, 8vw, 144px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 18ch;
  margin: 28px 0 0;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--muted); }
.page-hero-lede {
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-hero-lede p {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
}
.page-hero-lede .meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
  display: flex; flex-direction: column; gap: 8px;
}
.page-hero-lede .meta span:first-child { color: var(--ink); }
@media (max-width: 720px) {
  .page-hero-lede { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-lede .meta { text-align: left; }
}

/* ── Contact cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(60px, 8vw, 100px);
}
.contact-card {
  border: 1px solid var(--rule);
  background: var(--bg-2);
  padding: clamp(36px, 4vw, 48px);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.contact-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--silver-line);
  opacity: 0;
  transition: opacity 0.4s;
}
.contact-card:hover { background: var(--bg-3); border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }
.contact-card:hover::before { opacity: 1; }
.contact-card h3 {
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.contact-card p { color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; }
.contact-card .channel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.contact-card .value {
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.contact-card .value:hover { text-decoration: underline; }
.contact-card .pill {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.contact-card .pill::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.contact-card .pill:hover { color: var(--c-000); border-color: transparent; transform: translateY(-1px); }
.contact-card .pill:hover::before { opacity: 1; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── About principles list ── */
.principles-list {
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--rule);
}
.principle-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: clamp(20px, 3vw, 60px);
  align-items: start;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.principle-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--silver);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s var(--ease);
}
.principle-row:hover { padding-left: 16px; }
.principle-row:hover::before { transform: scaleY(1); }
.principle-row .pr-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 12px;
}
.principle-row h3 {
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.principle-row h3 em { font-style: italic; font-weight: 300; color: var(--muted); }
.principle-row p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
}
@media (max-width: 900px) {
  .principle-row { grid-template-columns: 70px 1fr; }
  .principle-row p { grid-column: 2; }
}

/* ============================================================
   FADES
   ============================================================ */
/* Content is visible by default. Only when JS is confirmed (html.js) does the
   reveal animation gate it — so a JS failure can never leave the page blank.
   Note: .in rule is scoped under html.js too, so it out-specifies the gate. */
.fade.in { opacity: 1; transform: translateY(0); }
html.js .fade {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js .fade.in { opacity: 1; transform: translateY(0); }
html.js .fade.d1 { transition-delay: 0.05s; }
html.js .fade.d2 { transition-delay: 0.10s; }
html.js .fade.d3 { transition-delay: 0.15s; }
html.js .fade.d4 { transition-delay: 0.20s; }
html.js .fade.d5 { transition-delay: 0.25s; }
html.js .fade.d6 { transition-delay: 0.30s; }

/* ════════════════════════════════════════════════════════════
   NEON LAYER — v5
   Pulse-wave field + brand launcher + spectrum recolour.
   Matched to the Turnkey Services neon business card.
   ════════════════════════════════════════════════════════════ */

/* ── spectrum recolour of the old silver helpers ── */
.silver-text,
.marquee .glyph,
.proc-step .step-num,
.spectrum-text {
  background: var(--spectrum);
  background-size: 230% 230%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: spectrumShift 18s ease-in-out infinite alternate;
}
.spectrum-text { font-weight: 700; }
@keyframes spectrumShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* silver used as a solid fill (hover sweeps + accent bars) → spectrum */
.btn::before, .btn-block::before, .nav-cta::before,
.svc-footer .arrow-circle::before, .contact-card .pill::before,
.cap-tile::before, .svc-tile::after, .proc-step::before,
.principle-row::before {
  background: var(--spectrum);
}
.services-sec::before, .manifesto::before, footer::before,
.contact-card::before, .ribbon-section {
  border-image: none;
}
.services-sec::before, .manifesto::before, footer::before {
  background: linear-gradient(90deg, transparent, rgba(139,92,255,.55) 28%,
              rgba(255,45,156,.55) 52%, rgba(255,138,30,.5) 74%, transparent);
}
.kicker::before {
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan), 0 0 3px #fff;
}
.marquee .dot { background: var(--web); box-shadow: 0 0 12px var(--web); }
.nav-cta .pulse { background: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,.22); }
.nav.scrolled { box-shadow: 0 1px 0 0 rgba(139,92,255,.20); }

/* ════════ PULSE-WAVE FIELD — aurora + neon ribbons + sparks ════════ */
.pulse-field {
  position: fixed; inset: -14vh -14vw;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.pulse-field > * { position: absolute; inset: 0; will-change: transform; }

/* aurora bloom — soft drifting colour clouds */
.aurora { mix-blend-mode: screen; }
.aurora .blob { position: absolute; border-radius: 50%; filter: blur(72px); }
.aurora .b1 {
  width: 47vw; height: 47vw; left: -6vw; top: -9vh; opacity: .58;
  background: radial-gradient(closest-side, rgba(46,155,255,.9), transparent 72%);
  animation: auroraA 27s ease-in-out infinite alternate;
}
.aurora .b2 {
  width: 43vw; height: 43vw; right: -9vw; top: 5vh; opacity: .52;
  background: radial-gradient(closest-side, rgba(139,92,255,.85), transparent 72%);
  animation: auroraB 33s ease-in-out infinite alternate;
}
.aurora .b3 {
  width: 52vw; height: 52vw; left: 7vw; bottom: -18vh; opacity: .42;
  background: radial-gradient(closest-side, rgba(255,45,156,.78), transparent 72%);
  animation: auroraB 30s ease-in-out infinite alternate-reverse;
}
.aurora .b4 {
  width: 39vw; height: 39vw; right: 1vw; bottom: -9vh; opacity: .4;
  background: radial-gradient(closest-side, rgba(255,138,30,.66), transparent 72%);
  animation: auroraA 37s ease-in-out infinite alternate-reverse;
}
@keyframes auroraA {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(7vw,5vh,0) scale(1.2); }
}
@keyframes auroraB {
  0%   { transform: translate3d(0,0,0) scale(1.12); }
  100% { transform: translate3d(-6vw,-4vh,0) scale(.9); }
}

/* neon wave ribbons */
.waves svg {
  position: absolute; left: 0; top: 0;
  width: 128vw; height: 128vh; overflow: visible;
}
.wave path { fill: none; stroke-linecap: round; }
.wave-a { color: #8B5CFF; }
.wave-b { color: #FF2D9C; }
.wave-c { color: #FF8A1E; }
.wave-d { color: #22D3EE; }
.wave .w-glow {
  stroke-width: 30; opacity: .42; filter: blur(26px);
  mix-blend-mode: screen;
}
.wave .w-core {
  stroke-width: 2; opacity: .5;
  stroke-dasharray: 560 940;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.4));
}
.wave .w-spark {
  stroke-width: 2.7; opacity: .95;
  stroke-dasharray: 2 15;
  filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 2px #fff);
  mix-blend-mode: screen;
}
.wave-a { animation: waveDrift 31s ease-in-out infinite alternate; }
.wave-b { animation: waveDrift 39s ease-in-out infinite alternate-reverse; }
.wave-c { animation: waveDrift 35s ease-in-out infinite alternate; }
.wave-d { animation: waveDrift 27s ease-in-out infinite alternate-reverse; }
.wave-a .w-core  { animation: coreFlow 26s linear infinite; }
.wave-b .w-core  { animation: coreFlow 32s linear infinite reverse; }
.wave-c .w-core  { animation: coreFlow 29s linear infinite; }
.wave-d .w-core  { animation: coreFlow 21s linear infinite reverse; }
.wave-a .w-spark { animation: sparkFlow 7.5s linear infinite; }
.wave-b .w-spark { animation: sparkFlow 9.5s linear infinite; }
.wave-c .w-spark { animation: sparkFlow 8.4s linear infinite; }
.wave-d .w-spark { animation: sparkFlow 6.2s linear infinite; }
@keyframes waveDrift {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-58px,26px,0); }
}
@keyframes coreFlow  { to { stroke-dashoffset: -1500; } }
@keyframes sparkFlow { to { stroke-dashoffset: -1700; } }

/* twinkling particle layer (filled by site.js) */
.spark {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: #fff; opacity: 0;
  box-shadow: 0 0 6px 1px currentColor;
  animation: twinkle 6s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0;   transform: scale(.55); }
  50%      { opacity: .92; transform: scale(1); }
}

/* ── HERO neon tweaks ── */
.hero { min-height: 84vh; padding-bottom: clamp(40px, 5vw, 76px); }
.hero::after {
  background: radial-gradient(46% 60% at 50% 40%, rgba(139,92,255,.18), transparent 70%);
  opacity: 1;
}
.hero-mark { position: relative; }
.hero-mark svg {
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 26px rgba(46,155,255,.38))
          drop-shadow(0 0 60px rgba(255,45,156,.22));
}
.hero-mark-halo {
  position: absolute;
  width: clamp(280px, 36vw, 560px); aspect-ratio: 1;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    #2E9BFF, #8B5CFF, #FF2D9C, #FF8A1E, #00E676, #22D3EE, #2E9BFF);
  filter: blur(58px); opacity: .34;
  z-index: 0;
  animation: haloSpin 22s linear infinite;
}
@keyframes haloSpin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}
.hero-mark-halo { transform: translate(-50%,-50%); }
.hero-meta-strip .pin::before { opacity: 1; }
.hero-meta-strip .pin:nth-child(1)::before { background: var(--ai);     box-shadow: 0 0 8px var(--ai); }
.hero-meta-strip .pin:nth-child(2)::before { background: var(--web);    box-shadow: 0 0 8px var(--web); }
.hero-meta-strip .pin:nth-child(3)::before { background: var(--design); box-shadow: 0 0 8px var(--design); }
.hero-meta-strip .pin:nth-child(4)::before { background: var(--seo);    box-shadow: 0 0 8px var(--seo); }
.hero-meta-strip .pin:nth-child(5)::before { background: var(--cyan);   box-shadow: 0 0 8px var(--cyan); }
.hero-meta-strip .pin:nth-child(6)::before { background: var(--cfo);    box-shadow: 0 0 8px var(--cfo); }
.btn-primary:hover, .btn-block.primary:hover {
  box-shadow: 0 16px 44px -14px rgba(139,92,255,.6);
}

/* ── colourful capability icons ── */
.cap-grid .cap-tile:nth-child(1) .ic { color: var(--ai); }
.cap-grid .cap-tile:nth-child(2) .ic { color: var(--web); }
.cap-grid .cap-tile:nth-child(3) .ic { color: var(--design); }
.cap-grid .cap-tile:nth-child(4) .ic { color: var(--seo); }
.cap-grid .cap-tile:nth-child(5) .ic { color: var(--cfo); }
.cap-grid .cap-tile:nth-child(6) .ic { color: var(--cyan); }
.cap-tile .ic { filter: drop-shadow(0 0 12px currentColor); }

/* ════════════════════════════════════════════════════════════
   BRAND LAUNCHER — five neon brand cards
   ════════════════════════════════════════════════════════════ */
.launcher { padding: clamp(56px,7vw,104px) 0 clamp(80px,10vw,150px); position: relative; }
.launch-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px,5vw,68px); }
.launch-head .kicker { margin: 0 auto; }
.launch-head h2 {
  font-weight: 700; font-size: clamp(34px,5.2vw,72px);
  line-height: 1; letter-spacing: -0.04em; margin-top: 22px;
}
.launch-head h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.launch-head .launch-lede {
  margin-top: 22px; font-size: clamp(15px,1.2vw,18px);
  line-height: 1.62; color: var(--ink-soft);
}

.launch-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: clamp(14px,1.5vw,20px);
}
.brand-card {
  --accent: #fff;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: clamp(24px,2vw,30px) clamp(20px,1.7vw,26px) clamp(22px,1.8vw,26px);
  border: 1px solid var(--rule); border-radius: 16px;
  background: var(--surface-2);
  min-height: 326px;
  transition: transform .45s var(--ease-out), border-color .4s, box-shadow .45s;
}
.brand-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.brand-card::after {
  content: ""; position: absolute; left: 50%; top: -42%;
  width: 168%; height: 168%; transform: translateX(-50%);
  background: radial-gradient(closest-side,
              color-mix(in srgb, var(--accent) 24%, transparent), transparent);
  opacity: .15; transition: opacity .45s; pointer-events: none;
}
.brand-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 26px 60px -26px color-mix(in srgb, var(--accent) 72%, transparent),
              inset 0 0 0 1px color-mix(in srgb, var(--accent) 16%, transparent);
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover::after  { opacity: .40; }
.brand-card.soon { opacity: .9; }
.brand-card.soon:hover { transform: translateY(-4px); }

/* diagonal light sheen — sweeps across on hover */
.bc-sheen {
  position: absolute; top: -10%; left: 0;
  width: 56%; height: 120%;
  background: linear-gradient(100deg, transparent,
              color-mix(in srgb, var(--accent) 30%, transparent), transparent);
  transform: translateX(-180%) skewX(-16deg);
  pointer-events: none; z-index: 1;
  transition: transform .95s var(--ease-out);
}
.brand-card:hover .bc-sheen { transform: translateX(290%) skewX(-16deg); }

.bc-top, .bc-icon, .bc-name, .bc-desc, .bc-go { position: relative; z-index: 2; }
.bc-top { display: flex; align-items: center; justify-content: space-between; }
.bc-mark { width: 32px; height: auto; color: var(--accent);
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--accent) 60%, transparent)); }
.bc-status {
  font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--rule); color: var(--muted);
}
.bc-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: statusPulse 2.4s ease-in-out infinite;
}
.brand-card.soon .bc-status .dot { animation: none; opacity: .55; }
@keyframes statusPulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.bc-icon {
  width: 48px; height: 48px; border-radius: 13px; margin: 26px 0 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
}
.bc-icon svg { width: 24px; height: 24px; }
.bc-name { font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.bc-name span {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 3px;
}
.bc-desc { margin-top: 9px; font-size: 13px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.bc-go {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
}
.bc-domain {
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em;
  color: var(--muted); transition: color .3s;
}
.brand-card:hover .bc-domain { color: var(--accent); }
.bc-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all .4s var(--ease);
}
.bc-arrow svg { width: 13px; height: 13px; transition: transform .4s; }
.brand-card:hover .bc-arrow {
  border-color: transparent; color: #08080F; background: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 65%, transparent);
}
.brand-card:hover .bc-arrow svg { transform: translate(2px,-2px); }

@media (max-width: 1100px) { .launch-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px)  { .launch-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 470px)  {
  .launch-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: auto; }
}

/* ── footer brand-link dots ── */
.footer-col.brands a { display: flex; align-items: center; gap: 9px; }
.footer-col.brands a::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--d-accent, #fff); box-shadow: 0 0 7px var(--d-accent, #fff);
  flex-shrink: 0;
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .wave-a, .wave-b, .wave-c, .wave-d,
  .wave .w-core, .wave .w-spark, .silver-text, .marquee,
  .spectrum-text, .pulse-field, .aurora .blob,
  .spark, .hero-mark-halo, .bc-sheen {
    animation: none !important; transition: none !important;
  }
  .wave .w-spark { opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   v5.1 POLISH — tighter rhythm, stronger contrast
   ════════════════════════════════════════════════════════════ */

/* hero — shorter, denser; mark sized down so the fold isn't empty */
.hero { min-height: auto; padding-top: clamp(116px,12vw,150px);
        padding-bottom: clamp(30px,3.6vw,48px); }
.hero-mark { margin-top: clamp(16px,2.4vw,32px); }
.hero-mark svg { width: clamp(132px,15vw,212px); }
.hero h1 { font-size: clamp(42px,6.6vw,104px); margin-top: clamp(20px,2.8vw,34px); }
.hero-lede { margin-top: clamp(20px,2.4vw,30px); }
.hero-cta-row { margin-top: clamp(24px,2.8vw,36px); }
.hero-meta-strip { margin-top: clamp(26px,3vw,42px); padding-top: clamp(22px,2.4vw,32px); }
.hero-mark-halo { width: clamp(220px,22vw,330px); }

/* sections — cut the dead navy bands */
.section, .capabilities, .process { padding: clamp(58px,6.8vw,100px) 0; }
.cap-head, .svc-head, .process-head { margin-bottom: clamp(38px,4.4vw,62px); }
.launcher { padding: clamp(42px,5vw,74px) 0 clamp(62px,7vw,100px); }
.manifesto { padding: clamp(76px,8.5vw,124px) 0; }
.cta { padding: clamp(66px,7.6vw,112px) 0; }

/* contrast — the italic accent words were too faint */
.hero h1 .italic { color: rgba(255,255,255,0.72); }
.cap-head h2 em, .svc-head h2 em, .process-head h2 em,
.launch-head h2 em, .cta h2 em { color: rgba(255,255,255,0.62); }
.manifesto blockquote em { color: rgba(255,255,255,0.6); }
