/* ============================================================
   moodboard&co — design tokens, layout, sections
   ============================================================ */

:root {
  /* Solids */
  --black: #0A0A0A;
  --near-black: #141414;
  --dark-gray: #2A2A2A;
  --mid-gray: #6B6B6B;
  --light-gray: #B8B8B8;
  --off-white: #F4F1EC;
  --white: #FFFFFF;

  --green: #7ED957;
  --purple: #9B5DE5;
  --coral: #F15BB5;
  --blue: #00BBF9;
  --orange: #FF9B42;
  --yellow: #FEE440;

  --light-cyan: #B8E6F0;
  --light-pink: #F7C6DC;
  --light-yellow: #FFF4CC;
  --light-purple: #E0CFFC;
  --light-green: #D4F1D4;

  /* Gradients */
  --gradient-green: linear-gradient(135deg, #7ED957 0%, #4CAF50 100%);
  --gradient-purple: linear-gradient(135deg, #9B5DE5 0%, #7209B7 100%);
  --gradient-coral: linear-gradient(135deg, #F15BB5 0%, #FCA5A5 100%);
  --gradient-blue: linear-gradient(135deg, #5DADE2 0%, #00BBF9 100%);
  --gradient-orange: linear-gradient(135deg, #FF9B42 0%, #F77F00 100%);
  --gradient-yellow: linear-gradient(135deg, #FEE440 0%, #FFD60A 100%);

  /* Typography */
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;
  --font-serif: "Instrument Serif", "Times New Roman", serif;

  /* Tweakable */
  --accent: var(--green);
  --cursor-color: #FFFFFF;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  background: var(--off-white);
  color: var(--black);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--black);
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Cursor */
@media (hover: hover) and (pointer: fine) {

  body,
  body * {
    cursor: none;
  }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  color: var(--black);
  z-index: 10000;
  display: grid;
  place-items: center;
}

.preloader-content {
  text-align: center;
  font-family: var(--font-display);
}

.preloader h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.progress-bar {
  width: 240px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--purple), var(--coral), var(--blue));
  background-size: 300% 100%;
  animation: gradShift 4s linear infinite;
}

.progress-text {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mid-gray);
}

@keyframes gradShift {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 300% 0;
  }
}

/* ---------- custom cursor ---------- */
.custom-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  background: var(--cursor-color);
  top: 0;
  left: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s ease, height .25s ease, background .4s ease, opacity .2s ease;
}

.custom-cursor.hover {
  width: 64px;
  height: 64px;
}

.custom-cursor.text {
  width: 10px;
  height: 10px;
}

.custom-cursor.hidden {
  opacity: 0;
}

@media (hover: none),
(pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease;
}

.nav.scrolled {
  background: rgba(244, 241, 236, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 48px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}

.nav-logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  transition: background .4s ease, transform .4s ease;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--black);
  display: block;
  transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 767px) {
  .nav {
    padding: 18px 20px;
  }

  .nav.scrolled {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

/* ---------- helpers ---------- */
.section {
  position: relative;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* split-text helpers */
.split-char,
.split-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.split-word {
  white-space: nowrap;
}

/* ============================================================
   01 HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--off-white);
  color: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
}

.hero::before {
  /* grain texture */
  content: "";
  position: absolute;
  inset: 0;
  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.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.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .6;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Global grain — uniform film-grain layer over the whole page, sits above
   section content (z-index <= 5) but under nav/cursor/widgets (z-index >= 90). */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  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.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.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Scroll-velocity distortion — blurs whatever is rendered beneath it via
   backdrop-filter (not `filter` on an ancestor), so it never disturbs the
   position:fixed containing blocks GSAP relies on for pinned sections. */
.scroll-distort-overlay {
  position: fixed;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.hero-label {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 12vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--black);
  margin: 0;
}

.hero-title .amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  padding: 0 0.04em;
}

.hero-subtitle {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: -0.01em;
}

.hero-subtitle em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--black);
  padding: 0 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
}

.scroll-indicator .line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--light-gray), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--black);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(360%);
    opacity: 0;
  }
}

/* hero side meta */
.hero-meta {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0 48px 80px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-gray);
  z-index: 2;
  pointer-events: none;
}

.hero-meta .col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta .col.right {
  text-align: right;
}

@media (max-width: 767px) {
  .hero-meta {
    display: none;
  }
}


/* ============================================================
   02 MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--off-white);
  color: var(--black);
  padding: 200px 0 200px;
  overflow: hidden;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.manifesto-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--mid-gray);
}

.manifesto-block {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.manifesto-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  gap: 24px;
}

.manifesto-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--black);
}

.manifesto-line.b {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  padding-left: 48px;
  color: var(--dark-gray);
}

.manifesto-line .hl {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: var(--gradient-green);
}

.manifesto-line .hl.purple {
  background-image: var(--gradient-purple);
}

.manifesto-line .hl.coral {
  background-image: var(--gradient-coral);
}

/* splitWords() wraps .hl text in .split-word child spans which get
   will-change: transform — that creates a composite layer and breaks
   background-clip: text on the parent. Re-apply gradient on each span. */
.manifesto-line .hl .split-word {
  will-change: opacity;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: inherit;
}

@media (max-width: 767px) {
  .manifesto {
    padding: 96px 0;
  }

  .manifesto-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .manifesto-line.b {
    padding-left: 0;
  }
}

/* ============================================================
   03 SERVICES
   ============================================================ */
.services {
  background: var(--off-white);
  color: var(--black);
  padding: 160px 0 160px;
  position: relative;
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}

.services-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 700px;
}

.services-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card {
  position: relative;
  padding: 64px 48px 72px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: none;
  overflow: hidden;
  transition: background .5s ease, transform .5s cubic-bezier(.2, .7, .2, 1), opacity .4s ease;
}

.service-card:nth-child(odd) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card .num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--card-color, var(--green));
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
}

.service-card .num::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.service-card .title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--black);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.service-card .title .arrow {
  display: inline-block;
  width: 28px;
  height: 28px;
  transform: translateY(2px) rotate(-45deg);
  opacity: 0;
  transition: opacity .4s ease, transform .5s cubic-bezier(.2, .7, .2, 1);
  color: var(--card-color);
}

.service-card .desc {
  margin-top: 28px;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mid-gray);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}

.service-card .accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--card-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.service-card .tag-list {
  position: absolute;
  right: 48px;
  top: 64px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-align: right;
}

.service-card:hover {
  background: rgba(0, 0, 0, 0.04);
}

.service-card:hover .accent-line {
  transform: scaleY(1);
}

.service-card:hover .desc {
  opacity: 1;
  transform: none;
}

.service-card:hover .title .arrow {
  opacity: 1;
  transform: translateY(-4px) rotate(-45deg);
}

.services-grid.is-hovered .service-card:not(:hover) {
  opacity: 0.38;
}

@media (max-width: 767px) {
  .services {
    padding: 96px 0;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 40px 24px 48px;
    border-right: 0 !important;
  }

  .service-card .tag-list {
    display: none;
  }

  .service-card .num {
    margin-bottom: 36px;
  }

  .service-card .desc {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   04 FEATURED WORK (horizontal pinned)
   ============================================================ */
.work {
  position: relative;
  background: var(--off-white);
  height: 1100vh;
  overflow: hidden;
}

.work-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: background-color .6s ease;
}

.work-track {
  display: flex;
  width: 1100vw;
  height: 100%;
  will-change: transform;
}

.work-slide {
  flex: 0 0 100vw;
  height: 100%;
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  padding: 0 80px;
  gap: 40px;
  position: relative;
}

.work-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.work-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.work-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.work-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 112px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--black);
  max-width: 12ch;
}

.work-slide.is-light .work-name {
  color: var(--black);
}

.work-slide.is-light .work-eyebrow {
  color: var(--dark-gray);
}

.work-slide.is-light .work-meta-row {
  color: var(--dark-gray);
}

.work-meta-row {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 32px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.work-meta-row .label {
  display: block;
  color: var(--mid-gray);
  margin-bottom: 6px;
}

.work-meta-row .value {
  color: inherit;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.work-slide.is-light .work-meta-row .value {
  color: var(--black);
}

.work-visual {
  position: relative;
  height: 70vh;
  border-radius: 36px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.work-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
}

.work-visual .visual-label {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  mix-blend-mode: overlay;
}

.work-visual .visual-number {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 240px;
  line-height: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: -0.04em;
}

.work-visual .visual-tagline {
  position: absolute;
  inset: 32px 32px auto auto;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  max-width: 12ch;
  text-align: right;
}

.work-progress {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 14px;
}

.work-progress .current {
  color: var(--black);
  font-size: 16px;
}

.work-slide.is-light~.work-progress {
  color: var(--mid-gray);
}

.work-progress .bar {
  width: 240px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  position: relative;
}

.work-progress .bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--p, 33%);
  background: var(--black);
  transition: width .4s ease;
}

@media (max-width: 1023px) {
  .work {
    height: auto;
  }

  .work-pin {
    position: relative;
    height: auto;
  }

  .work-track {
    display: block;
    width: 100%;
    transform: none !important;
  }

  .work-slide {
    flex: 1 1 auto;
    height: auto;
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 40px;
  }

  .work-visual {
    height: 60vh;
  }

  .work-progress {
    display: none;
  }

  .work-visual .visual-number {
    font-size: 120px;
  }
}

/* ============================================================
   05 CAPABILITIES
   ============================================================ */
.capabilities {
  background: var(--off-white);
  color: var(--black);
  padding: 160px 0;
}

.capabilities-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.capabilities-left {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.capabilities-left .eyebrow {
  color: var(--mid-gray);
}

.capabilities-left h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--black);
  max-width: 14ch;
}

.capabilities-left h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.capabilities-left p {
  color: var(--mid-gray);
  font-size: 15px;
  max-width: 36ch;
  line-height: 1.6;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.cap-item {
  position: relative;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 24px;
  align-items: start;
  cursor: none;
  opacity: 0.6;
  transition: opacity .4s ease;
}

.cap-item.is-active {
  opacity: 1;
}

.cap-active-bar {
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cap-color, var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.cap-item.is-active .cap-active-bar {
  transform: scaleY(1);
}

.cap-item .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mid-gray);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s ease;
}

.cap-item .num .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mid-gray);
  transition: background .3s ease, transform .3s ease;
}

.cap-item .title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
  position: relative;
}

.cap-item .title .underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--cap-color, var(--accent));
  transition: width .5s cubic-bezier(.2, .7, .2, 1);
}

.cap-item .desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mid-gray);
  max-width: 38ch;
  padding-top: 14px;
  transition: color .3s ease;
}

.cap-item .cap-bullets {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cap-item .cap-bullets li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color .3s ease;
}

.cap-item .cap-bullets li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cap-color, var(--accent));
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity .3s ease;
}

.cap-item:hover .num,
.cap-item.is-active .num {
  color: var(--cap-color, var(--accent));
}

.cap-item:hover .num .dot,
.cap-item.is-active .num .dot {
  background: var(--cap-color, var(--accent));
  transform: scale(1.4);
}

.cap-item:hover .title .underline {
  width: 100%;
}

.cap-item:hover .desc {
  color: var(--dark-gray);
}

.cap-item:hover .cap-bullets li {
  color: var(--dark-gray);
}

.cap-item:hover .cap-bullets li::before,
.cap-item.is-active .cap-bullets li::before {
  opacity: 1;
}

@media (max-width: 1023px) {
  .capabilities-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .capabilities-left {
    position: static;
  }

  .cap-item {
    grid-template-columns: 40px 1fr;
  }

  .cap-item .desc {
    grid-column: 2 / -1;
    padding-top: 8px;
  }

  .cap-item .cap-bullets {
    grid-column: 2 / -1;
    padding-top: 8px;
  }
}

@media (max-width: 767px) {
  .capabilities {
    padding: 96px 0;
  }
}

/* ============================================================
   06 MARQUEE
   ============================================================ */
.marquee {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-content {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 12vw, 144px);
  letter-spacing: -0.04em;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
  padding-right: 64px;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee-content .star {
  -webkit-text-stroke: 0;
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85em;
  transition: color .5s ease;
}

.marquee-content .filled {
  -webkit-text-stroke: 0;
  color: var(--white);
}

/* ============================================================
   07 PROCESS
   ============================================================ */
.process {
  position: relative;
  background: var(--off-white);
  height: 500vh;
}

.process-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: background-color .8s ease;
}

.process-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.process-step {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
}

.process-step.is-active {
  opacity: 1;
}

.process-step-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 0 48px;
}

.process-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--step-color, var(--green));
  opacity: 0;
  z-index: 0;
  filter: blur(8px);
  transition: opacity .8s ease, transform .8s ease;
}

.process-step.is-active .process-bg-circle {
  opacity: 0.22;
  transform: translate(-50%, -50%) scale(1);
}

.process-num {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-weight: 200;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--step-color, var(--green));
  letter-spacing: -0.02em;
}

.process-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--black);
  margin-top: 0px;
}

.process-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--step-color, var(--green));
}

.process-quote {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--dark-gray);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.process-meta {
  position: absolute;
  inset: auto 48px 48px 48px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .process {
    height: auto;
  }

  .process-pin {
    position: relative;
    height: auto;
    padding: 100px 0;
  }

  .process-track {
    position: relative;
    height: auto;
  }

  .process-step {
    position: relative;
    inset: auto;
    opacity: 1;
    padding: 60px 0;
  }

  .process-bg-circle {
    width: 360px;
    height: 360px;
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(1);
  }

  .process-meta {
    display: none;
  }
}

/* ============================================================
   08 STATS
   ============================================================ */
.stats {
  background: var(--off-white);
  color: var(--black);
  padding: 160px 0;
}

.stats-eyebrow {
  color: var(--mid-gray);
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

.stat .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background-image: var(--gradient-green);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stat .value .suffix {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.stat[data-color="purple"] .value {
  background-image: var(--gradient-purple);
}

.stat[data-color="yellow"] .value {
  background-image: var(--gradient-yellow);
}

.stat[data-color="coral"] .value {
  background-image: var(--gradient-coral);
}

.stat .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  position: relative;
  padding-top: 16px;
}

.stat .label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 1.2s cubic-bezier(.2, .7, .2, 1) 1.4s;
}

.stat.is-visible .label::before {
  width: 60px;
}

.stat .sublabel {
  font-size: 13px;
  color: var(--mid-gray);
  max-width: 28ch;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .stats {
    padding: 96px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   09 TESTIMONIAL
   ============================================================ */
.trusted {
  background: var(--off-white);
  color: var(--black);
  padding: 220px 0;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.trusted-logo {
  position: absolute;
  width: var(--w);
  height: var(--h);
  transform: rotate(var(--r));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--light-gray);
  opacity: 0;
}

.trusted-heading {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3em;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: -0.03em;
  line-height: 1;
  perspective: 1600px;
}

.trusted-heading .flip-word:first-child {
  font-family: var(--font-display);
  font-weight: 600;
}

.trusted-heading .flip-word:last-child {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.flip-word {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
}

.flip-word .flip-face {
  display: block;
  backface-visibility: hidden;
}

.flip-word .flip-face.front {
  transform: rotateX(0deg);
}

.flip-word .flip-face.back {
  position: absolute;
  inset: 0;
  transform: rotateX(180deg);
}

/* ============================================================
   10 CTA
   ============================================================ */
.cta {
  position: relative;
  min-height: 100vh;
  color: var(--black);
  background: var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, #9B5DE5 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, #00BBF9 0%, transparent 46%),
    radial-gradient(circle at 78% 82%, #F15BB5 0%, transparent 48%),
    radial-gradient(circle at 16% 84%, #7ED957 0%, transparent 46%);
  filter: blur(90px);
  opacity: 0.32;
  z-index: 0;
}

.cta-grain {
  position: absolute;
  inset: 0;
  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 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 56px;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  max-width: 16ch;
}

.cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.cta-email {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--black);
  padding-bottom: 6px;
  letter-spacing: -0.01em;
}

.cta-email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .4s ease;
}

.cta-email:hover::after {
  transform: scaleX(1);
}

.cta-button-wrap {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.cta-button {
  position: relative;
  padding: 22px 56px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: background .35s ease, color .35s ease, box-shadow .4s ease;
  will-change: transform;
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.16);
}

.cta-button .arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s ease;
}

.cta-button:hover {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.22);
}

.cta-button:hover .arrow {
  transform: rotate(45deg) translateX(3px) translateY(-3px);
}

.cta-socials {
  position: absolute;
  inset: auto 0 56px 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.cta-socials a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease;
}

.cta-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.cta-socials a:hover {
  color: var(--black);
}

.cta-socials a:hover::after {
  transform: scaleX(1);
}

/* footer line */
.cta-footer {
  position: absolute;
  inset: 24px 48px auto 48px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 280px;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tweaks-panel.is-open {
  display: flex;
}

.tweaks-panel .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
}

.tweaks-panel .head .close {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  cursor: none;
  font-size: 11px;
}

.tweak-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
}

.tweak-row .swatches {
  display: flex;
  gap: 8px;
}

.tweak-row .swatches button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: none;
  position: relative;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}

.tweak-row .swatches button.active {
  border-color: var(--white);
}

.tweak-row .swatches button:hover {
  transform: scale(1.08);
}

.tweak-row .seg {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 3px;
}

.tweak-row .seg button {
  flex: 1;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--light-gray);
  cursor: none;
  transition: background .2s ease, color .2s ease;
}

.tweak-row .seg button.active {
  background: var(--white);
  color: var(--black);
}

.tweak-row .toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tweak-row .toggle .switch {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  cursor: none;
  transition: background .2s ease;
}

.tweak-row .toggle .switch::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: transform .25s cubic-bezier(.4, .7, .2, 1);
}

.tweak-row .toggle.on .switch {
  background: var(--accent);
}

.tweak-row .toggle.on .switch::after {
  transform: translateX(16px);
}

/* ============================================================
   ELEVATION — visible vibe picker, hero orbs, hover trail,
   discovery badges, mesh blobs, particles, toast
   ============================================================ */

/* animated mesh blobs behind hero */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-mesh .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.34;
  will-change: transform;
}

.hero-mesh .blob.b1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #9B5DE5 0%, transparent 70%);
  top: -8%;
  left: -10%;
  animation: blob-a 22s ease-in-out infinite;
}

.hero-mesh .blob.b2 {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, #00BBF9 0%, transparent 70%);
  bottom: -22%;
  right: -12%;
  animation: blob-b 26s ease-in-out infinite -10s;
}

.hero-mesh .blob.b3 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #F15BB5 0%, transparent 70%);
  top: 30%;
  left: 45%;
  animation: blob-c 20s ease-in-out infinite -6s;
}

@keyframes blob-a {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(70px, -50px) scale(1.18);
  }

  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

@keyframes blob-b {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-80px, -60px) scale(1.1);
  }
}

@keyframes blob-c {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(40px, 30px) scale(1.08);
  }

  70% {
    transform: translate(-50px, -20px) scale(0.94);
  }
}

/* magnetic split-char layer */
.hero-title .split-char {
  will-change: transform;
}

/* ---- interactive orbs in hero ---- */
.orbs-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.orb-hint {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  animation: orbHintFade 5s ease-in-out infinite;
  animation-delay: 4s;
  white-space: nowrap;
}

.orb-hint::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

@keyframes orbHintFade {

  0%,
  100% {
    opacity: 0;
  }

  40%,
  70% {
    opacity: 1;
  }
}

.hero.orbs-discovered .orb-hint {
  display: none;
}

@media (max-width: 767px) {
  .orb-hint {
    bottom: 90px;
    font-size: 10px;
  }
}

/* ---- gravity particles (click) ---- */
.gravity-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
}

/* ---- rainbow hover trail (h1.trailable) ---- */
.rainbow-trail {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(126, 217, 87, 0.6) 0%,
      rgba(155, 93, 229, 0.6) 35%,
      rgba(241, 91, 181, 0.4) 65%,
      rgba(0, 187, 249, 0.0) 100%);
  pointer-events: none;
  filter: blur(8px);
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
}

/* ---- toast ---- */
.toast {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  padding: 13px 22px;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 10001;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* ============================================================
   VIBE PICKER — visible floating control
   ============================================================ */
.vibe-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  height: 52px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), border-color .3s ease, background .3s ease;
}

.vibe-trigger:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.vibe-trigger .swatch-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  transition: background .35s ease, box-shadow .35s ease;
}

.vibe-trigger .label {
  line-height: 1;
}

.vibe-hint {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  animation: vibeHint 4s ease-in-out infinite;
  animation-delay: 3s;
}

.vibe-hint::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 22px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

@keyframes vibeHint {

  0%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }

  40%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
}

.vibe-trigger.is-discovered .vibe-hint {
  display: none;
}

/* Vibe panel */
.vibe-panel {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 96;
  width: 304px;
  background: rgba(15, 15, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 22px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2, .7, .2, 1);
}

.vibe-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.vibe-panel .vp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.vibe-panel .vp-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
}

.vibe-panel .vp-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}

.vibe-panel .vp-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: none;
  font-size: 12px;
  color: var(--light-gray);
}

.vibe-panel .vp-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.vibe-panel .vp-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 18px;
}

.vibe-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vibe-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  text-align: left;
  cursor: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  font-family: var(--font-body);
}

.vibe-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.vibe-option.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.vibe-option .vsw {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.vibe-option .vname {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.vibe-option .vlabel {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: block;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .vibe-trigger {
    right: 16px;
    bottom: 16px;
  }

  .vibe-panel {
    right: 16px;
    left: 16px;
    bottom: 80px;
    width: auto;
  }

  .vibe-options {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .vibe-option {
    padding: 10px 8px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .vibe-option .vsw {
    width: 24px;
    height: 24px;
  }

  .vibe-option .vname {
    font-size: 11px;
  }

  .vibe-option .vlabel {
    display: none;
  }
}

/* ============================================================
   DISCOVERY BADGES
   ============================================================ */
.badges {
  position: fixed;
  top: 96px;
  right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: 260px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: rgba(15, 15, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateX(40px) scale(0.96);
}

.badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--badge-color, var(--accent));
  box-shadow: 0 0 10px var(--badge-color, var(--accent));
}

.badge.is-earned {
  animation: badgeIn 0.6s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes badgeIn {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
  }

  60% {
    transform: translateX(-4px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.badge.fade-out {
  transition: opacity .8s ease, transform .8s ease;
  opacity: 0;
  transform: translateX(40px);
}

@media (max-width: 767px) {
  .badges {
    top: auto;
    right: 16px;
    left: 16px;
    bottom: 80px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    max-width: none;
    pointer-events: none;
  }

  .badge {
    font-size: 9px;
    padding: 6px 12px 6px 8px;
  }
}

/* ── Section color accent blobs ──────────────────────────────────────────── */
/* Shared blob shape — each section defines position, color, size via      */
/* ::before / ::after. z-index: 0 keeps them behind content (z-index 2+). */

/* Manifesto — green top-right, yellow bottom-left */
.manifesto::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #7ED957 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.38;
  top: -12%;
  right: -4%;
}

.manifesto::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #FEE440 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.36;
  bottom: -8%;
  left: 2%;
}

/* Services — coral top-left, orange bottom-right */
.services::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, #F15BB5 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.36;
  top: -5%;
  left: -6%;
}

.services::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, #FF9B42 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.36;
  bottom: -5%;
  right: -6%;
}

/* ============================================================
   09 TEAM
   ============================================================ */
.team {
  background: var(--off-white);
  color: var(--black);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, #F15BB5 0%, transparent 70%);
  filter: blur(82px);
  opacity: 0.30;
  top: -4%;
  left: -4%;
}

.team::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #7ED957 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.28;
  bottom: -4%;
  right: -4%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 72px;
  position: relative;
  z-index: 2;
}

.team-card {
  padding: 48px 44px 56px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s ease;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--card-color, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2, .7, .2, 1);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  background: rgba(0, 0, 0, 0.016);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 32px;
  background: radial-gradient(circle at 35% 35%, var(--card-color, var(--accent)) 0%, transparent 68%);
  opacity: 0.72;
  flex-shrink: 0;
}

.team-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--card-color, var(--accent));
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 6px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.team-bio {
  font-size: 14px;
  line-height: 1.68;
  color: var(--mid-gray);
  max-width: 30ch;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.04s, transform 0.3s ease 0.04s;
}

.team-card:hover .team-bio {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .team {
    padding: 96px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-bio {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   11 GUESS WHO — mini-game team reveal
   ============================================================ */
.guess-who {
  background: var(--off-white);
  color: var(--black);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.guess-who::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #9B5DE5 0%, transparent 70%);
  filter: blur(90px);
  opacity: 0.26;
  top: -10%;
  left: -8%;
}

.guess-who::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, #7ED957 0%, transparent 70%);
  filter: blur(85px);
  opacity: 0.24;
  bottom: -10%;
  right: -6%;
}

.gw-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  counter-reset: gw-counter;
}

.gw-card {
  aspect-ratio: 3 / 4;
  perspective: 1600px;
  cursor: none;
  counter-increment: gw-counter;
  transition: transform 0.45s cubic-bezier(.2, .7, .2, 1);
}

.gw-card:hover {
  transform: translateY(-10px);
}

.gw-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.gw-card.is-flipped .gw-card-inner {
  transform: rotateY(180deg);
}

.gw-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 10, 10, 0.05);
  transition: box-shadow 0.45s ease;
}

.gw-card:hover .gw-face {
  box-shadow: 0 28px 56px -16px rgba(10, 10, 10, 0.22), 0 0 0 1px var(--gw-color, var(--accent)) inset;
}

.gw-front {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.gw-front-top {
  flex: 1 1 58%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gw-gradient, var(--gw-color, var(--accent)));
}

.gw-front-bottom {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 24px 28px;
}

.gw-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gw-color, var(--accent));
  box-shadow: 0 8px 18px rgba(10, 10, 10, 0.2);
  transform: rotate(-9deg);
  animation: gwBounce 1.6s ease-in-out infinite;
}

.gw-silhouette {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 55%, transparent 76%);
  position: relative;
}

.gw-silhouette::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  width: 116px;
  height: 62px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.55);
}

.gw-player {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gw-color, var(--accent));
}

.gw-player::before {
  content: "Player " counter(gw-counter, decimal-leading-zero);
}

.gw-scramble {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  padding: 6px 16px;
  margin-top: 4px;
}

.gw-cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-top: 8px;
}

.gw-back {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  position: relative;
}

.gw-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gw-gradient, var(--gw-color, var(--accent)));
}

.gw-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gw-color, var(--accent));
  border: 1px solid var(--gw-color, var(--accent));
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.gw-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 6px;
}

.gw-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gw-fact {
  position: relative;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mid-gray);
  max-width: 28ch;
  margin-bottom: 24px;
}

.gw-fact::before {
  content: '\201C';
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--gw-color, var(--accent));
  opacity: 0.22;
  pointer-events: none;
}

.gw-connect {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gw-connect a {
  color: var(--light-gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gw-connect a:hover {
  color: var(--gw-color, var(--accent));
  border-color: var(--gw-color, var(--accent));
}

@keyframes gwBounce {

  0%,
  100% {
    transform: translateY(0) rotate(-9deg);
  }

  50% {
    transform: translateY(-8px) rotate(-9deg);
  }
}

@media (max-width: 1023px) {
  .gw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .guess-who {
    padding: 96px 0;
  }

  .gw-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gw-card {
    aspect-ratio: 4 / 5;
  }
}

/* Work — purple top-right, blue bottom-left (inside sticky pin) */
.work-pin::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #9B5DE5 0%, transparent 70%);
  filter: blur(85px);
  opacity: 0.32;
  top: -15%;
  right: 0%;
}

.work-pin::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, #00BBF9 0%, transparent 70%);
  filter: blur(85px);
  opacity: 0.32;
  bottom: -15%;
  left: 0%;
}

/* Capabilities — green top-right, blue bottom-left */
.capabilities::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, #7ED957 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.36;
  top: 0%;
  right: -4%;
}

.capabilities::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #00BBF9 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.34;
  bottom: 0%;
  left: -4%;
}

.cap-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c) 0%, transparent 70%);
  filter: blur(82px);
  opacity: 0.32;
}

/* Stats — purple top-left, yellow bottom-right */
.stats::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #9B5DE5 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.36;
  top: -8%;
  left: -6%;
}

.stats::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, #FEE440 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.38;
  bottom: -8%;
  right: -6%;
}

.trusted::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, #9B5DE5 0%, transparent 70%);
  filter: blur(90px);
  opacity: 0.22;
  top: -10%;
  left: -8%;
}

.trusted::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #00BBF9 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.22;
  bottom: -15%;
  right: -8%;
}

/* Mobile — halve blob sizes */
@media (max-width: 767px) {

  .manifesto::before,
  .manifesto::after,
  .services::before,
  .services::after,
  .capabilities::before,
  .capabilities::after,
  .stats::before,
  .stats::after,
  .team::before,
  .team::after,
  .trusted::before,
  .trusted::after,
  .guess-who::before,
  .guess-who::after {
    width: 300px;
    height: 300px;
    filter: blur(55px);
  }

  .cap-blob {
    width: 280px;
    height: 280px;
    filter: blur(55px);
  }

  .work-pin::before,
  .work-pin::after {
    width: 320px;
    height: 320px;
    filter: blur(60px);
  }

  .trusted {
    padding: 120px 0;
    min-height: 420px;
  }

  .trusted-logo:nth-child(n+13) {
    display: none;
  }
}