/* ============ tokens (theme-driven, live via CSS vars) ============ */
:root {
  --bg: #0c0c0c;
  --fg: #f4f4f2;
  --fg-muted: #8e8e8a;
  --border: #1f1f1f;
  --card: #141414;
  --dark-surface: #000;
  --dark-2: #141414;
  --accent: #B6FF3B;           /* lime */
  --accent-hover: #9FE030;
  --accent-muted: rgba(182,255,59,0.15);
  --accent-ink: #0f0f0f;       /* text that sits ON accent */
  --font-sans: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --font-heading: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --grid-dot: rgba(255,255,255,0.08);
  --grid-dot-dark: rgba(255,255,255,0.07);
  --motion-scale: 1;
}

/* light islands (hero + faq) */
.section-light {
  --bg: #FAF9F6;
  --fg: #161616;
  --fg-muted: #6b6b6b;
  --border: #E5E5E5;
  --card: #FFFFFF;
  --grid-dot: rgba(22,22,22,0.14);
  background: var(--bg);
  color: var(--fg);
}

/* ============ base ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  transition: background .5s ease, color .5s ease;
}

section[id] { scroll-margin-top: 80px; }
@media (max-width: 820px) { section[id] { scroll-margin-top: 72px; } }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-heading); margin: 0; }
h1 { font-weight: 900; font-size: clamp(44px, 7.5vw, 124px); line-height: .95; letter-spacing: -0.035em; }
h2 { font-weight: 800; font-size: clamp(34px, 4.6vw, 72px); line-height: 1.02; letter-spacing: -0.025em; }
h3 { font-weight: 600; font-size: clamp(18px, 1.5vw, 22px); line-height: 1.25; letter-spacing: -0.01em; }
p  { margin: 0; }

/* ============ utilities ============ */
.container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 48px); }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.mono-sm { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.hairline { height: 1px; background: var(--border); width: 100%; }

.dot-grid { background-image: radial-gradient(circle, var(--grid-dot) 1px, transparent 1px); background-size: 28px 28px; }
.dot-grid-tight { background-image: radial-gradient(circle, var(--grid-dot) 1px, transparent 1px); background-size: 18px 18px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted);
}
.eyebrow::before { content:""; width: 28px; height: 1px; background: currentColor; opacity: .5; }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  font-family: var(--font-sans);
}
.btn-lime { background: var(--accent); color: var(--accent-ink); }
.btn-lime:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn-dark { background: var(--fg); color: var(--bg); }
.btn-dark:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ============ reveal ============ */
.reveal { opacity: 0; transform: translateY(calc(24px * var(--motion-scale))); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .05s; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .2s; }
.reveal-d4 { transition-delay: .28s; }

/* clip-path reveal para h1/h2 — efecto cortina */
h1.reveal, h2.reveal {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .9s cubic-bezier(.16,1,.3,1);
}
h1.reveal.in, h2.reveal.in { clip-path: inset(0 0 0% 0); }
h1.reveal-d1, h2.reveal-d1 { transition-delay: .05s; }
h1.reveal-d2, h2.reveal-d2 { transition-delay: .12s; }

/* ============ marquee ============ */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 48px; animation: marquee calc(40s / var(--motion-scale, 1)) linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ blobs ============ */
@keyframes float-slow { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-40px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(.95); } }
@keyframes float-medium { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-40px,30px) scale(1.08); } 66% { transform: translate(25px,-35px) scale(.92); } }
@keyframes float-fast { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-25px) scale(1.03); } }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .6; }
.blob-slow { animation: float-slow calc(14s / var(--motion-scale, 1)) ease-in-out infinite; }
.blob-med  { animation: float-medium calc(10s / var(--motion-scale, 1)) ease-in-out infinite; }
.blob-fast { animation: float-fast calc(7s / var(--motion-scale, 1)) ease-in-out infinite; }

/* ============ striped placeholder ============ */
.placeholder {
  position: relative; overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--border) 0 1px, transparent 1px 12px), var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted); font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 12px;
}
.placeholder-dark {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 12px), #141414;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
}

/* ============ cursor glow ============ */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 0;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-muted), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: calc(var(--motion-scale) * 0.7);
  transition: transform .08s linear, opacity .3s ease, width .4s cubic-bezier(.2,.7,.2,1), height .4s cubic-bezier(.2,.7,.2,1);
  mix-blend-mode: multiply;
}
[data-theme="dark"] .cursor-glow { mix-blend-mode: screen; }

/* ============ nav ============ */
@keyframes nav-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 50;
  padding: 0 24px 0 0;
  transition: top .3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 32px;
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-left: none;
  border-radius: 0 999px 999px 0;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
  isolation: isolate;
  will-change: backdrop-filter;
  transform: translateZ(0);
}
.nav-dark .nav-inner {
  background: rgba(28, 28, 28, 0.6);
  border: 1px solid rgba(255,255,255,.14);
  border-left: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.22);
}
.nav-dark .nav-link { color: #f4f4f2; }
.nav-dark .nav-link::after { background: #f4f4f2; }
.nav-dark .nav-cta { background: #f4f4f2; color: #0e0e0e; border-color: #f4f4f2; }

.nav-light .nav-inner {
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.05);
  border-left: none;
  box-shadow: 0 4px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
}
.nav-light .nav-link { color: #0e0e0e; }
.nav-light .nav-link::after { background: #0e0e0e; }
.nav-light .nav-cta { background: #0e0e0e; color: #f4f4f2; border-color: #0e0e0e; }

.nav.scrolled.nav-dark .nav-inner { background: rgba(28, 28, 28, 0.7); border-color: rgba(255,255,255,.18); }
.nav.scrolled.nav-light .nav-inner { background: rgba(255,255,255,.6); }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 20px; }
.nav-logo-mark { width: 28px; height: 28px; border-radius: 8px; background: var(--fg); display: grid; place-items: center; color: var(--bg); font-family: var(--font-mono); font-weight: 700; font-size: 13px; }
.nav-links { display: flex; gap: 28px; }
.nav-link { text-decoration: none; font-size: 14px; font-weight: 600; position: relative; padding: 6px 2px; transition: color .4s ease; }
.nav-cta { transition: background .4s ease, color .4s ease, border-color .4s ease; }
.nav-link::after { content:""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: #f4f4f2; transform-origin: left; transform: scaleX(0); transition: transform .3s ease; }
.nav-link:hover::after { transform: scaleX(1); }

/* CTA visible on desktop */
.nav-cta { display: inline-flex; }

/* Burger button - hidden on desktop */
.nav-burger { display: none; width: 40px; height: 40px; border: 1px solid rgba(128,128,128,.3); background: transparent; border-radius: 999px; padding: 0; cursor: pointer; position: relative; flex-shrink: 0; transition: border-color .35s ease; }
.nav-dark .nav-burger { border-color: rgba(255,255,255,.2); }
.nav-light .nav-burger { border-color: rgba(0,0,0,.15); }
.nav-burger span { position: absolute; left: 50%; top: 50%; width: 16px; height: 1.5px; border-radius: 2px; transition: transform .3s ease, opacity .2s ease, top .3s ease, background .35s ease; transform: translate(-50%, -50%); }
.nav-dark .nav-burger span { background: #f4f4f2; }
.nav-light .nav-burger span { background: #0e0e0e; }
.nav-burger span:nth-child(1) { top: calc(50% - 5px); }
.nav-burger span:nth-child(3) { top: calc(50% + 5px); }
.nav-burger.is-open span:nth-child(1) { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

/* Drawer */
.nav-drawer { position: fixed; inset: 0; background: var(--bg); z-index: -1; opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 80px 24px 32px; display: flex; }
.nav-drawer.is-open { opacity: 1; pointer-events: auto; z-index: 49; }
.nav-drawer-inner { width: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 8px; }
.nav-drawer-links a { font-family: var(--font-heading); font-weight: 700; font-size: clamp(36px, 9vw, 56px); letter-spacing: -0.02em; color: var(--fg); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--border); }
.nav-drawer-cta { align-self: flex-start; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav { top: 12px; padding: 0 16px 0 0; }
  .nav-inner { padding: 8px 14px 8px 16px; border-radius: 0 999px 999px 0; border-left: none; backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%); }
}

/* ============ hero: shared ============ */
.hero-wrap { position: relative; overflow: hidden; }
.hero-kicker { display: inline-flex; align-items: center; gap: 12px; }
.hero-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 24px var(--accent); }
.hero-headline { font-family: var(--font-heading); }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-headline .serif { font-family: "Instrument Serif", "Fraunces", serif; font-weight: 400; font-style: italic; letter-spacing: -0.02em; }

/* hero variant: dark spotlight */
.hero-dark { background: var(--dark-surface); color: #f4f4f2; min-height: 92vh; padding: 120px 0 80px; position: relative; }
.hero-dark::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); background-size: 200px 200px; opacity: .5; z-index: 1; }
.hero-dark .hero-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 28px 28px; opacity: .8; }
.hero-dark .hero-spot {
  position: absolute; left: 50%; top: 10%; width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(182,255,59,.35) 0%, rgba(182,255,59,.08) 30%, transparent 60%);
  transform: translateX(-50%); filter: blur(40px); pointer-events: none;
}
.hero-dark h1 { font-size: clamp(48px, 9vw, 150px); }
.hero-dark .hero-muted { color: rgba(244,244,242,.55); }

/* hero variant: split */
.hero-split { padding: 120px 0 60px; position: relative; }
.hero-split .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: end; }
@media (max-width: 960px) { .hero-split .grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-split h1 { font-size: clamp(36px, 8vw, 124px); }
.hero-lead { color: var(--fg-muted); font-size: clamp(16px, 2.4vw, 19px); line-height: 1.55; max-width: 44ch; margin-top: 32px; }

/* Hero media + GEMSTONE callout card */
.hero-media { position: relative; aspect-ratio: 4/5; }
.hero-media-placeholder { position: absolute; inset: 0; border-radius: 20px; }
.hero-method-card { position: absolute; left: -20px; bottom: -20px; width: 260px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.hero-method-kicker { color: var(--fg-muted); margin-bottom: 10px; }
.hero-method-title { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.hero-method-divider { height: 1px; background: var(--border); margin: 14px 0; }
.hero-method-bars { display: flex; gap: 6px; }
.hero-method-bar { flex: 1; height: 4px; border-radius: 2px; background: var(--border); }
.hero-method-bar.is-active { background: var(--accent); }
@media (max-width: 960px) {
  .hero-media { aspect-ratio: auto; }
  .hero-media-placeholder { position: relative; aspect-ratio: 4/5; }
  .hero-method-card { position: static; width: 100%; margin-top: 16px; }
}

/* hero variant: marquee under */
.hero-marq { padding: 140px 0 0; position: relative; }
.hero-marq .headline { text-align: center; }
.hero-marq h1 { font-size: clamp(52px, 11vw, 200px); letter-spacing: -0.04em; }

.hero-stat-row { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-n { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.hero-stat-l { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-muted); }
.hero-dark .hero-stat-l { color: rgba(244,244,242,.5); }

/* ============ marquee styling ============ */
.svc-marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; background: var(--bg); }
.svc-marquee-item { display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-heading); font-weight: 700; font-size: clamp(24px, 3vw, 44px); letter-spacing: -0.02em; opacity: .35; transition: opacity .3s ease; }
.svc-marquee:hover .svc-marquee-item { opacity: .2; }
.svc-marquee-item:hover { opacity: 1 !important; }
.svc-marquee-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); display: inline-block; }

.hero-dark .svc-marquee { background: #0a0a0a; border-color: rgba(255,255,255,.08); }
.hero-dark .svc-marquee-item { color: #f4f4f2; }

/* ============ section wrappers ============ */
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; z-index: 2; }
.section::before {
  content: "";
  position: absolute;
  top: 0; left: clamp(20px, 3vw, 48px); right: clamp(20px, 3vw, 48px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent) 30%, var(--border) 70%, transparent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
  opacity: .4;
}
.section.line-in::before { transform: scaleX(1); }
.section.dark-section { background: #0c0c0c; color: #f4f4f2; overflow: hidden; }
.section.dark-section h2 { color: #f4f4f2; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; align-items: end; }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; } }
.section-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }

/* painpoint */
.painpoint { background: #0c0c0c; color: #f4f4f2; position: relative; overflow: hidden; }
.painpoint h2 { color: #f4f4f2; font-size: clamp(36px, 5.5vw, 84px); text-wrap: balance; }
.painpoint .strike { text-decoration: line-through; opacity: .4; text-decoration-thickness: 2px; }
.painpoint .lime { color: var(--accent); }
.painpoint-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 28px 28px; opacity: .45; pointer-events: none; }
.painpoint-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 80px; }
@media (max-width: 820px) { .painpoint-cards { grid-template-columns: 1fr; margin-top: 40px; } }

/* ============ services light section ============ */
.services-light {
  --bg: #FAF9F6;
  --fg: #161616;
  --fg-muted: #6b6b6b;
  --border: #E5E5E5;
  --card: #FFFFFF;
  --grid-dot: rgba(22,22,22,0.10);
  background: var(--bg);
  color: var(--fg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.services-light .painpoint-grid {
  background-image: radial-gradient(circle, rgba(22,22,22,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .55;
  z-index: 0;
}
.services-light h2 { color: var(--fg); }
.services-light .section-tag,
.services-light .eyebrow { color: var(--fg-muted); }

/* interactive gradient that tracks the cursor */
.services-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.services-gradient .svc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, left, top;
  transition: left .6s cubic-bezier(.2,.7,.2,1), top .6s cubic-bezier(.2,.7,.2,1), right .6s cubic-bezier(.2,.7,.2,1), bottom .6s cubic-bezier(.2,.7,.2,1);
}
.services-gradient .svc-blob-1 {
  width: 720px; height: 720px;
  left: var(--gx, 25%); top: var(--gy, 30%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(40,113,239,0.55) 0%, rgba(40,113,239,0.18) 45%, transparent 70%);
  animation: svc-float-a calc(18s / var(--motion-scale, 1)) ease-in-out infinite;
}
.services-gradient .svc-blob-2 {
  width: 640px; height: 640px;
  right: var(--gx2, 20%); bottom: var(--gy2, 15%);
  transform: translate(50%, 50%);
  background: radial-gradient(circle, rgba(182,255,59,0.70) 0%, rgba(182,255,59,0.22) 45%, transparent 70%);
  animation: svc-float-b calc(22s / var(--motion-scale, 1)) ease-in-out infinite;
}
.services-gradient .svc-blob-3 {
  width: 480px; height: 480px;
  left: 65%; top: 75%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  background: radial-gradient(circle, rgba(111,166,255,0.50) 0%, rgba(111,166,255,0.14) 50%, transparent 75%);
  animation: svc-float-c calc(26s / var(--motion-scale, 1)) ease-in-out infinite;
}
.services-light .container { position: relative; z-index: 1; }

@keyframes svc-float-a {
  0%, 100% { translate: -50% -50%; }
  33%      { translate: calc(-50% + 60px) calc(-50% - 40px); }
  66%      { translate: calc(-50% - 40px) calc(-50% + 50px); }
}
@keyframes svc-float-b {
  0%, 100% { translate: 50% 50%; }
  33%      { translate: calc(50% - 60px) calc(50% + 30px); }
  66%      { translate: calc(50% + 50px) calc(50% - 50px); }
}
@keyframes svc-float-c {
  0%, 100% { translate: -50% -50%; }
  50%      { translate: calc(-50% + 40px) calc(-50% - 60px); }
}

/* light variants for bento + supporting elements inside services-light */
.services-light .bento-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.72) 100%);
  border: 1px solid rgba(22,22,22,0.10);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(255,255,255,0.4) inset,
    0 -1px 0 rgba(22,22,22,0.04) inset,
    0 10px 28px -14px rgba(22,22,22,0.18),
    0 2px 8px -4px rgba(40,113,239,0.10);
}
.services-light .bento-card::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 40%);
}
.services-light .bento-card:hover {
  background: linear-gradient(135deg, rgba(40,113,239,0.10) 0%, rgba(255,255,255,0.55) 50%, rgba(182,255,59,0.18) 100%);
  border-color: rgba(40,113,239,0.40);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(40,113,239,0.15) inset,
    0 16px 38px -14px rgba(40,113,239,0.30),
    0 2px 10px -4px rgba(182,255,59,0.30);
}
.services-light .bento-card:hover .bento-title { color: #1F5BD1; }
.services-light .bento-num,
.services-light .bento-tag,
.services-light .bento-desc { color: var(--fg-muted); }
.services-light .bento-icon {
  border: 1px solid rgba(22,22,22,0.12);
  background: rgba(255,255,255,0.7);
  color: var(--fg);
}
.services-light .bento-card:hover .bento-icon { background: #2871EF; color: #fff; border-color: #2871EF; }
.services-light .bento-micro { color: var(--fg); }
.services-light .ai-chip { background: var(--accent); color: var(--accent-ink); }

/* ============ bento services ============ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 960px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }
.bento-card {
  grid-column: span 2;
  position: relative; padding: 32px; min-height: 340px;
  border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 8px 24px -12px rgba(0,0,0,0.5),
    0 2px 8px -4px rgba(255,255,255,0.04);
  transition: transform .4s ease, border-color .4s ease, background .4s ease, box-shadow .4s ease;
  cursor: pointer;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 40%);
  pointer-events: none;
  opacity: .8;
}
.bento-card > * { position: relative; }
.bento-card.wide { grid-column: span 2; }
@media (min-width: 961px) {
  .bento-card:nth-child(1) { grid-column: span 2; }
  .bento-card:nth-child(2) { grid-column: span 2; }
  .bento-card:nth-child(3) { grid-column: span 2; }
  .bento-card:nth-child(4) { grid-column: span 2; }
}
.bento-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(40,113,239,0.10) 0%, rgba(255,255,255,0.04) 50%, rgba(40,113,239,0.08) 100%);
  border-color: rgba(40,113,239,0.40);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 0 0 1px rgba(40,113,239,0.15) inset,
    0 14px 36px -14px rgba(40,113,239,0.35),
    0 2px 8px -4px rgba(40,113,239,0.2);
}
.bento-card:hover .bento-title { color: #6FA6FF; }
.bento-title { transition: color .3s ease; }
.bento-card .ai-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
  white-space: nowrap;
}
.bento-icon-stack {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.bento-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.bento-num { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: .12em; }
.bento-tag { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.bento-icon { width: 48px; height: 48px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); display: grid; place-items: center; color: var(--fg); transition: background .3s ease, color .3s ease, border-color .3s ease; }
.bento-card:hover .bento-icon { background: #2871EF; color: #fff; border-color: #2871EF; }
.bento-title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.02em; line-height: 1.05; margin: 12px 0 14px; }
.bento-desc { color: var(--fg-muted); font-size: 15px; line-height: 1.55; max-width: 46ch; }
.bento-micro { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--fg); letter-spacing: .08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.bento-micro::before { content: ""; width: 14px; height: 1px; background: var(--accent); }

/* ============ gemstone ============ */
.gem { background: #0c0c0c; color: #f4f4f2; position: relative; overflow: hidden; }
.gem h2 { color: #f4f4f2; }
.gem-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 80px; align-items: end; }
@media (max-width: 820px) { .gem-intro { grid-template-columns: 1fr; gap: 32px; } }
.gem-phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; overflow: hidden; }
@media (max-width: 960px) { .gem-phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gem-phases { grid-template-columns: 1fr; } }
.gem-phase { background: #141414; padding: 32px 28px 36px; position: relative; transition: background .3s ease, transform .3s ease; cursor: default; min-height: 340px; display: flex; flex-direction: column; }
.gem-phase:hover { background: #1c1c1c; }
.gem-phase-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 28px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.gem-phase-num { color: var(--accent); font-weight: 600; }
.gem-phase-title { font-family: var(--font-heading); font-weight: 800; font-size: 34px; letter-spacing: -0.02em; margin-bottom: 8px; color: #fff; }
.gem-phase-pillar { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.gem-phase-desc { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.55; margin-bottom: 24px; flex: 1; }
.gem-phase-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: rgba(255,255,255,.88); }
.gem-phase-bullets li { display: flex; gap: 10px; align-items: center; }
.gem-phase-bullets li::before { content: ""; width: 16px; height: 1px; background: var(--accent); flex-shrink: 0; }
.gem-deliverables { margin-top: 56px; padding: 40px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .gem-deliverables { grid-template-columns: 1fr; } }
.gem-deliv-list { display: flex; flex-wrap: wrap; gap: 10px; }
.gem-deliv-pill { padding: 10px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 13px; color: rgba(255,255,255,.9); transition: background .3s ease, color .3s ease, border-color .3s ease; }
.gem-deliv-pill:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ============ cases ============ */
.case-row {
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 120px;
  gap: 40px;
  align-items: center;
  position: relative;
  transition: padding .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 8px 24px -12px rgba(0,0,0,0.5),
    0 2px 8px -4px rgba(255,255,255,0.04);
  margin-bottom: 16px;
  cursor: pointer;
  overflow: hidden;
}
.case-row::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 40%);
  pointer-events: none;
  opacity: .8;
}
@media (max-width: 960px) { .case-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; } }
.case-row:hover {
  padding: 44px 32px;
  background: linear-gradient(135deg, rgba(40,113,239,0.10) 0%, rgba(255,255,255,0.04) 50%, rgba(40,113,239,0.08) 100%);
  border-color: rgba(40,113,239,0.40);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 0 0 1px rgba(40,113,239,0.15) inset,
    0 14px 36px -14px rgba(40,113,239,0.35),
    0 2px 8px -4px rgba(40,113,239,0.2);
}
.case-row:hover .case-name { color: #6FA6FF; }
.case-row:hover .case-arrow { background: #2871EF; border-color: #2871EF; color: #fff; transform: rotate(-45deg) translate(4px, 0); }
.case-name { font-family: var(--font-heading); font-weight: 800; font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1; transition: color .3s ease; }
.case-cat { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.case-challenge { font-size: 16px; color: var(--fg-muted); margin-bottom: 6px; font-style: italic; }
.case-result { font-size: 15px; color: var(--fg); line-height: 1.55; }
.case-arrow { display: grid; place-items: center; justify-self: end; width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border); transition: background .3s ease, border-color .3s ease, transform .3s ease, color .3s ease; }

/* ============ about / team ============ */
.about-dark { background: #0c0c0c; color: #f4f4f2; position: relative; overflow: hidden; }
.about-dark h2 { color: #f4f4f2; }
.about-dark .section-head .tag { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.15); }
.about-dark .section-head .kicker { color: rgba(255,255,255,.7); }
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 680px) { .team-card { aspect-ratio: 1/1; } }
.team-card-wrap { position: relative; }
.team-card-wrap::after {
  content: "";
  position: absolute;
  bottom: -16px; left: 10%; right: 10%;
  height: 40px;
  background: var(--accent);
  filter: blur(20px);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: scaleX(.8);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.team-card-wrap:hover::after { opacity: .55; transform: scaleX(1); }
.team-card { position: relative; border-radius: 20px; overflow: hidden; background: #1a1a1a; transition: transform .35s ease; aspect-ratio: 3/4; z-index: 1; }
.team-card:hover { transform: translateY(-6px); }
.team-photo { position: absolute; inset: 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-photo-fallback { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.team-photo[data-fallback="true"] .team-photo-fallback { display: flex; }
.team-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  z-index: 2;
}
.team-name { font-family: var(--font-heading); font-weight: 800; font-size: 14px; letter-spacing: -0.01em; margin-bottom: 2px; color: #fff; }
.team-role { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.team-ig { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: grid; place-items: center; transition: background .3s ease, border-color .3s ease; color: #fff; flex-shrink: 0; }
.team-ig:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  position: relative;
  padding: 28px 32px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.22) 100%);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px) saturate(160%);
  -webkit-backdrop-filter: blur(6px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(22,22,22,0.04) inset,
    0 8px 24px -12px rgba(22,22,22,0.12),
    0 2px 8px -4px rgba(255,255,255,0.4);
  transition: padding .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 35%);
  pointer-events: none;
  opacity: .6;
}
.faq-item:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.30) 100%);
  border-color: rgba(40,113,239,0.30);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 14px 36px -14px rgba(40,113,239,0.25),
    0 2px 8px -4px rgba(255,255,255,0.5);
}
.faq-item:hover .faq-q { color: #2871EF; }
.faq-q {
  position: relative;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.02em; line-height: 1.2;
  transition: color .3s ease;
}
.faq-plus { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(22,22,22,0.15); background: rgba(255,255,255,0.4); display: grid; place-items: center; flex-shrink: 0; transition: background .3s ease, color .3s ease, transform .3s ease, border-color .3s ease; }
.faq-item:hover .faq-plus { background: #2871EF; border-color: #2871EF; color: #fff; }
.faq-item[data-open="true"] .faq-plus { background: #2871EF; color: #fff; border-color: #2871EF; transform: rotate(45deg); }
.faq-a { position: relative; max-height: 0; overflow: hidden; transition: max-height .4s ease, margin .3s ease; color: var(--fg-muted); font-size: 16px; line-height: 1.6; max-width: 70ch; }
.faq-item[data-open="true"] .faq-a { max-height: 300px; margin-top: 16px; }

/* ============ lead magnet ============ */
.lead {
  background: #0c0c0c;
  color: #f4f4f2;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 360px at 8% 10%, rgba(182,255,59,0.18), transparent 60%),
    radial-gradient(500px 320px at 95% 90%, rgba(40,113,239,0.16), transparent 65%);
  pointer-events: none;
}
.lead > * { position: relative; z-index: 1; }
@media (max-width: 820px) { .lead { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .lead { padding: 56px 20px 56px; }
  .lead-deco.tr { display: none; }
  .lead-deco.tl { font-size: 12px; }
  .lead-deco.br { display: none; }
  .lead-form { padding: 20px; }
}
.lead h2 { font-size: clamp(32px, 5vw, 68px); color: #f4f4f2; }
.lead h2 .serif-em { color: var(--accent); }
.lead-deco { position: absolute; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .55; color: #f4f4f2; z-index: 1; }
.lead-deco.tl { top: 24px; left: 24px; }
.lead-deco.tr { top: 24px; right: 24px; }
.lead-deco.br { bottom: 24px; right: 24px; }
.lead-form {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-input {
  background: rgba(15,15,15,0.06);
  border: 1px solid rgba(15,15,15,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--accent-ink);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
  min-width: 0;
}
.lead-input:focus { border-color: var(--accent-ink); background: rgba(15,15,15,0.10); }
.lead-input::placeholder { color: rgba(15,15,15,0.45); }
.lead-form .btn-lime {
  background: var(--accent-ink);
  color: var(--accent);
  border: 1px solid var(--accent-ink);
}
.lead-form .btn-lime:hover { background: #1c1c1c; color: var(--accent); }
.lead-form .lead-foot { color: rgba(15,15,15,0.55) !important; }

/* ============ footer ============ */
.footer { background: #0c0c0c; color: #f4f4f2; padding: 80px 0 32px; position: relative; overflow: hidden; }
.footer-huge { font-family: var(--font-heading); font-weight: 900; font-size: clamp(60px, 15vw, 260px); letter-spacing: -0.05em; line-height: .85; color: #f4f4f2; }
.footer-huge img { filter: none; }
.footer-huge em { font-style: italic; font-family: "Instrument Serif", serif; font-weight: 400; color: var(--accent); }
.footer-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin: 64px 0 48px; }
@media (max-width: 820px) { .footer-row { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .footer-row { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .footer-meta { flex-direction: column; gap: 8px; } }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0 0 14px; font-weight: 500; }
.footer-col a { display: block; color: #f4f4f2; text-decoration: none; padding: 4px 0; opacity: .82; transition: opacity .2s ease, transform .2s ease; }
.footer-col a:hover { opacity: 1; transform: translateX(4px); }
.footer-meta { display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ============ floating WhatsApp ============ */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink); text-decoration: none;
  box-shadow: 0 12px 40px rgba(182,255,59,.5);
  transition: transform .3s ease;
}
.fab:hover { transform: scale(1.08); }
.fab::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--accent); opacity: .4; animation: ping calc(2.2s / var(--motion-scale, 1)) cubic-bezier(0, 0, .2, 1) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============ gemstone deliverables headline ============ */
.gem-deliv-headline { font-size: clamp(20px, 2.8vw, 26px); font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1.2; }

/* ============ Mobile UX fixes (touch targets, fab, bento) ============ */
@media (max-width: 820px) {
  /* Touch targets — Apple HIG min 44px */
  .btn-sm { padding: 12px 20px; min-height: 44px; }
  .team-ig { width: 36px; height: 36px; }
  .faq-plus { width: 44px; height: 44px; }
  .nav-burger { width: 44px; height: 44px; }
  .team-ig { width: 44px; height: 44px; }
  /* Avoid FAB overlapping last CTA */
  body { padding-bottom: 0; }
  section:last-of-type, .footer { padding-bottom: max(80px, 6vw); }
}

@media (max-width: 560px) {
  /* Smaller FAB so it doesn't dominate */
  .fab { width: 52px; height: 52px; right: 16px; bottom: 16px; box-shadow: 0 8px 24px rgba(182,255,59,.4); }
  /* Bento cards: tighter padding, auto height, stack icon */
  .bento-card { padding: 24px; min-height: auto; }
  .bento-top { flex-direction: column-reverse; align-items: flex-start; gap: 16px; }
  .bento-icon-stack { flex-direction: row; align-items: center; gap: 12px; }
}

/* Footer wordmark safety */
.footer-huge img { max-width: 100%; }

/* ============ tweaks panel ============ */
.tweaks {
  position: fixed; right: 20px; bottom: 90px; z-index: 60;
  width: 280px; max-width: calc(100vw - 40px);
  background: var(--card); color: var(--fg);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.12);
  font-family: var(--font-sans);
}
.tweaks h5 { margin: 0 0 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; }
.tweaks-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tweaks-row > label { font-size: 12px; color: var(--fg-muted); font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.tweaks-segmented { display: flex; gap: 4px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 3px; }
.tweaks-segmented button { flex: 1; border: 0; background: transparent; color: var(--fg); padding: 6px 4px; border-radius: 8px; cursor: pointer; font-size: 12px; font-family: var(--font-mono); letter-spacing: .04em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.tweaks-segmented button[aria-pressed="true"] { background: var(--fg); color: var(--bg); }
.tweaks-swatches { display: flex; gap: 8px; }
.tweaks-swatch { flex: 1; height: 28px; border-radius: 8px; border: 2px solid var(--border); cursor: pointer; transition: transform .2s ease, border-color .2s ease; }
.tweaks-swatch:hover { transform: scale(1.05); }
.tweaks-swatch[aria-pressed="true"] { border-color: var(--fg); }

/* ============ print / pdf friendly ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
  .blob-slow, .blob-med, .blob-fast { animation: none !important; }
  .marquee-track { animation: none !important; }
}
