/* ==========================================================================
   48collect — global styles
   ========================================================================== */

:root {
  /* Core */
  --black: #0a0a0a;
  --ink: #111114;
  --white: #ffffff;
  --offwhite: #fafaf7;
  --paper: #f5f4ef;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.16);
  --muted: #5a5a62;

  /* Pastels */
  --pastel-pink: #ffd1dc;
  --pastel-peach: #ffd9b3;
  --pastel-yellow: #fff2b3;
  --pastel-mint: #c8f1d8;
  --pastel-sky: #c5e4ff;
  --pastel-lilac: #e0c5ff;
  --pastel-rose: #ffc4d6;
  --pastel-sand: #f1e7d4;

  /* Type */
  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Layout */
  --max: 1320px;
  --gutter: clamp(16px, 4vw, 56px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emph: cubic-bezier(0.65, 0, 0.05, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--offwhite);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--black); color: var(--white); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(44px, 8vw, 124px); line-height: 0.95; letter-spacing: -0.04em; font-weight: 600; }
h2 { font-size: clamp(34px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; }
h4 { font-size: clamp(18px, 1.6vw, 22px); }

p { margin: 0; }
.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--muted); }

/* ==========================================================================
   Custom Cursor
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-follower {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
  }
  .cursor {
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.12s var(--ease);
  }
  .cursor-follower {
    width: 36px; height: 36px;
    border: 1.5px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.32s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
  }
  body.is-hovering .cursor-follower { width: 64px; height: 64px; }
  body.is-hovering .cursor { transform: translate(-50%, -50%) scale(0); }
}
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
}

.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 30px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.nav__menu a {
  display: inline-block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__menu a:hover { background: var(--black); color: var(--white); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--black);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); background: #1c1c20; }
.nav__cta::after { content: '→'; font-size: 14px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  border: 0;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 16px; height: 1.5px; background: var(--white); display: block;
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--white);
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after { top: 5px; }

@media (max-width: 920px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  color: var(--white);
  z-index: 99;
  padding: 100px var(--gutter) 40px;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-emph);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 40px; }
.mobile-menu li { border-top: 1px solid rgba(255,255,255,0.12); }
.mobile-menu li:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-menu a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.mobile-menu .mobile-cta {
  display: inline-flex; gap: 10px; padding: 16px 28px; background: var(--white); color: var(--black);
  border-radius: 999px; font-weight: 500; margin-top: 8px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
  will-change: transform;
  animation: drift 22s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; top: -120px; left: -80px; background: var(--pastel-pink); animation-duration: 18s; }
.blob-2 { width: 460px; height: 460px; top: 6%; right: -100px; background: var(--pastel-sky); animation-duration: 24s; animation-delay: -4s; }
.blob-3 { width: 380px; height: 380px; bottom: -120px; left: 25%; background: var(--pastel-mint); animation-duration: 20s; animation-delay: -8s; }
.blob-4 { width: 360px; height: 360px; bottom: -80px; right: 12%; background: var(--pastel-lilac); animation-duration: 26s; animation-delay: -2s; }
.blob-5 { width: 300px; height: 300px; top: 38%; left: 38%; background: var(--pastel-yellow); animation-duration: 19s; animation-delay: -10s; }
.blob-6 { width: 280px; height: 280px; top: 58%; left: 6%; background: var(--pastel-peach); animation-duration: 23s; animation-delay: -6s; }

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.08); }
  66%  { transform: translate(-30px, 40px) scale(0.95); }
  100% { transform: translate(20px, 20px) scale(1.05); }
}

.hero__grain {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
}

.hero__copy { max-width: 820px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__eyebrow .dot { width: 8px; height: 8px; background: #00b97a; border-radius: 50%; box-shadow: 0 0 0 4px rgba(0,185,122,0.18); }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 9.5vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 600;
}
.hero__headline span.italic {
  font-style: italic;
  font-family: 'Inter', serif;
  font-weight: 300;
}
.hero__headline .pill {
  display: inline-flex;
  align-items: center;
  padding: 0 0.32em 0.06em;
  margin: 0 0.04em;
  background: var(--pastel-yellow);
  border-radius: 999px;
  font-style: italic;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  font-size: 0.7em;
  vertical-align: middle;
  border: 1.5px solid var(--black);
}
.hero__headline .pill.pink { background: var(--pastel-rose); }
.hero__headline .pill.sky { background: var(--pastel-sky); }
.hero__headline .pill.mint { background: var(--pastel-mint); }
.hero__headline strong { font-weight: 700; }

.hero__sub {
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { transform: translateY(-2px); background: #1c1c20; }
.btn--ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); }
.btn--paper { background: var(--white); color: var(--black); border-color: var(--line-strong); }
.btn--paper:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero visual / orbit */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(10,10,10,0.14);
  animation: spin 60s linear infinite;
}
.orbit-2 { inset: 14%; animation-duration: 40s; animation-direction: reverse; border-color: rgba(10,10,10,0.18); }
.orbit-3 { inset: 28%; animation-duration: 28s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orbit-chip {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--black);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.orbit-chip--alt {
  top: auto; bottom: -22px;
  background: var(--black); color: var(--white);
}
.orbit-chip--left {
  top: 50%; left: -10px; transform: translate(-100%, -50%);
  background: var(--pastel-mint); border-color: var(--black);
}
.orbit-chip--right {
  top: 50%; left: auto; right: -10px; transform: translate(100%, -50%);
  background: var(--pastel-pink); border-color: var(--black);
}

.hero__core {
  position: absolute;
  inset: 32%;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 30px 60px -20px rgba(10,10,10,0.4);
}
.hero__core::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  opacity: 0.2;
}

.hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--black);
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px -12px rgba(10,10,10,0.18);
  animation: bob 6s ease-in-out infinite;
}
.float-card .swatch { width: 10px; height: 10px; border-radius: 50%; background: var(--pastel-pink); }
.float-card.fc-1 { top: 6%; left: -8%; animation-delay: -2s; }
.float-card.fc-1 .swatch { background: var(--pastel-pink); }
.float-card.fc-2 { top: 38%; right: -16%; animation-delay: -4s; }
.float-card.fc-2 .swatch { background: var(--pastel-sky); }
.float-card.fc-3 { bottom: 8%; left: 4%; animation-delay: -1s; }
.float-card.fc-3 .swatch { background: var(--pastel-mint); }
.float-card.fc-4 { bottom: 22%; right: -4%; animation-delay: -3s; }
.float-card.fc-4 .swatch { background: var(--pastel-lilac); }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 980px) {
  .hero__visual { max-width: 360px; margin: 0 auto; }
  .float-card.fc-1 { left: -4%; }
  .float-card.fc-2 { right: -8%; }
  .float-card.fc-4 { right: -2%; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--black);
  color: var(--white);
  border-block: 1px solid var(--black);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .dot {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.marquee__track .dot.pink { background: var(--pastel-pink); }
.marquee__track .dot.sky { background: var(--pastel-sky); }
.marquee__track .dot.mint { background: var(--pastel-mint); }
.marquee__track .dot.yellow { background: var(--pastel-yellow); }
.marquee__track .dot.lilac { background: var(--pastel-lilac); }
.marquee__track .dot.peach { background: var(--pastel-peach); }

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Section base
   ========================================================================== */

.section {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
}
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--offwhite); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.section__head {
  max-width: 980px;
  margin: 0 auto 60px;
  text-align: left;
}
.section__head--center { margin-inline: auto; text-align: center; }

.section__head h2 { margin-top: 16px; }
.section__head p { margin-top: 24px; max-width: 680px; }
.section__head--center p { margin-inline: auto; }

.section__inner { max-width: var(--max); margin: 0 auto; }

/* ==========================================================================
   About / value pillars
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.about-grid h2 { margin-bottom: 24px; }
.about-grid p { color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(10,10,10,0.18); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.pillar h4 { margin: 18px 0 8px; }
.pillar p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.pillar::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--pastel-pink);
  opacity: 0.45;
  filter: blur(20px);
  transition: opacity 0.4s var(--ease);
}
.pillar:nth-child(2)::after { background: var(--pastel-sky); }
.pillar:nth-child(3)::after { background: var(--pastel-mint); }
.pillar:nth-child(4)::after { background: var(--pastel-lilac); }
.pillar:hover::after { opacity: 0.85; }

@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services grid (technical)
   ========================================================================== */

.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.service {
  position: relative;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(10,10,10,0.35); }

.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg, var(--pastel-pink));
  z-index: -1;
  opacity: 0.45;
  transition: opacity 0.4s var(--ease);
}
.service:hover::before { opacity: 0.95; }

.service__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.service__num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
  opacity: 0.55;
}
.service h3 { margin-bottom: 12px; max-width: 18ch; }
.service p { color: var(--ink); opacity: 0.78; font-size: 15px; line-height: 1.55; max-width: 38ch; }
.service__tags {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service__tag {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--black);
  background: rgba(255,255,255,0.65);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* span widths */
.service.s-6 { grid-column: span 6; }
.service.s-5 { grid-column: span 5; }
.service.s-7 { grid-column: span 7; }
.service.s-4 { grid-column: span 4; }
.service.s-8 { grid-column: span 8; }
.service.s-12 { grid-column: span 12; }

@media (max-width: 980px) {
  .service.s-6, .service.s-5, .service.s-7, .service.s-4, .service.s-8 { grid-column: span 12; }
}

.service--feature h3 { font-size: clamp(28px, 3.6vw, 44px); max-width: 16ch; }

/* ==========================================================================
   Social / marketing
   ========================================================================== */

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 920px) { .social-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .social-grid { grid-template-columns: 1fr; } }

.s-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.s-card:hover { transform: translateY(-4px); border-color: var(--black); }
.s-card .swatch {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--black);
}
.s-card .swatch svg { width: 18px; height: 18px; }
.s-card h4 { margin-bottom: 8px; font-size: 20px; }
.s-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.s-card .meta {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s-card--featured {
  grid-column: span 2;
  background: var(--pastel-yellow);
  border-color: var(--black);
}
@media (max-width: 600px) { .s-card--featured { grid-column: span 1; } }

.s-card--featured h4 { font-size: clamp(22px, 2.2vw, 28px); max-width: 24ch; }

/* clipping showcase */
.clipping {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: stretch;
}
.clipping__copy { grid-column: span 5; align-self: center; }
.clipping__visual {
  grid-column: span 7;
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-sky) 50%, var(--pastel-mint) 100%);
  border: 1px solid var(--black);
  overflow: hidden;
  padding: 28px;
}
@media (max-width: 980px) {
  .clipping__copy, .clipping__visual { grid-column: span 12; }
}
.clip-frame {
  position: absolute;
  background: var(--ink);
  color: var(--white);
  border-radius: 22px;
  padding: 18px;
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1.5px solid var(--black);
  box-shadow: 0 20px 40px -20px rgba(10,10,10,0.4);
}
.clip-frame .top { display: flex; justify-content: space-between; font-size: 11px; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; }
.clip-frame .label { font-size: clamp(18px, 2vw, 26px); font-weight: 500; max-width: 12ch; }
.clip-frame .bar { display: flex; gap: 4px; }
.clip-frame .bar i { display: block; width: 4px; height: 18px; background: rgba(255,255,255,0.4); border-radius: 4px; }
.clip-frame .bar i:nth-child(odd) { background: rgba(255,255,255,0.85); }

.clip-frame.cf-1 { top: 6%; left: 5%; width: 38%; height: 64%; transform: rotate(-6deg); }
.clip-frame.cf-2 { top: 22%; left: 36%; width: 32%; height: 60%; background: var(--pastel-yellow); color: var(--black); transform: rotate(2deg); z-index: 2; }
.clip-frame.cf-2 .bar i { background: rgba(10,10,10,0.3); }
.clip-frame.cf-2 .bar i:nth-child(odd) { background: rgba(10,10,10,0.85); }
.clip-frame.cf-3 { top: 12%; right: 5%; width: 30%; height: 58%; background: var(--white); color: var(--black); transform: rotate(8deg); }
.clip-frame.cf-3 .bar i { background: rgba(10,10,10,0.3); }
.clip-frame.cf-3 .bar i:nth-child(odd) { background: rgba(10,10,10,0.85); }

/* ==========================================================================
   Process timeline
   ========================================================================== */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid rgba(255,255,255,0.18);
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }

.process__step {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
  position: relative;
}
.process__step:last-child { border-right: 0; }
@media (max-width: 880px) { .process__step:nth-child(2n) { border-right: 0; } }
@media (max-width: 540px) { .process__step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); } .process__step:last-child { border-bottom: 0; } }

.process__num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  opacity: 0.5;
  margin-bottom: 24px;
}
.process__step h4 { color: var(--white); margin-bottom: 10px; font-size: 22px; }
.process__step p { color: rgba(255,255,255,0.65); font-size: 14.5px; }
.process__step .swatch {
  margin-top: 22px;
  width: 54px; height: 6px; border-radius: 999px; background: var(--pastel-pink);
}
.process__step:nth-child(2) .swatch { background: var(--pastel-sky); }
.process__step:nth-child(3) .swatch { background: var(--pastel-mint); }
.process__step:nth-child(4) .swatch { background: var(--pastel-lilac); }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
}
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }

.stat {
  padding: 36px 28px;
  background: var(--white);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat__label {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.stat:nth-child(1) { background: var(--pastel-pink); }
.stat:nth-child(2) { background: var(--pastel-sky); }
.stat:nth-child(3) { background: var(--pastel-mint); }
.stat:nth-child(4) { background: var(--pastel-lilac); }

/* ==========================================================================
   Stack / tools
   ========================================================================== */

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chip {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.chip:hover { transform: translateY(-2px); background: var(--black); color: var(--white); border-color: var(--black); }
.chip .swatch { width: 8px; height: 8px; border-radius: 50%; background: var(--pastel-pink); }
.chip:nth-child(3n) .swatch { background: var(--pastel-sky); }
.chip:nth-child(3n+1) .swatch { background: var(--pastel-mint); }
.chip:nth-child(3n+2) .swatch { background: var(--pastel-lilac); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.tlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .tlist { grid-template-columns: 1fr; } }
.t-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line-strong);
  position: relative;
}
.t-card .quote { font-size: 17px; line-height: 1.55; margin-bottom: 24px; font-family: var(--font-display); font-weight: 400; }
.t-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.t-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pastel-pink);
  border: 1px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.t-card:nth-child(2) .avatar { background: var(--pastel-sky); }
.t-card:nth-child(3) .avatar { background: var(--pastel-mint); }
.t-card .who p { font-size: 14px; font-weight: 600; }
.t-card .who span { font-size: 12.5px; color: var(--muted); display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--line-strong); }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--ink);
}
.faq__q .ic {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--black); color: var(--white); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a p {
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  position: relative;
  padding: clamp(60px, 8vw, 110px);
  border-radius: var(--radius-xl);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 20%, var(--pastel-pink) 0%, transparent 35%),
    radial-gradient(circle at 80% 30%, var(--pastel-sky) 0%, transparent 32%),
    radial-gradient(circle at 30% 80%, var(--pastel-mint) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, var(--pastel-lilac) 0%, transparent 32%);
  filter: blur(50px);
  opacity: 0.6;
  z-index: -1;
}
.cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 40px; }
@media (max-width: 880px) { .cta__inner { grid-template-columns: 1fr; align-items: start; } }
.cta h2 { color: var(--white); font-size: clamp(36px, 6vw, 86px); letter-spacing: -0.04em; line-height: 1; max-width: 14ch; }
.cta p { color: rgba(255,255,255,0.72); margin-top: 24px; max-width: 50ch; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.cta__buttons .btn--primary { background: var(--white); color: var(--black); }
.cta__buttons .btn--primary:hover { background: var(--pastel-yellow); }
.cta__buttons .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta__buttons .btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--offwhite);
  padding: 80px var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand img { height: 32px; margin-bottom: 20px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 36ch; }

.footer__col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.footer__col a:hover { color: var(--white); text-decoration: underline; }

.footer__contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.footer__contact a { color: var(--white); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__bottom .dots { display: flex; gap: 6px; }
.footer__bottom .dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.footer__bottom .dots i:nth-child(1) { background: var(--pastel-pink); }
.footer__bottom .dots i:nth-child(2) { background: var(--pastel-sky); }
.footer__bottom .dots i:nth-child(3) { background: var(--pastel-mint); }
.footer__bottom .dots i:nth-child(4) { background: var(--pastel-lilac); }
.footer__bottom .dots i:nth-child(5) { background: var(--pastel-yellow); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Mobile — phone & small tablet
   ========================================================================== */

@media (max-width: 720px) {
  /* nav: tighter padding, scrolled state shrinks more */
  .nav { padding: 12px var(--gutter); }
  .nav.scrolled { padding-block: 10px; }
  .nav__logo img { height: 26px; }

  /* mobile menu spacing */
  .mobile-menu { padding: 90px var(--gutter) 32px; }
  .mobile-menu a { font-size: 28px; padding: 18px 0; }
  .mobile-menu .mobile-cta { padding: 14px 24px; font-size: 14px; }

  /* hero: stack and breathe */
  .hero {
    min-height: auto;
    padding: 110px var(--gutter) 60px;
  }
  .hero__inner { gap: 28px; }
  .hero__eyebrow { margin-bottom: 20px; padding: 7px 12px; font-size: 11px; }
  .hero__headline { line-height: 0.96; }
  .hero__sub { margin-top: 20px; font-size: 15.5px; }
  .hero__cta { margin-top: 28px; gap: 10px; }
  .hero__cta .btn { padding: 13px 22px; font-size: 14px; }

  /* hide busy floats and shrink visual */
  .hero__floats { display: none; }
  .hero__visual { max-width: 280px; }
  .blob { filter: blur(50px); opacity: 0.7; }
  .blob-1 { width: 380px; height: 380px; top: -80px; left: -120px; }
  .blob-2 { width: 320px; height: 320px; top: 4%; right: -120px; }
  .blob-3, .blob-4, .blob-5, .blob-6 { display: none; }

  /* marquee */
  .marquee { padding: 16px 0; }
  .marquee__track { gap: 36px; font-size: 18px; }
  .marquee__track span { gap: 36px; }

  /* sections: tighter padding */
  .section { padding: 60px var(--gutter); }
  .section__head { margin-bottom: 36px; }
  .section__head h2 { margin-top: 12px; }
  .section__head p { margin-top: 16px; font-size: 15.5px; }

  /* about + pillars */
  .about-grid { gap: 32px; }
  .pillars { gap: 12px; }
  .pillar { padding: 22px; }

  /* services */
  .services { gap: 12px; }
  .service { padding: 24px; min-height: 240px; border-radius: var(--radius-md); }
  .service__icon { width: 48px; height: 48px; margin-bottom: 18px; border-radius: 12px; }
  .service__icon svg { width: 22px; height: 22px; }
  .service__num { top: 22px; right: 24px; }
  .service h3 { margin-bottom: 10px; }
  .service p { font-size: 14.5px; }
  .service__tags { padding-top: 16px; }
  .service--feature h3 { font-size: 30px; }

  /* social grid */
  .social-grid { gap: 12px; }
  .s-card { padding: 24px; min-height: 220px; }

  /* clipping showcase */
  .clipping { margin-top: 48px; gap: 16px; }
  .clipping__visual { min-height: 360px; padding: 18px; }
  .clip-frame { padding: 14px; border-radius: 16px; }
  .clip-frame .label { font-size: 16px; }

  /* process timeline */
  .process__step { padding: 32px 22px; }
  .process__step h4 { font-size: 20px; }

  /* stats */
  .stat { padding: 28px 22px; }
  .stat__num { font-size: 44px; }
  .stat__label { margin-top: 10px; font-size: 12px; }

  /* tlist */
  .t-card { padding: 24px; }
  .t-card .quote { font-size: 16px; margin-bottom: 18px; }

  /* faq */
  .faq__q { padding: 22px 0; gap: 16px; }
  .faq__q .ic { width: 32px; height: 32px; }
  .faq__a p { font-size: 15px; }

  /* cta */
  .cta { padding: 50px 28px; border-radius: var(--radius-lg); }
  .cta h2 { font-size: 40px; }
  .cta p { margin-top: 18px; font-size: 15px; }
  .cta__buttons { margin-top: 24px; gap: 10px; }
  .cta__buttons .btn { padding: 13px 22px; font-size: 14px; flex: 1 1 auto; justify-content: center; }

  /* footer */
  .footer { padding: 56px var(--gutter) 28px; }
  .footer__top { padding-bottom: 40px; gap: 28px; }
  .footer__brand img { height: 28px; margin-bottom: 14px; }
  .footer__brand p { font-size: 14px; }
  .footer__col h5 { margin-bottom: 12px; }
  .footer__contact { margin-top: 18px; font-size: 14px; }
  .footer__bottom { padding-top: 22px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 420px) {
  .hero { padding: 100px var(--gutter) 48px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; width: 100%; }
  .hero__visual { max-width: 220px; }

  .marquee__track { gap: 28px; font-size: 16px; }
  .marquee__track span { gap: 28px; }

  .stat { padding: 22px 18px; }
  .stat__num { font-size: 38px; }

  .cta { padding: 40px 22px; }
  .cta h2 { font-size: 34px; }
}

/* iOS tap target floor + prevent iOS zoom on form inputs */
@media (hover: none) {
  .btn { min-height: 44px; }
  input, textarea, select { font-size: 16px; }
}
