/* DE WEBTANDEM — STYLE.CSS — Light premium agency
   Inspired by Stripe, Linear (light), Apple, Framer */

:root {
  --c-bg: #ffffff;
  --c-surface: #fafaf7;
  --c-surface-2: #f4f3ec;
  --c-surface-3: #ecebe2;
  --c-line: rgba(10,10,10,0.06);
  --c-line-2: rgba(10,10,10,0.13);
  --c-line-strong: rgba(10,10,10,0.22);
  --c-line-blue: rgba(37,99,235,0.25);
  --c-ink: #0a0a0a;
  --c-ink-2: #3a3a3a;
  --c-ink-3: #6a6a6a;
  --c-ink-4: #a0a0a0;
  --c-blue: #2563eb;
  --c-blue-bright: #3b82f6;
  --c-blue-deep: #1d4ed8;
  --c-blue-glow: rgba(37,99,235,0.22);
  --c-blue-soft: rgba(37,99,235,0.06);
  --c-blue-soft-2: rgba(37,99,235,0.12);
  --c-cream: #fff4d6;
  --c-dark: #0a0b0f;
  --c-dark-line: rgba(245,244,238,0.1);
  --c-dark-ink: #f5f4ee;
  --c-dark-ink-2: #c7c5bd;
  --f-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 32px;
  --container: 1280px;
  --gutter: clamp(20px,4vw,48px);
  --shadow-xs: 0 1px 2px rgba(10,10,20,0.04);
  --shadow-sm: 0 2px 4px rgba(10,10,20,0.04), 0 1px 2px rgba(10,10,20,0.06);
  --shadow-md: 0 6px 16px -4px rgba(10,10,20,0.08), 0 2px 6px -2px rgba(10,10,20,0.05);
  --shadow-lg: 0 16px 36px -8px rgba(10,10,20,0.1), 0 4px 12px -3px rgba(10,10,20,0.06);
  --shadow-blue: 0 14px 32px -8px rgba(37,99,235,0.28), 0 3px 8px -2px rgba(37,99,235,0.15);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--c-blue); color: #fff; }

body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: radial-gradient(rgba(10,10,30,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--c-blue-deep); text-transform: uppercase;
  margin-bottom: 22px; padding: 6px 12px;
  background: var(--c-blue-soft); border: 1px solid var(--c-line-blue);
  border-radius: 999px; font-weight: 500;
}
.section-title {
  font-family: var(--f-sans); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--c-ink);
  padding-bottom: 0.05em;
}
.title-blue {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head { margin-bottom: 56px; max-width: 880px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro {
  margin-top: 22px; font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--c-ink-2); max-width: 620px; line-height: 1.65;
}
.section-head--center .section-intro { margin-left: auto; margin-right: auto; }
.section-intro strong { color: var(--c-ink); font-weight: 600; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-weight: 600;
  color: var(--c-blue-deep);
  border-bottom: 1px solid var(--c-line-blue);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.link-arrow span { transition: transform .35s var(--ease); }
.link-arrow:hover { color: var(--c-ink); border-color: var(--c-ink); }
.link-arrow:hover span { transform: translateX(4px); }

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--c-ink);
  --btn-bd: var(--c-line-2);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-family: var(--f-sans); font-weight: 600; font-size: 14px;
  letter-spacing: -0.005em;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  --btn-bg: var(--c-blue); --btn-fg: #fff; --btn-bd: var(--c-blue);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  --btn-bg: var(--c-blue-deep); --btn-bd: var(--c-blue-deep);
  box-shadow: 0 18px 40px -8px rgba(37,99,235,0.4);
  transform: translateY(-2px);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
}
.btn--primary:hover::before { transform: translateX(100%); }
.btn--ghost {
  --btn-bg: var(--c-bg); --btn-fg: var(--c-ink); --btn-bd: var(--c-line-2);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { --btn-bd: var(--c-ink); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--lg { padding: 16px 28px; font-size: 15px; }

.bigcta .btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--c-dark-ink); --btn-bd: var(--c-dark-line);
  box-shadow: none;
}
.bigcta .btn--ghost:hover { --btn-bd: var(--c-dark-ink); background: rgba(245,244,238,0.06); }

.topbar {
  position: relative; z-index: 50;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-surface);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--c-ink-3);
}
.topbar__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex; align-items: center; gap: 12px;
}
.topbar__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-blue); flex: 0 0 7px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 var(--c-blue-glow); }
  50% { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}
.topbar__text { color: var(--c-ink); font-weight: 500; }
.topbar__sep { color: var(--c-ink-4); }
.topbar__sub { color: var(--c-ink-3); }
.topbar__link { color: var(--c-blue-deep); margin-left: auto; font-weight: 500; }
.topbar__link:hover { color: var(--c-ink); }
@media (max-width: 720px) { .topbar__sep, .topbar__sub, .topbar__link { display: none; } }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 1px 0 rgba(10,10,10,0.02), 0 8px 24px -16px rgba(10,10,10,0.08);
}
.nav__inner { display: flex; align-items: center; gap: 28px; padding: 14px 0; }
.nav__logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-sans); font-size: 17px; font-weight: 700;
  color: var(--c-ink); letter-spacing: -0.015em;
}
.nav__logo-img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; background: #000;
  transition: transform .5s var(--ease-out);
  box-shadow: 0 0 0 1px rgba(10,10,10,0.06), 0 2px 6px -1px rgba(10,10,10,0.08);
}
.nav__logo:hover .nav__logo-img { transform: rotate(-8deg) scale(1.05); }

.nav__links { display: flex; gap: 28px; margin-left: auto; margin-right: 12px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--c-ink-2);
  position: relative; padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: var(--c-blue);
  transition: right .35s var(--ease);
}
.nav__links a:hover { color: var(--c-ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__links a.is-active { color: var(--c-ink); }
.nav__cta { padding: 9px 16px; font-size: 13px; }
.nav__toggle {
  display: none; width: 40px; height: 40px; margin-left: auto;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 50%; background: var(--c-surface);
  border: 1px solid var(--c-line-2);
}
.nav__toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--c-ink);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 39;
  background: var(--c-bg);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__nav a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}
.mobile-menu__nav a em {
  font-family: var(--f-mono); font-style: normal; font-size: 11px;
  text-transform: uppercase; color: var(--c-blue-deep);
  letter-spacing: 0.04em; flex: 0 0 80px;
}
.mobile-menu__nav a span {
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em;
}
.mobile-menu__nav a.is-active span { color: var(--c-blue); }
.mobile-menu__foot {
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--f-mono); font-size: 13px;
  color: var(--c-ink-2);
  padding-top: 24px; border-top: 1px solid var(--c-line);
}
.mobile-menu__foot a:hover { color: var(--c-blue-deep); }

.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-bright));
  z-index: 100; pointer-events: none;
}

.cursor-glow {
  position: fixed; width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  body.cursor-active .cursor-glow { opacity: 0.6; }
}

.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,10,30,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,30,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 45%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 45%, black 30%, transparent 80%);
  opacity: 0.7;
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero__orb--1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(59,130,246,0.32) 0%, transparent 70%);
  top: -120px; left: -140px;
  animation: floatA 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(96,165,250,0.28) 0%, transparent 70%);
  bottom: -120px; right: -120px;
  animation: floatB 16s ease-in-out infinite;
}
@keyframes floatA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); } }
@keyframes floatB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,-20px); } }

.float-cursor {
  position: absolute; width: 28px; height: 28px;
  filter: drop-shadow(0 4px 12px rgba(37,99,235,0.35));
  animation: floatCursor 6s ease-in-out infinite;
}
.float-cursor--1 { top: 18%; left: 8%; }
.float-cursor--2 { top: 28%; right: 10%; animation-delay: 2s; transform: rotate(20deg); }
@keyframes floatCursor { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(-5deg); } }
.float-cursor--2 { animation-name: floatCursor2; }
@keyframes floatCursor2 { 0%,100% { transform: translateY(0) rotate(20deg); } 50% { transform: translateY(-12px) rotate(15deg); } }
@media (max-width: 720px) { .float-cursor { display: none; } }

.hero__inner { padding-top: 24px; text-align: center; }
.hero__meta {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--c-ink-3);
  margin-bottom: 56px; padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.meta-item { display: inline-flex; align-items: center; gap: 8px; }
.meta-item__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-blue);
  animation: pulse 2.4s ease-in-out infinite;
}
@media (max-width: 600px) {
  .hero__meta { flex-direction: column; gap: 8px; align-items: center; }
  .meta-item--right { display: none; }
}

.hero__logo-wrap {
  position: relative; display: inline-block;
  margin: 16px auto 32px;
  width: clamp(160px, 26vw, 240px);
  height: clamp(160px, 26vw, 240px);
}
.hero__logo {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover; background: #000;
  box-shadow: 0 0 0 1px rgba(10,10,10,0.05), 0 30px 60px -20px rgba(37,99,235,0.4), 0 8px 16px -4px rgba(10,10,10,0.1);
  animation: logoBreathe 6s ease-in-out infinite;
}
.hero__logo-glow {
  position: absolute; inset: -40%; z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, transparent 60%);
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes logoBreathe { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-6px) rotate(2deg); } }
@keyframes glowPulse { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 0.85; transform: scale(1.08); } }

.hero__title {
  display: inline-flex; align-items: baseline;
  gap: clamp(8px,1.5vw,14px);
  font-family: var(--f-sans); font-weight: 800;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.05; letter-spacing: -0.04em;
  color: var(--c-ink); margin-bottom: 28px;
  padding-bottom: 0.04em;
}
.hero__title-de { font-weight: 300; font-size: 0.55em; color: var(--c-ink-3); letter-spacing: -0.02em; }
.hero__title-name {
  background: linear-gradient(180deg, var(--c-ink) 0%, var(--c-ink) 55%, var(--c-blue) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__tagline {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55; color: var(--c-ink-2);
  max-width: 600px; margin: 0 auto 36px;
}
.hero__tagline .ink-blue { color: var(--c-blue-deep); font-weight: 700; }
.hero__actions {
  display: inline-flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 60px;
}

.bike-track {
  position: relative; height: 90px;
  margin-top: 32px; overflow: hidden;
  contain: layout paint;
}
.bike-track__line {
  position: absolute; left: 0; right: 0; bottom: 14px; height: 1px;
  background-image: linear-gradient(90deg, transparent 0, transparent 8px, var(--c-line-2) 8px, var(--c-line-2) 18px);
  background-size: 18px 1px; background-repeat: repeat-x;
}
.bike-track__mark {
  position: absolute; bottom: 22px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--c-ink-4); background: var(--c-bg);
  padding: 0 8px; z-index: 2; font-weight: 500;
}
.bike-track__mark--start { left: 0; }
.bike-track__mark--finish { right: 0; }
.bike {
  position: absolute; bottom: 14px;
  width: 160px; height: 60px;
  animation: bikeRide 18s linear infinite;
  will-change: transform;
  transform: translate3d(-180px, 0, 0);
}
@keyframes bikeRide {
  0% { transform: translate3d(-180px, 0, 0); }
  100% { transform: translate3d(calc(100vw + 20px), 0, 0); }
}
.bike__frame { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.bike__wheel {
  position: absolute; bottom: 0;
  width: 26px; height: 26px;
  border: 1.6px solid var(--c-ink);
  border-radius: 50%; background: transparent;
  animation: wheelSpin 0.7s linear infinite;
  will-change: transform;
}
.bike__wheel--back { left: 7px; }
.bike__wheel--front { left: 127px; }
.bike__wheel::before, .bike__wheel::after { content: ""; position: absolute; background: var(--c-ink-3); }
.bike__wheel::before { top: 2px; bottom: 2px; left: calc(50% - 0.5px); width: 1px; }
.bike__wheel::after { left: 2px; right: 2px; top: calc(50% - 0.5px); height: 1px; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }
@media (max-width: 720px) {
  .bike { width: 130px; height: 50px; bottom: 14px; }
  .bike__wheel { width: 22px; height: 22px; }
  .bike__wheel--back { left: 6px; }
  .bike__wheel--front { left: 102px; }
}

.stats {
  padding: clamp(40px, 5vw, 60px) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stat { display: flex; flex-direction: column; gap: 10px; padding: 16px 24px 16px 0; border-right: 1px solid var(--c-line); }
.stat:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 720px) {
  .stat { padding: 14px; border-right: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}
.stat__num { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--c-ink); }
.stat__num sup { font-size: 0.45em; vertical-align: super; color: var(--c-blue); margin-left: 2px; font-weight: 500; }
.stat__label { font-size: 13px; line-height: 1.45; color: var(--c-ink-3); }

.marquee {
  position: relative;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden; padding: 22px 0;
  background: var(--c-blue); color: #fff;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--c-blue), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--c-blue), transparent); }
.marquee__track {
  display: flex; align-items: center; gap: 36px;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700; letter-spacing: -0.02em;
  white-space: nowrap; will-change: transform;
}
.marquee__sep { color: rgba(255,255,255,0.4); font-size: 0.5em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.page-header {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.page-header__bg { position: absolute; inset: 0; pointer-events: none; }
.page-header__bg::before {
  content: ""; position: absolute;
  top: -120px; right: -160px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  filter: blur(60px);
}
.page-header__bg::after {
  content: ""; position: absolute;
  bottom: -120px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 70%);
  filter: blur(60px);
}
.page-header__inner { position: relative; z-index: 2; }
.page-header__crumbs {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--c-ink-3); text-transform: uppercase;
  margin-bottom: 24px;
}
.page-header__crumbs a:hover { color: var(--c-ink); }
.page-header__crumbs span:not(.page-header__crumbs-cur) { color: var(--c-ink-4); }
.page-header__crumbs-cur { color: var(--c-blue-deep); }
.page-header__title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--c-ink); margin-bottom: 24px;
}
.page-header__title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-header__sub { font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.6; color: var(--c-ink-2); max-width: 620px; }

.waarom { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-surface); border-top: 1px solid var(--c-line); }
.waarom__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .waarom__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .waarom__grid { grid-template-columns: 1fr; } }
.feat {
  position: relative; padding: 28px 26px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  transition: transform .5s var(--ease-out), border-color .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.feat::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), var(--c-blue-soft), transparent 50%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.feat:hover { transform: translateY(-4px); border-color: var(--c-line-blue); box-shadow: var(--shadow-md); }
.feat:hover::before { opacity: 1; }
.feat__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--c-blue-soft); color: var(--c-blue-deep);
  border-radius: 12px; margin-bottom: 18px;
  border: 1px solid var(--c-line-blue);
}
.feat__icon svg { width: 20px; height: 20px; }
.feat h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; color: var(--c-ink); }
.feat p { font-size: 0.94rem; color: var(--c-ink-2); line-height: 1.6; }

.ways { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-surface); border-top: 1px solid var(--c-line); }
.ways__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 880px) { .ways__grid { grid-template-columns: 1fr; } }
.way {
  position: relative; padding: clamp(32px, 4vw, 48px);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2xl);
  display: flex; flex-direction: column; gap: 24px;
  transition: transform .5s var(--ease-out), border-color .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.way::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-blue), transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.way:hover { transform: translateY(-4px); border-color: var(--c-line-blue); box-shadow: var(--shadow-lg); }
.way:hover::after { opacity: 0.7; }
.way--featured {
  background: linear-gradient(165deg, #ffffff 0%, #f7f9ff 100%);
  border-color: var(--c-line-blue);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--c-line-blue);
}
.way--featured::after { opacity: 0.5; }
.way__type {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c-blue-deep);
  background: var(--c-blue-soft);
  border: 1px solid var(--c-line-blue);
  padding: 6px 12px; border-radius: 999px;
  align-self: flex-start; font-weight: 500;
}
.way__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.12;
  color: var(--c-ink); padding-bottom: 0.04em;
}
.way__title em { font-style: italic; font-weight: 400; color: var(--c-blue-deep); }
.way__lede { color: var(--c-ink-2); font-size: 1rem; line-height: 1.6; }
.way__list {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--c-line);
}
.way__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--c-ink-2); line-height: 1.5; }
.way__list li::before {
  content: ""; flex: 0 0 18px;
  width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%;
  background: var(--c-blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%232563eb' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 1px solid var(--c-line-blue);
}
.way__list li strong { color: var(--c-ink); font-weight: 600; }
.way__cta { margin-top: auto; }
.way__cta .btn { width: fit-content; }

.services { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-bg); border-top: 1px solid var(--c-line); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }
.service {
  position: relative; padding: 30px 26px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  transition: transform .5s var(--ease-out), border-color .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-xs);
}
.service:hover { transform: translateY(-4px); border-color: var(--c-line-blue); box-shadow: var(--shadow-md); }
.service__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--c-blue-soft); color: var(--c-blue-deep);
  border-radius: 12px; margin-bottom: 18px;
  border: 1px solid var(--c-line-blue);
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.service__icon svg { width: 20px; height: 20px; }
.service:hover .service__icon { background: var(--c-blue); color: #fff; transform: rotate(-6deg) scale(1.05); border-color: var(--c-blue); }
.service h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 10px; color: var(--c-ink); }
.service p { font-size: 0.94rem; color: var(--c-ink-2); line-height: 1.6; }

.etappes { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-surface); border-top: 1px solid var(--c-line); }
.etappes__list {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.etappe {
  display: grid;
  grid-template-columns: 200px 1fr 140px;
  gap: clamp(20px, 3vw, 60px);
  align-items: start;
  padding: 32px 36px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  transition: padding .35s var(--ease), background .3s var(--ease);
}
.etappe:last-child { border-bottom: 0; }
.etappe::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--c-blue);
  transition: width .5s var(--ease);
}
.etappe:hover { background: var(--c-surface); padding-left: 52px; }
.etappe:hover::before { width: 4px; }
@media (max-width: 720px) {
  .etappe { grid-template-columns: 1fr; gap: 14px; padding: 24px 20px; }
  .etappe:hover { padding-left: 28px; }
}
.etappe__num { display: flex; flex-direction: column; gap: 4px; }
.etappe__num-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-blue-deep); }
.etappe__num-val { font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: var(--c-ink); line-height: 1; }
.etappe__body h3 { font-size: clamp(1.4rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--c-ink); }
.etappe__body p { font-size: 0.98rem; color: var(--c-ink-2); line-height: 1.6; max-width: 560px; }
.etappe__pin {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--c-ink-2);
  background: var(--c-surface-2);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--c-line);
  display: inline-block; justify-self: end;
  font-weight: 500;
}
@media (max-width: 720px) { .etappe__pin { justify-self: start; } }

.peloton { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-bg); }
.peloton__filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px; padding-bottom: 28px;
  border-bottom: 1px solid var(--c-line);
}
.peloton__filter button {
  font-family: var(--f-sans); font-size: 13px; font-weight: 500;
  color: var(--c-ink-2);
  padding: 8px 14px; border-radius: 999px;
  background: var(--c-bg);
  border: 1px solid var(--c-line-2);
  transition: all .3s var(--ease);
}
.peloton__filter button:hover { color: var(--c-ink); border-color: var(--c-ink); }
.peloton__filter button.is-active { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }
.peloton__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); }
@media (max-width: 720px) { .peloton__grid { grid-template-columns: 1fr; } }
.case { display: flex; flex-direction: column; gap: 22px; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.case.is-hidden { display: none; }
.case__media {
  display: block;
  border-radius: var(--r-xl); overflow: hidden;
  position: relative;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  aspect-ratio: 16 / 11;
  transition: transform .6s var(--ease-out), border-color .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.case__media:hover { transform: translateY(-4px); border-color: var(--c-line-blue); box-shadow: var(--shadow-lg); }
.case__bib {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--c-blue); color: #fff;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 6px 10px; border-radius: 6px; font-weight: 600;
}
.case__cta-overlay {
  position: absolute; bottom: 14px; right: 14px; z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-line-2);
  color: var(--c-ink);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 8px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  font-weight: 500;
}
.case__media:hover .case__cta-overlay { opacity: 1; transform: translateY(0); }
.case__mockup {
  position: absolute; inset: 18px;
  border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff;
  box-shadow: 0 16px 30px -12px rgba(10,10,30,0.18);
  transition: transform .6s var(--ease-out);
}
.case__media:hover .case__mockup { transform: translateY(-3px); }
.case__browser {
  height: 30px; background: #f6f4ee;
  display: flex; align-items: center; gap: 6px;
  padding: 0 10px; border-bottom: 1px solid #e3e0d6;
  flex-shrink: 0;
}
.case__browser span { width: 9px; height: 9px; border-radius: 50%; background: #d8d3c4; }
.case__url {
  margin-left: 8px; font-family: var(--f-mono); font-size: 10px;
  color: #888; background: #fff;
  padding: 3px 10px; border-radius: 4px;
  flex: 1; text-align: center; margin-right: 36px;
}
.case__shot { flex: 1; background: #f4f1e9; position: relative; overflow: hidden; }
.case__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* IMAGE FALLBACK FIX — hidden by default, shown by JS only when image fails */
.case__shot-fallback {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(0,0,0,0.04) 14px, rgba(0,0,0,0.04) 15px),
    #f4f1e9;
  color: #777;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; text-align: center; padding: 20px;
}
.case__shot-fallback strong {
  display: block; color: #444; font-size: 13px; letter-spacing: -0.01em;
  text-transform: none; font-weight: 700;
}

.case__meta { display: flex; flex-direction: column; gap: 10px; }
.case__cat { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--c-blue-deep); text-transform: uppercase; }
.case__meta h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; color: var(--c-ink); }
.case__meta p { color: var(--c-ink-2); font-size: 0.96rem; line-height: 1.55; }
.case__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.case__tags li {
  font-size: 11px; font-family: var(--f-mono);
  padding: 5px 10px; border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-ink-2); border: 1px solid var(--c-line);
  font-weight: 500;
}

.case-study { padding: clamp(60px, 9vw, 120px) 0; border-top: 1px solid var(--c-line); background: var(--c-bg); }
.case-study:nth-of-type(even) { background: var(--c-surface); }
.case-study__head {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: end; justify-content: space-between;
  margin-bottom: 40px;
}
.case-study__title { flex: 1; min-width: 0; }
.case-study__title h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
  color: var(--c-ink); margin-bottom: 8px; word-break: break-word;
}
.case-study__title-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--c-ink-3);
}
.case-study__title-meta span:first-child { color: var(--c-blue-deep); font-weight: 500; }
.case-study__grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: start;
}
@media (max-width: 880px) { .case-study__grid { grid-template-columns: 1fr; } }
.case-study__media .case__media { aspect-ratio: 4/3; }
.case-study__info { display: flex; flex-direction: column; gap: 20px; padding-top: 12px; }
.case-study__info p { font-size: 1rem; line-height: 1.7; color: var(--c-ink-2); }
.case-study__info p strong { color: var(--c-ink); font-weight: 600; }
.case-study__deliverables {
  margin-top: 12px; padding-top: 24px;
  border-top: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 14px;
}
.case-study__deliverables-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c-blue-deep); font-weight: 500;
}
.case-study__deliverables ul { display: flex; flex-direction: column; gap: 10px; }
.case-study__deliverables li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.96rem; color: var(--c-ink-2); line-height: 1.5;
}
.case-study__deliverables li::before {
  content: ""; flex: 0 0 16px;
  width: 16px; height: 16px; margin-top: 3px;
  border-radius: 50%;
  background: var(--c-blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%232563eb' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  border: 1px solid var(--c-line-blue);
}
.case-study__cta { margin-top: 12px; }

/* ====================================================
   FOUNDERS — Premium dark founders section
   ==================================================== */

.founders {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(170deg, #07080f 0%, #090c17 60%, #050710 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

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

.founders__orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
}

.founders__orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  top: -220px; left: -160px;
  animation: fOrb1 18s ease-in-out infinite;
}

.founders__orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(96,165,250,0.15) 0%, transparent 70%);
  bottom: -160px; right: -120px;
  animation: fOrb2 22s ease-in-out infinite;
}

.founders__orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: fOrb3 14s ease-in-out infinite;
}

@keyframes fOrb1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(44px,28px); } }
@keyframes fOrb2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-32px,-22px); } }
@keyframes fOrb3 { 0%,100% { transform: translate(-50%,-50%); } 50% { transform: translate(-44%,-56%); } }

/* Section header overrides for dark background */
.founders__head {
  position: relative; z-index: 1;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.founders .section-label {
  color: #93c5fd;
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.3);
}

.founders__title {
  color: #f5f4ee;
  padding-bottom: 0.06em;
}

.founders__title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Grid */
.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  position: relative; z-index: 1;
}

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

/* Card */
.founder-card {
  position: relative;
  padding: clamp(32px, 4vw, 52px);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-2xl);
  display: flex; flex-direction: column;
  transition: transform .55s var(--ease-out), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.founder-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99,163,246,0.55) 50%, transparent 100%);
  opacity: 0.4; transition: opacity .4s var(--ease);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}

.founder-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99,163,246,0.28);
  box-shadow:
    0 28px 64px -20px rgba(37,99,235,0.38),
    0 12px 32px -8px rgba(0,0,0,0.55),
    0 0 0 1px rgba(99,163,246,0.14);
}

.founder-card:hover::before { opacity: 0.9; }

/* Mouse-tracked inner glow */
.founder-card__glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 65%);
  filter: blur(44px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: 50%; left: 50%;
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: 0;
}

.founder-card:hover .founder-card__glow { opacity: 1; }

/* All direct children above glow layer */
.founder-card > *:not(.founder-card__glow) { position: relative; z-index: 1; }

/* Header row */
/* Photo wrap — centered at top of card */
.founder-card__photo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: 28px;
}

/* Circular photo container */
.founder-card__photo {
  width: 130px; height: 130px;
  border-radius: 50%; position: relative;
  overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.35) 0%, rgba(29,78,216,0.2) 100%);
  border: 2px solid rgba(99,163,246,0.42);
  box-shadow:
    0 0 32px rgba(37,99,235,0.28),
    0 8px 24px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform .5s var(--ease-out), box-shadow .45s var(--ease);
}

.founder-card:hover .founder-card__photo {
  transform: scale(1.05) translateY(-3px);
  box-shadow:
    0 0 52px rgba(37,99,235,0.42),
    0 16px 36px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* The actual photo */
.founder-photo__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 50%; display: block;
  z-index: 1;
}

.allard-photo {
  object-position: center 75%;
  transform: none;
}

/* Initials fallback — always behind the photo (z-index 0) */
.founder-photo__fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 2.2rem; font-weight: 700;
  color: #93c5fd; letter-spacing: 0.02em;
  pointer-events: none;
}

/* Badge + index below photo */
.founder-card__badge {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #93c5fd; font-weight: 500;
  background: rgba(37,99,235,0.16);
  border: 1px solid rgba(99,163,246,0.32);
  padding: 5px 12px; border-radius: 999px;
}

.founder-card__index {
  font-family: var(--f-mono); font-size: 11px;
  color: rgba(245,244,238,0.28); letter-spacing: 0.06em;
}

/* Name — centered to match photo */
.founder-card__name {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #f5f4ee; line-height: 1.1;
  margin-bottom: 20px; padding-bottom: 0.04em;
  text-align: center;
}

/* Bio */
.founder-card__bio {
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.founder-card__bio p {
  font-size: 0.97rem; line-height: 1.72;
  color: rgba(245,244,238,0.58);
}

.founder-card__closer {
  font-style: italic;
  color: rgba(147,197,253,0.72) !important;
  font-size: 0.95rem !important;
}

/* Social links */
.founder-card__socials { display: flex; gap: 10px; flex-wrap: wrap; }

.founder-social {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,244,238,0.5);
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), transform .35s var(--ease-out), box-shadow .3s var(--ease);
}

.founder-social svg { width: 17px; height: 17px; }

.founder-social:hover {
  background: rgba(37,99,235,0.28);
  border-color: rgba(99,163,246,0.55);
  color: #93c5fd;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 28px -6px rgba(37,99,235,0.5);
}

@media (max-width: 600px) {
  .founder-card__photo { width: 110px; height: 110px; }
  .founder-card__name { font-size: 1.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .founders__orb { animation: none; }
  .founder-card { transition: none; }
  .founder-card:hover { transform: none; }
  .founder-card__photo { transition: none; }
  .founder-card:hover .founder-card__photo { transform: none; }
  .founder-social { transition: none; }
  .founder-social:hover { transform: none; }
}

/* Legacy .coureurs class kept for any references */
.coureurs { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-bg); }
.coureurs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
@media (max-width: 880px) { .coureurs__grid { grid-template-columns: 1fr; } }
.rider { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
@media (max-width: 600px) { .rider { grid-template-columns: 1fr; } }
.rider__photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, var(--c-surface) 100%);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.rider__bib {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--c-ink); color: var(--c-bg);
  padding: 8px 14px; border-radius: 8px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.rider__bib-name { font-family: var(--f-mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-ink-4); font-weight: 600; }
.rider__bib-num { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--c-bg); line-height: 1; margin-top: 2px; }
.rider__placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.rider__initials { font-size: 4rem; font-weight: 800; letter-spacing: -0.03em; color: var(--c-line-strong); line-height: 1; }
.rider__placeholder-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink-4); }
.rider__role {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c-blue-deep);
  background: var(--c-blue-soft);
  border: 1px solid var(--c-line-blue);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 14px; font-weight: 500;
}
.rider__body { padding-top: 8px; }
.rider__body h3 { font-size: clamp(1.6rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.025em; color: var(--c-ink); margin-bottom: 14px; }
.rider__quote {
  color: var(--c-ink-2); font-size: 1rem; line-height: 1.6;
  margin-bottom: 24px; padding-left: 18px;
  border-left: 3px solid var(--c-line-blue);
}
.rider__palmares { padding-top: 18px; border-top: 1px solid var(--c-line); }
.rider__palmares-label { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-blue-deep); margin-bottom: 12px; font-weight: 500; }
.rider__palmares ul { display: flex; flex-direction: column; gap: 8px; }
.rider__palmares li { font-size: 0.93rem; color: var(--c-ink-2); }
.rider__palmares li strong { color: var(--c-ink); font-weight: 600; }

/* WAAROM STORY — vervangt feat-grid op homepage */
.waarom__story { max-width: 820px; }
.waarom__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-ink-2);
  margin: 0 0 40px;
}
.waarom__lead strong { color: var(--c-ink); font-weight: 700; }
.waarom__quote {
  margin: 0 0 40px;
  padding: 28px 32px;
  border-left: 4px solid var(--c-blue);
  background: linear-gradient(135deg, var(--c-blue-soft), rgba(37,99,235,0.02));
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--shadow-xs), inset 0 0 0 1px var(--c-line-blue);
}
.waarom__quote p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.4;
  color: var(--c-ink); font-style: italic; margin: 0;
}
.waarom__cols { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.waarom__cols p { font-size: 1.05rem; line-height: 1.7; color: var(--c-ink-2); margin: 0; }
.waarom__cols p strong { color: var(--c-ink); font-weight: 600; }
.waarom__cols p em { color: var(--c-blue-deep); font-style: italic; }
.waarom__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* PORTFOLIO STATE — vervangt fake testimonials */
.portfolio-state {
  padding: clamp(80px, 12vw, 120px) 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
}
.portfolio-state__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.portfolio-state__inner .section-title { margin: 16px 0 20px; }
.portfolio-state__inner p { font-size: 1.05rem; line-height: 1.65; color: var(--c-ink-2); }
.portfolio-state__actions {
  display: inline-flex; flex-wrap: wrap; gap: 12px;
  margin-top: 32px; justify-content: center;
}

blockquote { margin: 0; padding: 0; }

.testimonials { padding: clamp(80px, 12vw, 120px) 0; background: var(--c-surface); border-top: 1px solid var(--c-line); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }
.testimonial {
  padding: 28px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .4s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-xs);
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--c-line-blue); box-shadow: var(--shadow-md); }
.testimonial__quote { font-size: 1.05rem; line-height: 1.55; color: var(--c-ink); font-weight: 500; letter-spacing: -0.005em; }
.testimonial__quote::before { content: "“"; display: block; font-size: 2.4rem; line-height: 0.5; color: var(--c-blue); margin-bottom: 12px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--c-line); margin-top: auto; }
.testimonial__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-blue-soft);
  border: 1px solid var(--c-line-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--c-blue-deep); letter-spacing: -0.02em;
}
.testimonial__info { display: flex; flex-direction: column; gap: 2px; }
.testimonial__name { font-size: 0.95rem; font-weight: 600; color: var(--c-ink); letter-spacing: -0.01em; }
.testimonial__role { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--c-ink-3); }

.faq { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-bg); border-top: 1px solid var(--c-line); }
.faq__list {
  max-width: 820px; margin: 0 auto;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq__item { border-bottom: 1px solid var(--c-line); background: transparent; transition: background .3s var(--ease); }
.faq__item:last-child { border-bottom: 0; }
.faq__item:hover { background: var(--c-bg); }
.faq__item[open] { background: var(--c-bg); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--c-ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  flex: 0 0 28px; width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-blue-soft);
  border: 1px solid var(--c-line-blue);
  position: relative;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute;
  background: var(--c-blue-deep);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq__plus::before { top: 50%; left: 25%; right: 25%; height: 2px; transform: translateY(-50%); }
.faq__plus::after { left: 50%; top: 25%; bottom: 25%; width: 2px; transform: translateX(-50%); }
.faq__item[open] .faq__plus { background: var(--c-blue); }
.faq__item[open] .faq__plus::before, .faq__item[open] .faq__plus::after { background: #fff; }
.faq__item[open] .faq__plus::after { transform: translateX(-50%) rotate(90deg); }
.faq__body { padding: 0 24px 22px; color: var(--c-ink-2); font-size: 0.98rem; line-height: 1.65; max-width: 720px; }
.faq__body em { color: var(--c-blue-deep); font-style: normal; font-weight: 600; }

.bigcta {
  position: relative;
  padding: clamp(100px, 14vw, 160px) 0;
  background: linear-gradient(170deg, var(--c-dark) 0%, #060710 100%);
  overflow: hidden;
  color: var(--c-dark-ink);
}
.bigcta__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59,130,246,0.28), transparent 70%); }
.bigcta__globe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.18);
  pointer-events: none;
  animation: globeRotate 60s linear infinite;
}
.bigcta__globe::before, .bigcta__globe::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.13);
}
.bigcta__globe::before { transform: rotateX(70deg); }
.bigcta__globe::after { transform: rotateY(70deg); }
@keyframes globeRotate { to { transform: translate(-50%, -50%) rotateZ(360deg); } }
.bigcta__inner { text-align: center; position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.bigcta .section-label { color: #93c5fd; background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3); }
.bigcta__title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--c-dark-ink); margin: 24px 0 28px;
  padding-bottom: 0.04em;
}
.bigcta__title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #93c5fd, var(--c-blue-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bigcta__sub { font-size: clamp(0.98rem, 1.2vw, 1.1rem); color: var(--c-dark-ink-2); margin: 0 auto 36px; line-height: 1.6; max-width: 620px; }
.bigcta__actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.contact { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-bg); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 980px) { .contact__grid { grid-template-columns: 1fr; gap: 50px; } }
.contact__info { padding-top: 8px; }
.contact__intro { margin-top: 22px; margin-bottom: 36px; color: var(--c-ink-2); font-size: 1.05rem; line-height: 1.6; max-width: 480px; }
.contact__channels { border-top: 1px solid var(--c-line); margin-bottom: 24px; }
.contact__channels li {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.contact__label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink-3); font-weight: 500; }
.contact__channels a, .contact__channels span:not(.contact__label) {
  font-size: 1.05rem; font-weight: 600;
  color: var(--c-ink); letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.contact__channels a:hover { color: var(--c-blue-deep); }
.contact__hours { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; color: var(--c-ink-2); }
.contact__hours-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; animation: pulseGreen 2.4s ease-in-out infinite; }
@keyframes pulseGreen { 0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.45); } 50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); } }
.contact__socials { margin-top: 32px; display: flex; gap: 8px; }
.contact__social {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--c-line-2);
  background: var(--c-bg);
  color: var(--c-ink-2);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-xs);
}
.contact__social:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.contact__social svg { width: 16px; height: 16px; }

.contact__form {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 3vw, 40px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact__form::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-blue), transparent);
}
.form__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  font-weight: 500;
}
.form__num { color: var(--c-blue-deep); }
.form__title { color: var(--c-ink-3); }
.form__row { margin-bottom: 22px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row--2 { grid-template-columns: 1fr; } }
.form__row label { display: flex; flex-direction: column; gap: 8px; }
.form__label { font-size: 13px; font-weight: 600; color: var(--c-ink); letter-spacing: -0.005em; margin-bottom: 4px; }
.form__label em { color: var(--c-ink-4); font-style: normal; font-weight: 500; }
.form__row input, .form__row textarea {
  background: var(--c-surface);
  border: 1px solid var(--c-line-2);
  padding: 13px 16px; font-size: 0.98rem;
  color: var(--c-ink); font-family: var(--f-sans);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  border-radius: var(--r-md); outline: none;
}
.form__row input::placeholder, .form__row textarea::placeholder { color: var(--c-ink-4); }
.form__row input:focus, .form__row textarea:focus { background: var(--c-bg); border-color: var(--c-blue); box-shadow: 0 0 0 4px var(--c-blue-soft-2); }
.form__row textarea { resize: vertical; min-height: 120px; }
.form__row.is-invalid input, .form__row.is-invalid textarea { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220,38,38,0.1); }
.form__err { display: none; margin-top: 4px; font-size: 12px; color: #dc2626; font-weight: 500; }
.form__row.is-invalid .form__err { display: block; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--c-line-2);
  background: var(--c-bg);
  font-size: 13px; font-weight: 500;
  color: var(--c-ink-2);
  transition: all .3s var(--ease);
}
.chip:hover span { border-color: var(--c-blue); color: var(--c-ink); }
.chip input:checked + span { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.form__submit { margin-top: 8px; width: 100%; justify-content: center; }
.form__small { margin-top: 14px; font-size: 12px; color: var(--c-ink-4); text-align: center; }
.form__success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  padding: 40px 20px; gap: 16px;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
}
.form__success.is-visible { display: flex; }
.form__success-mark {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,163,74,0.12); color: #16a34a;
  border: 1px solid rgba(22,163,74,0.25);
}
.form__success-mark svg { width: 28px; height: 28px; }
.form__success h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--c-ink); }
.form__success p { color: var(--c-ink-2); font-size: 0.95rem; max-width: 360px; }

.story { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-bg); }
.story__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
@media (max-width: 880px) { .story__grid { grid-template-columns: 1fr; gap: 40px; } }
.story__title { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--c-ink); position: sticky; top: 100px; }
.story__title em { font-style: italic; font-weight: 400; color: var(--c-blue-deep); }
@media (max-width: 880px) { .story__title { position: static; } }
.story__body { display: flex; flex-direction: column; gap: 24px; }
.story__body p { font-size: 1.05rem; line-height: 1.7; color: var(--c-ink-2); }
.story__body p strong { color: var(--c-ink); font-weight: 600; }
.story__pullquote {
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--c-blue);
  font-size: 1.4rem; font-weight: 500; letter-spacing: -0.015em; line-height: 1.4;
  color: var(--c-ink);
}
.story__pullquote em { font-style: italic; color: var(--c-blue-deep); font-weight: 600; }

.notlist { padding: clamp(80px, 12vw, 120px) 0; background: var(--c-surface); border-top: 1px solid var(--c-line); }
.notlist__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
@media (max-width: 880px) { .notlist__grid { grid-template-columns: 1fr; } }
.notcol {
  background: var(--c-bg);
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.notcol h3 {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--c-line);
  font-weight: 600;
}
.notcol--bad h3 { color: #dc2626; }
.notcol--good h3 { color: #16a34a; }
.notcol ul { display: flex; flex-direction: column; gap: 14px; }
.notcol li { display: flex; gap: 12px; font-size: 1rem; color: var(--c-ink-2); line-height: 1.55; }
.notcol li::before {
  flex: 0 0 18px; width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
  font-size: 11px; font-weight: 700;
}
.notcol--bad li::before { content: "×"; background: rgba(220,38,38,0.08); color: #dc2626; border: 1px solid rgba(220,38,38,0.25); }
.notcol--good li::before { content: "✓"; background: rgba(22,163,74,0.08); color: #16a34a; border: 1px solid rgba(22,163,74,0.3); font-size: 9px; }

.footer {
  position: relative;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  padding: 80px 0 0;
  overflow-x: clip;
  overflow-y: visible;
}
.footer__top {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--c-line);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr; gap: 40px; } }
.footer__brand p { margin-top: 18px; color: var(--c-ink-2); font-size: 0.95rem; line-height: 1.6; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__h {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c-blue-deep);
  margin-bottom: 6px; font-weight: 500;
}
.footer__col a { font-size: 0.95rem; color: var(--c-ink-2); font-weight: 500; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--c-ink); }
.footer__big {
  font-size: clamp(2.8rem, 12vw, 10rem);
  font-weight: 800; line-height: 0.85; color: transparent;
  -webkit-text-stroke: 1.5px rgba(10,10,10,0.08);
  text-align: center; user-select: none; pointer-events: none;
  white-space: nowrap; letter-spacing: -0.04em;
  margin: 28px 0 0; padding-bottom: 0.16em;
  position: relative; left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  display: block;
}
.footer__bottom {
  padding: 24px 0 28px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--c-ink-3);
}
.footer__sep { color: var(--c-ink-4); }
.footer__legal { display: flex; gap: 16px; margin-left: auto; }
.footer__legal a { color: var(--c-ink-2); }
.footer__legal a:hover { color: var(--c-blue-deep); }
@media (max-width: 600px) {
  .footer__legal { margin-left: 0; width: 100%; }
  .footer__big { font-size: clamp(2.4rem, 14vw, 5rem); letter-spacing: -0.05em; }
}

.sticky-wa {
  position: fixed; bottom: 22px; right: 22px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 35;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.55);
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .3s var(--ease);
}
.sticky-wa.is-visible { opacity: 1; transform: translateY(0); }
.sticky-wa:hover { box-shadow: 0 18px 40px -10px rgba(37,211,102,0.7); transform: translateY(-2px); }
.sticky-wa svg { width: 28px; height: 28px; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track, .bike, .bike__wheel, .hero__logo, .hero__logo-glow, .float-cursor, .bigcta__globe { animation: none; }
}
