/* ==================================================================
   DIVERGENT MEDIA - DESIGN TOKENS
   Change values here to re-theme the whole site.
=================================================================== */
:root {
  /* Color */
  --ink: #FFFFFF;          /* primary page background */
  --ink-2: #F4F4F5;         /* elevated surface (cards, nav on scroll) */
  --ink-3: #E7E7E9;         /* hover / border surface */
  --paper: #0B0B0C;         /* primary text and foreground elements */
  --paper-dim: rgba(11,11,12,0.66);
  --paper-faint: rgba(11,11,12,0.10);

  --spark: #0B0B0C;         /* primary accent: black, CTAs and emphasis */
  --spark-dim: #2A2A2C;
  --dopamine: #38383A;      /* secondary accent: dark gray, highlights */
  --signal: #6B6B70;        /* tertiary accent: mid gray, tags/links */

  --line: rgba(11,11,12,0.12);
  --line-strong: rgba(11,11,12,0.24);

  /* Type */
  --font-display: "Bricolage Grotesque", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

/* ==================================================================
   RESET / BASE
=================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; cursor: pointer; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible {
  outline: 2px solid var(--dopamine);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dopamine);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spark);
}
.eyebrow--on-dark { color: var(--dopamine); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--paper-dim);
  font-size: 17px;
  max-width: 46ch;
}

/* ==================================================================
   BUTTONS
=================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 13px 24px;
  font-size: 15px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--spark);
  color: var(--ink);
}
.btn--primary:hover { background: #2A2A2A; }

.btn--dopamine {
  background: var(--dopamine);
  color: var(--ink);
}
.btn--dopamine:hover { background: #0B0B0C; }

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--paper);
}
.btn--ghost:hover { border-color: var(--paper); }

.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--full { width: 100%; }

/* ==================================================================
   NAV
=================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.nav__logo-img { height: 34px; width: auto; display: block; }
.nav__logo-img--footer { height: 40px; }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__links a { color: var(--paper-dim); transition: color 0.15s ease; }
.nav__links a:hover { color: var(--paper); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 28px 24px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--paper-dim);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 14px; }

/* ==================================================================
   HERO
=================================================================== */
.hero {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
  background-image: radial-gradient(rgba(11,11,12,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero__headline {
  font-size: clamp(38px, 5.4vw, 66px);
  margin-bottom: 22px;
}
.hero__headline .hl {
  color: var(--spark);
  font-style: italic;
}
/* Explicit one-off exception to the black/white theme, requested
   for the hero headline's closing period specifically. */
.hero__headline .hl-dot { color: #E5484D; }
.hero__sub {
  font-size: 18px;
  color: var(--paper-dim);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__proof {
  font-size: 14px;
  color: var(--paper-dim);
}
.hero__proof strong { color: var(--paper); font-weight: 600; }

.hero__art { display: flex; justify-content: center; }
.constellation {
  width: 100%;
  max-width: 460px;
  color: var(--line-strong);
  animation: constellation-turn 50s linear infinite;
  transform-origin: 230px 230px;
}
.constellation__circles {
  animation: constellation-turn-reverse 34s linear infinite;
  transform-origin: 230px 230px;
}
@keyframes constellation-turn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes constellation-turn-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .constellation, .constellation__circles { animation: none; }
}
.constellation__nodes .node {
  fill: var(--paper);
  animation: twinkle 3.2s ease-in-out infinite;
}
.node--a { animation-delay: 0.1s; }
.node--b { animation-delay: 0.6s; }
.node--c { animation-delay: 1.1s; }
.node--d { animation-delay: 1.6s; }
.node--e { animation-delay: 2.0s; }
.node--f { animation-delay: 2.5s; }
.node--core { fill: var(--spark); }
.node--core-ring {
  fill: none;
  stroke: var(--spark);
  stroke-width: 1.4;
  opacity: 0.35;
  animation: pulse-ring 2.6s ease-out infinite;
  transform-origin: 260px 260px;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ==================================================================
   MARQUEE
=================================================================== */
.marquee-section {
  position: relative;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* Cursor spotlight: a soft circle that follows the mouse (position
   set by JS in main.js via --spot-x/--spot-y custom properties on
   this element), only visible while the cursor is inside the
   section. pointer-events: none so it never blocks hovering the
   logos underneath - those still light up individually via the
   .marquee__logo-img:hover rule below. */
.marquee-section__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(220px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(11,11,12,0.06), transparent 70%);
  z-index: 1;
}
.marquee-section--active .marquee-section__spotlight { opacity: 1; }
.marquee-section__label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 22px;
}
.marquee-section__label { margin-bottom: 40px; }
.people .marquee-section__label { margin-bottom: 40px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee + .marquee { margin-top: 18px; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: scroll-left 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track--reverse { animation-name: scroll-right; animation-duration: 30s; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--paper-dim);
  white-space: nowrap;
}
/* Colorful variant: used only on the trust marquee, as a deliberate
   exception to the site's black/white theme. Each brand name gets
   its own color via an inline style on the <span> in index.html -
   edit the color there to adjust one brand without touching this
   rule. Text wordmarks stand in for full logo artwork since those
   belong to the partner brands. */
.marquee__track--colorful span { color: inherit; }
.marquee__badge {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink) !important;
  background: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  align-self: center;
}
.marquee__logo-img {
  height: 26px;
  width: auto;
  align-self: center;
}
.marquee__logo-img--lg { height: 42px; }
/* Dim every logo and colored name by default; only the one under
   the cursor lights up to full color. Purely visual (filter), so it
   doesn't affect the underlying inline colors or image files. */
.marquee__logo-img,
.marquee__track--colorful span,
.marquee__badge {
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s ease;
}
.marquee__logo-img:hover,
.marquee__track--colorful span:hover,
.marquee__badge:hover {
  filter: none;
}
.marquee--people .marquee__track { gap: 20px; animation-duration: 34s; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ==================================================================
   OUR PHILOSOPHY (inverted: black background, white text)
=================================================================== */
.philosophy {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 100px 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}
.philosophy__top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.philosophy__copy { max-width: 640px; }
.philosophy__art { display: flex; justify-content: center; }
.philosophy__art svg { width: 100%; max-width: 320px; }
.philosophy__svg {
  animation: constellation-drift 12s ease-in-out infinite;
  transform-origin: 180px 180px;
}
.philosophy__node {
  animation: twinkle 3.2s ease-in-out infinite;
}
.philosophy__node--1 { animation-delay: 0.2s; }
.philosophy__node--2 { animation-delay: 0.8s; }
.philosophy__node--3 { animation-delay: 1.4s; }
.philosophy__node--4 { animation-delay: 2s; }
.philosophy__node--5 { animation-delay: 2.6s; }
.philosophy__core-ring {
  opacity: 0.4;
  animation: pulse-ring 2.8s ease-out infinite;
  transform-origin: 180px 180px;
}
@media (prefers-reduced-motion: reduce) {
  .philosophy__svg { animation: none; }
  .philosophy__node, .philosophy__core-ring { animation: none; }
}
.philosophy__eyebrow { color: rgba(255,255,255,0.72); }
.philosophy__eyebrow::before { background: var(--ink); }
.philosophy__headline {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  font-size: clamp(26px, 3.6vw, 40px);
  max-width: 20ch;
  margin-bottom: 22px;
}
.philosophy__headline em { font-style: italic; }
.philosophy__sub {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  max-width: 56ch;
}
.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.philosophy__pillar {
  padding: 30px 28px 30px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.philosophy__pillar:nth-child(1),
.philosophy__pillar:nth-child(2) { border-top: none; }
.philosophy__pillar:nth-child(odd) { padding-right: 40px; }
.philosophy__pillar:nth-child(even) { padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.14); }
.philosophy__pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 10px;
}
.philosophy__pillar p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  max-width: 40ch;
}

/* ==================================================================
   STAT BAR
=================================================================== */
.statbar { padding: 48px 0; border-bottom: 1px solid var(--line); }
.statbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.statbar__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.statbar__item:first-child { padding-left: 0; border-left: none; }
.statbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--paper-faint);
  color: var(--signal);
  margin-bottom: 4px;
}
.statbar__icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.statbar__number {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--spark);
}
.statbar__label { font-size: 13.5px; color: var(--paper-dim); }

/* ==================================================================
   PEOPLE MARQUEE / AVATARS
=================================================================== */
.people { padding: 40px 0 48px; border-top: 1px solid var(--line); }
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-strong);
}
.avatar--1 { background: linear-gradient(150deg, #C4C4C8, var(--ink-2)); }
.avatar--2 { background: linear-gradient(150deg, #B6B6BA, var(--ink-2)); }
.avatar--3 { background: linear-gradient(150deg, #CECED2, var(--ink-2)); }
.avatar--4 { background: linear-gradient(150deg, #BCBCC0, var(--ink-2)); }
.avatar--5 { background: linear-gradient(150deg, #C8C8CC, var(--ink-2)); }
.avatar--6 { background: linear-gradient(150deg, #AEAEB2, var(--ink-2)); }
.avatar--7 { background: linear-gradient(150deg, #D4D4D8, var(--ink-2)); }
.avatar--photo {
  object-fit: cover;
  background: var(--ink-2);
}
.avatar--more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--paper-dim);
  background: var(--ink-2);
}

/* ==================================================================
   ECOSYSTEM
=================================================================== */
.ecosystem { padding: 100px 0; border-top: 1px solid var(--line); }
.ecosystem__head { max-width: 640px; margin-bottom: 44px; }
.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}
.eco-card {
  position: relative;
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px 28px;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.eco-card:hover { border-color: var(--line-strong); transform: translateY(-4px) rotate(-2deg); }
.eco-card:nth-child(even):hover { transform: translateY(-4px) rotate(2deg); }
.eco-card__dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-bottom: 14px; }
.eco-card__dot--1 { background: #0B0B0C; }
.eco-card__dot--2 { background: #38383A; }
.eco-card__dot--3 { background: #6B6B70; }
.eco-card__dot--4 { background: #9A9AA0; }
.eco-card__dot--5 { background: #C7C7CC; }
.eco-card__logo {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 1px solid var(--line-strong);
}
.eco-card h3 { font-size: 16px; margin-bottom: 6px; }
.eco-card p { font-size: 13px; color: var(--paper-dim); }
.eco-card__arrow { position: absolute; bottom: 16px; right: 18px; color: var(--paper-dim); font-size: 15px; }

.text-link {
  display: inline-flex;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dopamine);
  border-bottom: 1px solid transparent;
}
.text-link:hover { border-bottom-color: var(--dopamine); }

/* Placeholder links with no real destination yet (future blog posts,
   social profiles). Clicking gives a quick visual pulse instead of
   jumping the page to the top or doing nothing. Swap the href for a
   real URL and remove the "link--soon" class once one exists. */
.link--soon.is-clicked { animation: link-pulse 0.4s ease; }
@keyframes link-pulse {
  0% { opacity: 1; }
  50% { opacity: 0.35; }
  100% { opacity: 1; }
}

/* ==================================================================
   SERVICES
=================================================================== */
.services { padding: 100px 0; background: var(--ink-2); }
.services__head { max-width: 640px; margin-bottom: 52px; }
.services__category { margin-bottom: 44px; }
.services__category:last-child { margin-bottom: 0; }
.services__category-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 18px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.service-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper-faint);
  color: var(--signal);
  margin-bottom: 18px;
}
.service-card__icon::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,11,12,0.06), transparent 70%);
  filter: blur(2px);
  z-index: -1;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--paper-dim);
}

/* ==================================================================
   BLOG
=================================================================== */
.blog { padding: 100px 0; border-top: 1px solid var(--line); }
.blog__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}
.blog__view-all { flex: 0 0 auto; }

.blog__grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin-bottom: 30px;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.blog__grid::-webkit-scrollbar { display: none; }
.blog-card {
  flex: 0 0 clamp(270px, 31vw, 360px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.blog-card__art {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}
.blog-card__art--1 { background: var(--ink-2); }
.blog-card__art--2 { background: var(--ink-3); }
.blog-card__art--3 { background: var(--ink-2); }
.blog-card__art--4 { background: var(--ink-3); }
.blog-card__illustration { width: 70%; max-width: 220px; opacity: 0.85; }
.blog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
}
.blog-card__meta {
  font-size: 12.5px;
  color: var(--paper-dim);
  padding: 20px 20px 0;
}
.blog-card h3 {
  font-size: 17px;
  line-height: 1.3;
  padding: 8px 20px 0;
  margin-bottom: 10px;
}
.blog-card p:not(.blog-card__meta) {
  font-size: 14px;
  color: var(--paper-dim);
  padding: 0 20px;
  margin-bottom: 18px;
}
.blog-card .text-link { margin: 0 20px 22px; }

.blog__dots { display: flex; justify-content: center; gap: 8px; }
.blog__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line-strong);
  cursor: pointer;
  transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}
.blog__dot--active { width: 22px; border-radius: 4px; background: var(--spark); }

.blog__swipe-hint {
  flex: 0 0 64px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--paper-dim);
}
.blog__swipe-icon {
  font-size: 20px;
  animation: swipe-nudge 1.6s ease-in-out infinite;
}
.blog__swipe-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes swipe-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50% { transform: translateX(6px); opacity: 1; }
}

/* ==================================================================
   WHY US (checklist + 2x2 pillar grid)
=================================================================== */
.why-us { position: relative; padding: 100px 0; border-top: 1px solid var(--line); }
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.checklist { display: grid; gap: 22px; margin: 28px 0 26px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(11,11,12,0.06);
  color: var(--dopamine);
}
.checklist__icon svg {
  width: 15px; height: 15px;
  fill: none; stroke: currentColor;
  stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round;
}
.checklist h3 { font-size: 16px; margin-bottom: 4px; }
.checklist p { font-size: 14px; color: var(--paper-dim); }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pillar-card {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line);
}
.pillar-card__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--spark);
  margin-bottom: 10px;
}
.pillar-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.pillar-card p { font-size: 13.5px; color: var(--paper-dim); }

/* ==================================================================
   CTA / BOOK A CALL
=================================================================== */
.cta {
  position: relative;
  padding: 110px 0;
  background: radial-gradient(circle at 30% 20%, rgba(11,11,12,0.06), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(11,11,12,0.04), transparent 50%),
              var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta__mascot {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  animation: mascot-bob 3.4s ease-in-out infinite;
  transform-origin: bottom center;
}
.cta__mascot svg { display: block; width: 100%; }
@keyframes mascot-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .cta__mascot { animation: none; }
}
.cta__inner { max-width: 640px; text-align: center; margin: 0 auto; }
.cta__headline {
  font-size: clamp(30px, 4.6vw, 48px);
  margin-bottom: 18px;
}
.cta__sub {
  color: var(--paper-dim);
  font-size: 17px;
  margin-bottom: 34px;
}

/* ==================================================================
   CONTACT
=================================================================== */
.contact { padding: 100px 0; border-top: 1px solid var(--line); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}
.contact__form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--paper-dim);
}
.field input, .field textarea {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--spark);
}
.contact__status {
  font-size: 14px;
  color: var(--dopamine);
  min-height: 20px;
}

/* ==================================================================
   FOOTER
=================================================================== */
.footer { padding: 60px 0 0; border-top: 1px solid var(--line); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.6fr;
  gap: 32px;
  padding-bottom: 40px;
  align-items: start;
}
.footer__logo { margin-bottom: 12px; }
.footer__tag { color: var(--paper-dim); font-size: 14px; max-width: 32ch; }
.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__links a { color: var(--paper-dim); }
.footer__links a:hover { color: var(--paper); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--paper-dim);
}
.footer__social a:hover { color: var(--paper); border-color: var(--paper); }
.footer__social svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 13px;
  color: var(--paper-dim);
}

/* ==================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 320px; margin: 0 auto 12px; }
  .statbar__grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .statbar__item:nth-child(3) { padding-left: 0; border-left: none; }
  .why-us__grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .ecosystem__grid { grid-template-columns: repeat(2, 1fr); }
  .whatwedo__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy__top { grid-template-columns: 1fr; }
  .philosophy__art { order: -1; max-width: 220px; margin: 0 auto 8px; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog__head { flex-direction: column; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .statbar__grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .ecosystem__grid { grid-template-columns: 1fr; }
  .whatwedo__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .philosophy__pillars { grid-template-columns: 1fr; }
  .philosophy__pillar { padding: 24px 0 !important; border-left: none !important; }
  .philosophy__pillar:nth-child(2) { border-top: 1px solid rgba(255,255,255,0.14); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .avatar { width: 52px; height: 52px; }
}
