:root {
  --bg: #fbfaf6;
  --bg-alt: #f4f1ea;
  --bg-deep: #ede9e0;
  --ink: #1a1a1a;
  --ink-soft: #3a3530;
  --ink-mute: #6a655c;
  --ink-faint: #8a847a;
  --rule: #e0dcd2;
  --blue-deep: #005ad8;
  --blue-lite: #6aa8ff;
  --blue-tint: #e8f0ff;
}

html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); scroll-behavior: smooth; }
body { padding-bottom: 92px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px; line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 400; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; }
.eyebrow {
  font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1.5px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-lite));
  border-radius: 1px; opacity: 0.65;
  vertical-align: middle; margin-right: 9px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: inherit; letter-spacing: -0.1px;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s, background .2s;
  border: 1px solid transparent;
}
.btn--lg { padding: 17px 28px; font-size: 15px; }
.btn--primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-lite));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 8px 24px -8px rgba(0,90,216,0.5);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 12px 28px -8px rgba(0,90,216,0.6); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(26,26,26,0.18); }
.btn--ghost:hover { background: rgba(26,26,26,0.04); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(3px); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 20px 56px;
  background: rgba(251,250,246,0.85);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-bottom: 1px solid rgba(26,26,26,0.06);
}
.nav__brand { display: flex; align-items: center; text-decoration: none; }
.nav__brand img { display: block; height: 24px; width: auto; }
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-soft); margin-left: auto;}
.nav__links a { position: relative; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: var(--blue-deep); transition: right .25s; }
.nav__links a:hover::after { right: 0; }
.lang-toggle {
  display: inline-flex; background: rgba(26,26,26,0.06); border-radius: 999px; padding: 3px; font-size: 11px; font-weight: 500;
}
.lang-toggle button { border: 0; background: transparent; padding: 5px 10px; border-radius: 999px; cursor: pointer; color: var(--ink-mute); font-family: inherit; font-weight: inherit; letter-spacing: 0.5px; }
.lang-toggle button.is-active { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }

/* LAYOUT */
section { padding: 140px 56px; }
.wrap { max-width: 1440px; margin: 0 auto; }
.wrap--narrow { max-width: 900px; margin: 0 auto; }

/* HERO */
.hero {
  padding-top: 120px; padding-bottom: 80px; text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 72% 0%, rgba(0,90,216,0.09) 0%, transparent 52%),
    var(--bg);
}
.hero__badge-wrap {
  display: flex; justify-content: center; margin-bottom: 20px;
  animation: badgePop .8s cubic-bezier(.2,.7,.3,1) both;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.4px; color: var(--ink-mute);
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--rule);
  background: rgba(255,255,255,0.5);
}
.hero__tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-deep);
  animation: dotPulse 2.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,90,216,0.18); }
  50%       { box-shadow: 0 0 0 7px rgba(0,90,216,0.07); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(44px, 6.2vw, 88px); line-height: 1.02; letter-spacing: -2px;
  margin-top: 28px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic; color: var(--blue-deep); position: relative;
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-lite));
}
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft);
  max-width: 640px; margin: 32px auto 0; line-height: 1.5; text-wrap: pretty;
}
.hero__cta { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.hero__trust {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.15px;
}
.hero__trust-item {
  display: inline-flex; align-items: center; gap: 5px;
}
.hero__trust-sep { color: var(--rule); }
.avatar-proof { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-soft); }
.avatar-proof .stack { display: flex; }
.avatar-proof .stack > div { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -11px; background-size: cover; background-position: center; }
.avatar-proof .stack > div:first-child { margin-left: 0; }
.hero__portrait {
  max-width: 1040px; margin: 96px auto 0; aspect-ratio: 16 / 9;
  border-radius: 28px; overflow: hidden; position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 30px 60px -30px rgba(0,0,0,0.15);
}
.hero__portrait img,
.who-banner img {
  width: 100%; object-fit: cover; display: block;
  border-radius: 28px;
}

/* WARUM — typographic display with animated grid */
.why {
  background: var(--bg);
  position: relative; overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,26,26,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 35%, #000 60%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 35%, #000 60%);
  z-index: 0; pointer-events: none;
}
.why .wrap { position: relative; z-index: 1; }
.why-inner { max-width: 960px; margin: 0 auto; }
.why-label {
  display: inline-flex; align-items: center;
  font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--ink-mute);
  padding: 5px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.why-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.4vw, 64px); font-weight: 400;
  line-height: 1.08; letter-spacing: -1.5px;
  margin: 0; text-wrap: balance;
}
.why-heading strong { color: var(--ink); font-weight: 400; display: block; }
.why-heading span { color: var(--ink-faint); }

/* GRADIENT TEXT utility */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-lite) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-mission {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.6vw, 21px); font-style: italic;
  line-height: 1.6; color: var(--ink-soft);
  max-width: 560px; margin: 36px 0 0;
  padding-left: 20px;
  border-left: 2px solid rgba(0,90,216,0.35);
}
.why .main__cta { text-align: left; margin-top: 48px; }

/* FAN CARDS */
.why-fan {
  position: relative; width: 100%; height: 360px;
}
.fan-card {
  position: absolute; width: 200px; height: 272px;
  border-radius: 28px; overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.06);
  top: 0; left: 50%;
  transform-origin: 50% 115%;
  transition: box-shadow .4s;
}
.fan-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fan-card__caption {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 9px; letter-spacing: 0.6px; color: rgba(255,255,255,0.85);
  text-transform: lowercase; mix-blend-mode: difference;
}
.fan-card:nth-child(1) { z-index: 1; animation: fanFloat1 7s ease-in-out infinite; animation-delay: -4.2s; }
.fan-card:nth-child(2) { z-index: 2; animation: fanFloat2 7s ease-in-out infinite; animation-delay: -2.1s; }
.fan-card:nth-child(3) { z-index: 3; animation: fanFloat  7s ease-in-out infinite; }
@keyframes fanFloat1 {
  0%, 100% { transform: translateX(-50%) translateX(-54px) rotate(-14deg) translateY(0px); }
  50%       { transform: translateX(-50%) translateX(-54px) rotate(-14deg) translateY(-9px); }
}
@keyframes fanFloat2 {
  0%, 100% { transform: translateX(-50%) translateX(0px) rotate(-4deg) translateY(0px); }
  50%       { transform: translateX(-50%) translateX(0px) rotate(-4deg) translateY(-9px); }
}
@keyframes fanFloat {
  0%, 100% { transform: translateX(-50%) translateX(54px) rotate(7deg) translateY(0px); }
  50%       { transform: translateX(-50%) translateX(54px) rotate(7deg) translateY(-9px); }
}

/* LOGO BADGE — white icon on blue gradient */
.logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px; padding: 10px;
  background: linear-gradient(140deg, var(--blue-deep) 0%, #4a9aff 100%);
  box-shadow: 0 8px 28px -6px rgba(0,90,216,0.45), 0 2px 6px rgba(0,90,216,0.15);
  flex-shrink: 0;
}
.logo-badge img { display: block; width: 100%; height: 100%; object-fit: contain; }
.logo-badge--sm { width: 40px; height: 40px; border-radius: 50%; padding: 12px; }
.logo-badge--md { width: 64px; height: 64px; border-radius: 20px; padding: 13px; }
.logo-badge--lg { width: 88px; height: 88px; border-radius: 28px; padding: 18px; }

/* FINAL BADGE */
.final-badge-wrap {
  display: flex; justify-content: center; margin-bottom: 36px;
}
.final-badge-wrap .logo-badge--lg {
  animation: badgePop .8s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes badgePop {
  0%   { opacity: 0; transform: scale(.7) translateY(12px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* APP BAR LOGO */
.app-bar__logo-wrap {
  display: flex; align-items: center; gap: 12px;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.7,.3,1), transform .75s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

.diagram-caption {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: 0.4px; color: var(--ink-mute);
}
.diagram-caption .r { color: var(--blue-deep); }

/* HOW */
.how { background: var(--bg-alt); }
.how-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.how h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.8px; margin-top: 16px; }
.how-steps { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-direction: column; gap: 4px; }
.how-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  padding: 16px 20px; border-radius: 10px; cursor: pointer;
  transition: background .3s, opacity .5s;
  opacity: 0.45;
}
.how-step:hover { opacity: 0.8; }
.how-step.is-active { opacity: 1; background: rgba(0,90,216,0.04); }
.how-step__n {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 32px;
  color: var(--ink-faint); line-height: 1; transition: color .3s;
}
.how-step.is-active .how-step__n { color: var(--blue-deep); }
.how-step__t { font-size: 18px; font-weight: 600; letter-spacing: -0.2px; color: var(--ink); }
.how-step__d { font-size: 14px; color: var(--ink-soft); margin-top: 4px; line-height: 1.5; }
.how__cta { margin-top: 40px; }

/* PHONE */
.phone {
  position: relative; width: 260px; height: 534px; margin: 0 auto;
  border-radius: 44px; background: #111; padding: 8px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.08), 0 0 0 0.5px rgba(255,255,255,0.1) inset;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 36px; background: #fafaf7; overflow: hidden; position: relative;
}
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 90px; height: 26px; background: #111; border-radius: 14px; z-index: 2; }
.phone__screens { position: absolute; inset: 0; }
.phone__screen-step {
  position: absolute; inset: 0; padding: 48px 20px 20px;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s, transform .5s;
  pointer-events: none;
}
.phone__screen-step.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.ps-label { font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.ps-h { font-size: 15px; font-weight: 600; letter-spacing: -0.3px; line-height: 1.2; color: var(--ink); }
.ps-line { height: 7px; background: #eeece6; border-radius: 3px; }
.ps-card { padding: 10px 12px; background: #fff; border: 1px solid #ede9e0; border-radius: 10px; display: flex; flex-direction: column; gap: 6px; }
.ps-card.is-selected { border-color: var(--blue-deep); background: rgba(0,90,216,0.05); }
.ps-bar { height: 5px; background: #d8d4ca; border-radius: 3px; }
.ps-grad { height: 100%; background: linear-gradient(90deg, var(--blue-deep), var(--blue-lite)); border-radius: 2px; }
.ps-btn { height: 34px; background: var(--blue-deep); color: #fff; border-radius: 17px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; }

/* PHONE SCREENSHOTS */
.phone__screen-step img {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%; object-fit: cover;
}

/* PHONE FLOATING FEATURE BADGES */
.phone-badge {
  position: absolute; z-index: 10;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 999px; white-space: nowrap;
  font-size: 12px; font-weight: 500; color: var(--ink);
  box-shadow: 0 4px 18px -4px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.06);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(.2,.7,.3,1);
  animation: phoneBadgeFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.phone-badge.is-visible { opacity: 1; }
@keyframes phoneBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.badge-emoji { font-size: 14px; line-height: 1; }

/* AI MODELS SECTION — bento grid */
.models { background: var(--bg); }
.models__h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 52px); line-height: 1.05; letter-spacing: -0.8px;
  margin-top: 14px; text-wrap: balance;
}
.models__sub {
  font-size: 14px; color: var(--ink-mute); margin-top: 10px; letter-spacing: 0.2px;
}
.models-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 14px; margin-top: 40px;
}

/* Base card */
.mb-card {
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--rule); background: #fff;
  padding: 32px; position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px -6px rgba(0,0,0,0.07);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s;
}
.mb-card:not(.mb-card--person):not(.mb-card--photo):hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -14px rgba(0,0,0,0.11);
}
.mb-card--person  { padding: 0; grid-row: 1 / 3; }
.mb-card--photo   { padding: 0; }
.mb-card--usecase { grid-column: 3 / 5; }
.mb-card--person img,
.mb-card--photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Logos card ────────────────────────────────── */
.mb-logos-label {
  font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 20px;
}
.mb-logos { display: flex; gap: 12px; align-items: center; }
.mb-logo-chip {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--rule); box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; flex-shrink: 0;
}
.mb-logo-chip img {
  width: 32px; height: 32px; object-fit: contain;
  display: block; position: relative; z-index: 1;
}
.mb-logo-fb {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 14px; font-weight: 700; letter-spacing: -0.5px;
}
.mb-logo-chip--claude { background: #faf0ed; }
.mb-logo-chip--claude .mb-logo-fb { color: #c96848; }
.mb-logo-chip--openai { background: #f5f5f5; }
.mb-logo-chip--openai .mb-logo-fb { color: #333; }
.mb-logo-chip--gemini { background: #eef3ff; }
.mb-logo-chip--gemini .mb-logo-fb { color: #4a7fd4; }
.mb-logo-chip--more {
  background: transparent;
  border-style: dashed; border-color: var(--ink-faint);
  font-size: 10px; font-weight: 600;
  color: var(--ink-faint); font-family: inherit; letter-spacing: 0;
}
.mb-logos-card-title {
  font-size: 20px; font-weight: 600; letter-spacing: -0.3px; color: var(--ink);
  margin-top: 24px; line-height: 1.2;
}
.mb-logos-note {
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
  margin-top: 10px; text-wrap: pretty; flex: 1;
}

/* ── Stat card ────────────────────────────────── */
.mb-card--stat {
  background: var(--blue-tint);
  border-color: rgba(0,90,216,0.1);
  justify-content: flex-end;
}
.mb-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 7vw, 96px); font-weight: 400;
  line-height: 1; letter-spacing: -4px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-lite) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mb-stat-suf { font-size: 0.5em; vertical-align: super; line-height: 0; letter-spacing: -1px; }
.mb-stat-label {
  font-size: 14px; font-weight: 600; color: var(--ink);
  margin-top: 12px; line-height: 1.3;
}
.mb-stat-sub { font-size: 12px; color: var(--ink-mute); margin-top: 5px; line-height: 1.55; }

/* ── Photo card overlay ────────────────────────── */
.mb-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px 28px;
  background: linear-gradient(to top, rgba(15,30,60,0.72) 0%, transparent 100%);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 19px; line-height: 1.25; color: #fff; text-wrap: balance;
}

/* ── Tags card ────────────────────────────────── */
.mb-card--tags {
  background: var(--bg-alt); border-color: transparent;
  padding: 24px;
  align-items: center; justify-content: center; gap: 8px;
}
.mb-tags { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mb-tags__row { display: flex; align-items: center; justify-content: center; gap: 8px; }
.mb-tag {
  display: inline-flex; align-items: center;
  padding: 7px 18px; border-radius: 999px; border: 1px solid var(--rule);
  background: #fff; font-size: 12.5px; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.mb-tag--hl {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-lite));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px -4px rgba(0,90,216,0.5);
}
.mb-tag-plus {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(26,26,26,0.07); color: var(--ink-faint);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; flex-shrink: 0;
}

/* ── Use case card ────────────────────────────── */
.mb-card--usecase {
  background: #fff;
  flex-direction: row; align-items: center; gap: 28px;
}
.mb-uc-content { flex: 1; min-width: 0; }
.mb-uc-label {
  font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 10px;
}
.mb-uc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 28px); font-weight: 400; line-height: 1.2;
  letter-spacing: -0.5px; color: var(--ink); text-wrap: balance;
}
.mb-uc-sub {
  font-size: 13px; color: var(--ink-mute); line-height: 1.55; margin-top: 8px;
}
.mb-uc-proof {
  display: flex; flex-shrink: 0;
}
.mb-uc-av {
  width: 60px; height: 60px; border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
  overflow: hidden; flex-shrink: 0;
  margin-left: -14px;
}
.mb-uc-av:first-child { margin-left: 0; }
.mb-uc-av img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* PRINCIPLE — stacked centered layout, fan cards on top */
.principle { background: var(--bg-alt); text-align: center; }
.principle-inner { max-width: 600px; margin: 0 auto; }
.principle .why-fan { margin: 0; }
.principle h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.8px; margin-top: 20px; text-wrap: balance; }
.principle p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 18px auto 0; max-width: 420px; text-wrap: pretty; }
.principle .main__cta { margin-top: 40px; text-align: center; }

/* AREAS */
.areas h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.8px; max-width: 800px; text-wrap: balance; margin-top: 16px; }
.areas__sub { font-size: 17px; color: var(--ink-soft); margin-top: 20px; max-width: 560px; line-height: 1.55; }
.bento {
  margin-top: 56px; display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.bento__tile {
  border-radius: 28px; padding: 28px; border: 1px solid var(--rule); background: #fff;
  display: flex; flex-direction: column; min-height: 300px;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
  position: relative; overflow: hidden;
}
.bento__tile:hover { transform: translateY(-2px); border-color: rgba(0,90,216,0.25); box-shadow: 0 12px 36px -12px rgba(0,0,0,0.1); }
.bento__num { font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 1.6px; color: var(--ink-faint); }
.bento__icon { flex: 1; display: flex; align-items: center; justify-content: center; padding: 24px 0; }
.bento__icon svg { width: 72px; height: 72px; color: var(--ink-soft); transition: color .3s, transform .4s cubic-bezier(.2,.7,.3,1); }
.bento__tile:hover .bento__icon svg { color: var(--blue-deep); transform: scale(1.1) rotate(-6deg); }
.bento__title { font-size: 20px; font-weight: 600; letter-spacing: -0.3px; color: var(--ink); line-height: 1.2; }
.bento__sub { font-size: 13px; color: var(--ink-mute); margin-top: 6px; line-height: 1.45; }


/* TESTIMONIALS — masonry columns with float animation */
.voices { background: var(--bg-alt); padding-top: 72px; border-top: 1px solid var(--rule); }
.voices h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.8px; margin-top: 16px; margin-bottom: 56px; text-wrap: balance; }
#voicesList {
  column-count: 3; column-gap: 20px;
  margin-bottom: 48px;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
.voice-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: 24px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  break-inside: avoid; margin-bottom: 20px;
  width: 100%;
  animation: cardFloat 7s ease-in-out infinite;
  box-shadow: 0 2px 12px -4px rgba(0,0,0,0.06);
}
.voice-card:nth-child(2) { animation-delay: -2.3s; }
.voice-card:nth-child(3) { animation-delay: -4.6s; }
.voice-card:nth-child(4) { animation-delay: -1.1s; }
.voice-card:nth-child(5) { animation-delay: -3.5s; }
.voice-card:nth-child(6) { animation-delay: -5.8s; }
/* Reveal for voice cards — opacity only to avoid float conflict */
.voice-card.reveal { opacity: 0; transform: none; transition: opacity .75s cubic-bezier(.2,.7,.3,1); }
.voice-card.reveal.is-visible { opacity: 1; }
.voice__topic {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-deep); font-weight: 600; margin-bottom: 20px;
}
.voice__topic .rule { width: 20px; height: 1px; background: var(--blue-deep); }
.voice__quote {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.45; letter-spacing: -0.2px;
  color: var(--ink); margin: 0; text-wrap: pretty; flex: 1;
}
.voice__quote::before {
  content: '\201E';
  font-family: 'Cormorant Garamond', serif; font-size: 2.5em; line-height: 0.8;
  color: rgba(0,90,216,0.22); display: block; margin-bottom: 6px;
}
.voice__meta {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 3px;
}
.voice__name { font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -0.2px; }
.voice__name .age { color: var(--ink-faint); font-weight: 400; margin-left: 4px; }
.voice__role { font-size: 12px; color: var(--ink-mute); }
.main__cta { text-align: center; margin-top: 3rem; }

/* STATS */
.stats {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,90,216,0.07) 0%, transparent 65%),
    var(--bg-alt);
}
.stats .eyebrow { margin-bottom: 56px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 0;
}
.stat-item {
  padding: 48px 40px;
  border-left: 1px solid var(--rule);
  position: relative;
}
.stat-item:first-child { border-left: 0; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px); font-weight: 400;
  line-height: 1; letter-spacing: -3px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-lite) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suf {
  font-size: 0.55em; letter-spacing: -1px; margin-left: 2px;
  vertical-align: super; line-height: 0;
}
.stat-label {
  font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.2px;
  margin-top: 16px; line-height: 1.3;
}
.stat-sub {
  font-size: 13px; color: var(--ink-mute); margin-top: 6px; line-height: 1.5;
  max-width: 260px; text-wrap: pretty;
}

/* WHO + VOICES — shared zone */
.who { background: var(--bg-alt); text-align: center; padding-bottom: 72px; }
.who-inner { max-width: 720px; margin: 0 auto; }
.who-pre {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 400;
  letter-spacing: -1px; line-height: 1.08; color: var(--ink);
  margin: 24px 0 0; text-wrap: balance;
}
.who-ticker {
  position: relative; height: 320px; margin-top: 0;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 56%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 56%, transparent 100%);
}
.who-ticker__item {
  position: absolute; left: 0; right: 0;
  padding: 0 32px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(24px, 2.8vw, 40px);
  letter-spacing: -0.3px; line-height: 1.3; text-align: center;
  transition: transform 0.72s cubic-bezier(.2,.7,.3,1), opacity 0.72s;
}
.who-ticker__item[data-slot="0"] { transform: translateY(60px);  opacity: 1;    color: var(--ink); }
.who-ticker__item[data-slot="1"] { transform: translateY(160px); opacity: 0.36; color: var(--ink-soft); }
.who-ticker__item[data-slot="2"] { transform: translateY(252px); opacity: 0.13; color: var(--ink-mute); }
.who-ticker__item[data-slot="new"] { transform: translateY(320px); opacity: 0; }
.who-ticker .who-ticker__item.is-exiting {
  transform: translateY(-60px); opacity: 0;
}
.who-banner {
  margin-top: 72px;
  width: 100%; aspect-ratio: 16 / 5;
  overflow: hidden; position: relative;
}

/* FINAL CTA */
.final {
  background: radial-gradient(ellipse at 50% 100%, rgba(0,90,216,0.12), transparent 60%), var(--bg);
  text-align: center; padding: 160px 56px;
}
.final h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 7vw, 96px);
  line-height: 1; letter-spacing: -2px; text-wrap: balance;
}
.final__sub { font-size: 19px; color: var(--ink-soft); margin-top: 24px; }
.final__cta { margin-top: 40px; display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.final__note { margin-top: 20px; font-size: 13px; color: var(--ink-faint); }

/* FOOTER */
footer { padding: 56px 56px 36px; border-top: 1px solid rgba(26,26,26,0.08); }
.foot-grid { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.foot__brand { margin-bottom: 10px; }
.foot__brand img { display: block; height: 26px; width: auto; }
.foot__tag { font-size: 14px; color: var(--ink-soft); max-width: 300px; }
.foot__links { display: flex; gap: 32px; font-size: 13px; color: var(--ink-mute); }
.foot__copyr { max-width: 1200px; margin: 40px auto 0; font-size: 12px; color: var(--ink-faint); }

/* PORTRAITS */
.portrait {
  width: 100%; height: 100%; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f0e6d4 0%, #e0c9a8 40%, #c9a576 100%);
}
.portrait--cool  { background: linear-gradient(160deg, #e8ecf0 0%, #c4cdd6 50%, #8da0b0 100%); }
.portrait--warm2 { background: linear-gradient(170deg, #efdfc8 0%, #d7b28a 50%, #a8784c 100%); }
.portrait--morning { background: linear-gradient(180deg, #f3ece0 0%, #ddc9a8 50%, #b58856 100%); }
.portrait--dusk  { background: linear-gradient(170deg, #e8d6c0 0%, #c89b76 50%, #7a5a48 100%); }
.portrait__silhouette { position: absolute; inset: 0; }
.portrait__grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.25 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.portrait__vignette {
  position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0,0,0,0.25) 100%);
}
.portrait__caption {
  position: absolute; left: 16px; bottom: 14px; font-family: ui-monospace, Menlo, monospace;
  font-size: 10px; letter-spacing: 0.5px; color: rgba(255,255,255,0.8); text-transform: lowercase;
  mix-blend-mode: difference;
}

/* APP BAR */
.app-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: flex; align-items: center; gap: 16px;
  padding: 8px 8px 8px 8px;
  background: rgba(251,250,246,0.88);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 999px;
  box-shadow: 0 8px 40px -4px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.04);
  white-space: nowrap;
}
.app-bar__hint { font-size: 13px; color: var(--ink-mute); margin: 0; letter-spacing: -0.1px; }
.app-bar__hint strong { color: var(--ink); font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .how-grid, .who-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .why-fan { height: 280px; }
  .fan-card { width: 156px; height: 212px; }
  .fan-card:nth-child(1) { animation: none; transform: translateX(-50%) translateX(-44px) rotate(-14deg); }
  .fan-card:nth-child(2) { animation: none; transform: translateX(-50%) translateX(0px)   rotate(-4deg); }
  .fan-card:nth-child(3) { animation: none; transform: translateX(-50%) translateX(44px)  rotate(7deg); }
  .app-bar__hint { display: none; }
  .app-bar { padding: 8px; gap: 8px; }
  #voicesList { column-count: 1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .nav { padding: 16px 24px; gap: 12px; justify-content: space-between;}
  .why .main__cta { text-align: center; }
  .models-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px auto 200px auto auto;
    gap: 10px;
  }
  .mb-card--person { grid-column: 1 / 3; grid-row: 1; }
  .mb-card--logos  { grid-column: 1 / 3; }
  .mb-card--stat   { grid-column: 1; min-height: 200px; }
  .mb-card--photo  { grid-column: 2; }
  .mb-card--tags   { grid-column: 1 / 3; }
  .mb-card--usecase { grid-column: 1 / 3; flex-direction: column; align-items: flex-start; gap: 20px; }
  .phone-badge { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-left: 0; border-top: 1px solid var(--rule); padding: 32px 0; }
  .stat-item:first-child { border-top: 0; }

  /* Hero — class selector would otherwise win over section element selector */
  .hero { padding-top: 64px; padding-bottom: 48px; }
  .hero__portrait { margin-top: 48px; border-radius: 16px; }

  /* Final — same specificity issue */
  .final { padding: 80px 24px; }

  /* Footer */
  footer { padding: 40px 24px 28px; }
  .foot-grid { flex-direction: column; gap: 24px; }
  .foot__links { gap: 20px; flex-wrap: wrap; }

  /* Who */
  .who-banner { aspect-ratio: 16 / 7; margin-top: 40px; }
  .who-ticker { height: 260px; }

  /* Voice cards */
  .voice-card { padding: 24px 20px; }
}

/* Small phones */
@media (max-width: 600px) {
  /* Areas bento — single column */
  .bento { grid-template-columns: 1fr; }
  .bento__tile { min-height: 220px; }

  /* Models bento — single column */
  .models-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .mb-card--person  { grid-column: 1; grid-row: auto; height: 240px; }
  .mb-card--logos   { grid-column: 1; }
  .mb-card--stat    { grid-column: 1; }
  .mb-card--photo   { grid-column: 1; height: 200px; }
  .mb-card--tags    { grid-column: 1; }
  .mb-card--usecase { grid-column: 1; }
  .mb-uc-proof { display: none; }

  /* Phone mock — slightly smaller */
  .phone { width: 200px; height: 410px; border-radius: 36px; }
  .phone__notch { width: 74px; height: 22px; }

  /* Footer links — stack vertically */
  .foot__links { flex-direction: column; gap: 12px; }

  /* Who / hero details */
  .hero__portrait { border-radius: 12px; margin-top: 32px; }
  .who-banner { border-radius: 16px; }
}
