/* ====== Custom Fonts ====== */
@font-face {
  font-family: "Bungee";
  src: url("./fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SpaceGrotesk";
  src: url("./fonts/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ====== Carte Blanche — contemporary tokens ====== */
:root {
  /* neutrals — blanc & anthracite */
  --bg: #FFFFFF;
  --bg-soft: #F6F5F2;
  --bg-2: #EDECE8;
  --bg-line: #E4E4E2;
  --bg-ink: #272829;
  --bg-ink-soft: #323436;

  /* ink */
  --ink: #1C1C1E;
  --ink-2: #2C2C2E;
  --ink-3: #57575C;
  --ink-4: #8A8A8E;
  --ink-5: #BBBBBC;
  --line: #E5E4E0;
  --line-2: #D2D1CC;

  /* accent — or / doré */
  --signal: #C4A052;
  --signal-deep: #A88540;
  --signal-tint: #F8F2E6;

  /* secondary accents */
  --acid: oklch(88% 0.18 110);
  --cobalt: oklch(48% 0.18 250);

  /* type */
  --font-display: "Bungee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans: "SpaceGrotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  /* layout */
  --maxw: 1340px;
  --gutter: 28px;
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

/* ============ TYPE ============ */
.mono  { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* Display — heavy, tight, modern */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(36px, 4.8vw, 72px);
  color: var(--ink);
  overflow-wrap: break-word;
  word-break: break-word;
}
.display em {
  font-style: normal;
  color: var(--signal);
  font-weight: 400;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(28px, 3.8vw, 56px);
  color: var(--ink);
  overflow-wrap: break-word;
  word-break: break-word;
}
.h2 em { font-style: normal; color: var(--signal); }

.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.0;
  font-size: clamp(20px, 2.2vw, 32px);
  overflow-wrap: break-word;
  word-break: break-word;
}
.h3 em { font-style: normal; color: var(--signal); }

.lede {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 58ch;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.body { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

/* ============ LAYOUT ============ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(80px, 9vw, 144px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }
#why { padding: clamp(64px, 7vw, 96px) 0; }
#why .sec-head--center { margin-bottom: 0; }
/* Sections 04 and 05 share the same background: each junction adds up
   to one standard section gap instead of stacking two full paddings. */
#realisations { padding-bottom: clamp(40px, 4.5vw, 72px); }
#about {
  padding-top: clamp(40px, 4.5vw, 72px);
  padding-bottom: clamp(40px, 4.5vw, 72px);
}
#temoignage {
  padding: clamp(40px, 4.5vw, 72px) 0 clamp(80px, 9vw, 144px);
}
.hero[id], .section[id], .section-continuation[id] { scroll-margin-top: 64px; }
.tone-white  { background: var(--bg); }
.tone-soft   { background: var(--bg-soft); }
.tone-gray   { background: var(--bg-2); }
.tone-ink    { background: var(--bg-ink); color: #ECECEA; }
.tone-signal { background: var(--signal); color: #fff; }

.tone-ink .eyebrow,
.tone-ink .feat__num,
.tone-ink .feat__body { color: rgba(236,236,234,0.62); }
.tone-ink .lede { color: rgba(236,236,234,0.78); }
.tone-ink .display,
.tone-ink .h2,
.tone-ink .h3 { color: #fff; }
.tone-ink .display em,
.tone-ink .h2 em,
.tone-ink .h3 em { color: var(--signal); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.008em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--signal); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--signal {
  background: var(--signal);
  color: #fff;
}
.btn--signal:hover { background: var(--signal-deep); }

.tone-ink .btn--primary { background: #fff; color: var(--ink); }
.tone-ink .btn--primary:hover { background: var(--signal); color: #fff; }
.tone-ink .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.tone-ink .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.btn-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__brand-mark {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--signal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
.nav__brand-mark em { font-style: normal; }
.nav__links {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.nav__links a {
  padding: 6px 0;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--signal); }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.lang-switch button {
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--ink-3);
  transition: all 0.15s;
}
.lang-switch button.active {
  background: var(--ink);
  color: #fff;
}

/* ============ HERO ============ */
.hero {
  padding: clamp(12px, 1.5vw, 18px) 0 clamp(48px, 6vw, 80px);
  position: relative;
}
.hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: clamp(28px, 3.5vw, 44px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.hero__topline span { display: inline-flex; align-items: center; gap: 8px; }
.dot { display: none; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero__title { margin-bottom: 28px; }
.hero__sub { margin-bottom: 32px; max-width: 36ch; }
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* hero visual */
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 78%;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

/* === BOX (real product photo — white-label mockup) === */
.box-mockup {
  position: relative;
  width: 112%;
  z-index: 2;
  display: grid;
  place-items: center;
  transform: translateY(-7%);
}
@media (max-width: 960px) {
  .box-mockup { width: 100%; }
}
.box-photo {
  width: 100%;
  height: auto;
  display: block;
  /* drops the light-grey studio backdrop into the white page */
  mix-blend-mode: multiply;
}

/* === CARDS === */
.card-quiz {
  /* per-card theming — flipped by colour modifiers below */
  --card-bg: #fff;
  --card-fg: var(--ink);
  --card-muted: var(--ink-4);
  --card-line: var(--line);
  --card-accent: var(--signal);
  --card-pill-bg: var(--ink);
  --card-pill-fg: #fff;
  --card-choice-bg: rgba(28, 28, 30, 0.045);
  --card-choice-line: rgba(28, 28, 30, 0.1);
  --card-choice-key-bg: var(--ink);
  --card-choice-key-fg: #fff;

  position: absolute;
  width: 30%;
  aspect-ratio: 5/7;
  container-type: inline-size;
  background: var(--card-bg);
  color: var(--card-fg);
  border-radius: 10px;
  padding: 13px 12px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.28),
    0 8px 16px -8px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  /* --lift is composed in screen-space, on top of each card's 3D pose */
  --lift: translateY(0) scale(1);
  transform: var(--lift) var(--card-tf, rotate(var(--rot, -8deg)));
  transform-style: preserve-3d;
  z-index: 3;
  border: 1px solid var(--card-line);
  overflow: hidden;
  transition:
    transform 520ms cubic-bezier(0.34, 1.4, 0.5, 1),
    box-shadow 420ms ease,
    filter 420ms ease;
  will-change: transform;
}
/* light sheen that sweeps across the card on hover */
.card-quiz::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(255, 255, 255, 0.38) 48%,
    rgba(255, 255, 255, 0.05) 56%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 760ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: 6;
}
.card-quiz:hover,
.card-quiz:focus-visible {
  --lift: translateY(-20px) scale(1.07);
  z-index: 30;
  filter: brightness(1.04);
  box-shadow:
    0 60px 100px -28px rgba(0, 0, 0, 0.45),
    0 18px 34px -14px rgba(0, 0, 0, 0.22);
}
.card-quiz:hover::after,
.card-quiz:focus-visible::after {
  transform: translateX(130%);
}
/* picto / number give a little pop in response */
.card-picto__icon svg,
.card-q-num {
  transition: transform 520ms cubic-bezier(0.34, 1.4, 0.5, 1);
}
.card-quiz:hover .card-picto__icon svg { transform: scale(1.12); }
.card-quiz:hover .card-q-num { transform: scale(1.06); transform-origin: left center; }

@media (prefers-reduced-motion: reduce) {
  .card-quiz,
  .card-quiz::after,
  .card-picto__icon svg,
  .card-q-num { transition: none; }
  .card-quiz:hover, .card-quiz:focus-visible { --lift: translateY(-8px) scale(1.03); }
  .card-quiz:hover::after, .card-quiz:focus-visible::after { transform: translateX(-130%); }
}
.card-q-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 5.7cqw;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--card-muted);
}
.card-q-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 21cqw;
  color: var(--card-accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.card-q-body {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 8cqw;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--card-fg);
  margin-top: 4cqw;
}
.card-quiz--choices {
  padding: 10px 9px 9px;
  gap: 8px;
}
.card-quiz--choices .card-q-body {
  margin-top: 0;
  font-size: 8cqw;
  line-height: 1.16;
  font-weight: 650;
}
.card-q-content {
  display: flex;
  flex-direction: column;
  gap: 7cqw;
}
.card-q-choices {
  display: grid;
  gap: 3cqw;
}
.card-q-choice {
  display: grid;
  grid-template-columns: 12cqw minmax(0, 1fr);
  align-items: center;
  gap: 3cqw;
  min-width: 0;
  padding: 3cqw 4cqw 3cqw 3cqw;
  border: 1px solid var(--card-choice-line);
  border-radius: 4cqw;
  background: var(--card-choice-bg);
  color: var(--card-fg);
  font-family: var(--font-sans);
  font-size: 5.7cqw;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.card-q-choice__key {
  display: grid;
  place-items: center;
  width: 12cqw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--card-choice-key-bg);
  color: var(--card-choice-key-fg);
  font-family: var(--font-mono);
  font-size: 5.2cqw;
  font-weight: 600;
}
.card-quiz--choices .card-q-foot {
  font-size: 5cqw;
}
.card-quiz--choices .card-q-foot .pill {
  padding: 2cqw 4cqw;
}
.card-q-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 5.7cqw;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--card-muted);
}
.card-q-foot .pill {
  padding: 2cqw 5cqw;
  border-radius: 999px;
  background: var(--card-pill-bg);
  color: var(--card-pill-fg);
  font-weight: 500;
}

/* --- pictogram cards (icon-only — "your theme here") --- */
.card-picto .card-picto__icon {
  flex: 1;
  display: grid;
  place-items: center;
}
.card-picto .card-picto__icon svg {
  width: 46%;
  height: auto;
  fill: none;
  stroke: var(--card-fg);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

/* --- colour modifiers (muted / neutral palette) --- */
.cc-navy   { --card-bg:#2E3D4D; --card-fg:#fff; --card-muted:rgba(255,255,255,0.55); --card-line:transparent; --card-accent:#fff; --card-pill-bg:#fff; --card-pill-fg:#1C1C1E; }
.cc-sage   { --card-bg:#7E9384; --card-fg:#fff; --card-muted:rgba(255,255,255,0.6);  --card-line:transparent; --card-accent:#fff; --card-pill-bg:#fff; --card-pill-fg:#1C1C1E; }
.cc-taupe  { --card-bg:#B8A88F; --card-fg:#fff; --card-muted:rgba(255,255,255,0.65); --card-line:transparent; --card-accent:#fff; --card-pill-bg:#fff; --card-pill-fg:#1C1C1E; }
.cc-teal   { --card-bg:#234B46; --card-fg:#fff; --card-muted:rgba(255,255,255,0.55); --card-line:transparent; --card-accent:#fff; --card-pill-bg:#fff; --card-pill-fg:#1C1C1E; }
.cc-wine   { --card-bg:#7C5260; --card-fg:#fff; --card-muted:rgba(255,255,255,0.6);  --card-line:transparent; --card-accent:#fff; --card-pill-bg:#fff; --card-pill-fg:#1C1C1E; }
.cc-gold   { --card-bg:var(--signal); --card-fg:#fff; --card-muted:rgba(255,255,255,0.7); --card-line:transparent; --card-accent:#fff; --card-pill-bg:#fff; --card-pill-fg:#1C1C1E; --card-choice-bg:rgba(255,255,255,0.13); --card-choice-line:rgba(255,255,255,0.28); --card-choice-key-bg:#fff; --card-choice-key-fg:#1C1C1E; }
.cc-cream  { --card-bg:#EFEBE0; --card-fg:var(--ink); --card-muted:var(--ink-4); --card-line:#E0DAC9; --card-accent:var(--signal-deep); }

/* --- TOP cards: upright, floating, fully clear of the box --- */
.hero__card-1 { left: -1%;  top: 6%;   width: 19%;             /* TL — sport / navy */
  --card-tf: perspective(1000px) rotateX(6deg) rotateY(16deg)  rotate(-11deg); }
.hero__card-6 { left: 41%;  top: 0%;   width: 18%; z-index: 6; /* TC — corporate / taupe (above the box) */
  --card-tf: perspective(1000px) rotateX(7deg) rotateY(-6deg)  rotate(3deg); }
.hero__card-3 { right: -1%; top: 6%;   width: 19%;             /* TR — RSE / sage */
  --card-tf: perspective(1000px) rotateX(6deg) rotateY(-16deg) rotate(11deg); }

/* --- Answer cards: upright enough to invite play, fanned around the box --- */
.hero__card-2 { left: -4%; bottom: -5%; width: 28%;
  --card-tf: perspective(1000px) rotateX(18deg) rotateY(8deg) rotate(-7deg); }
.hero__card-5 { left: 36%; bottom: -8%; width: 28%; z-index: 5;
  --card-tf: perspective(1000px) rotateX(14deg) rotate(2deg); }
.hero__card-4 { right: -4%; bottom: -5%; width: 28%;
  --card-tf: perspective(1000px) rotateX(18deg) rotateY(-8deg) rotate(7deg); }

@media (max-width: 640px) {
  .hero__card-2 { left: 2%; width: 27%; }
  .hero__card-5 { left: 36.5%; width: 27%; }
  .hero__card-4 { right: 16%; width: 27%;
    --card-tf: perspective(1000px) rotateX(16deg) rotateY(-4deg) rotate(4deg); }
}

/* floating tag pills */
.float-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.12);
  z-index: 4;
}

/* ============ SECTION HEAD ============ */
.sec-head {
  display: grid;
  grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 760px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
}
.sec-head__eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.tone-ink .sec-head__eyebrow { color: rgba(255,255,255,0.6); }
.sec-head--stack {
  grid-template-columns: 1fr;
  gap: 12px;
}
.sec-head--content-only {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.sec-head--content-only .sec-head__sub { margin-top: 24px; }

.sec-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.sec-head--center .sec-head__title { max-width: 22ch; }
.sec-head--center .sec-head__sub { max-width: 56ch; }
.sec-head__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.sec-head__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  border-radius: 4px;
  font-style: normal;
}
.sec-head__title { max-width: 17ch; }
.sec-head__sub { margin-top: 24px; max-width: 50ch; }

/* ============ FEATURE BLOCKS ============ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: all 0.15s ease;
}
.feat:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.feat__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-4);
  text-transform: uppercase;
  font-weight: 500;
}
.feat__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
}
.feat__title em { font-style: normal; color: var(--signal); }
.feat__body { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin: 0; font-weight: 400; }
.feat__visual {
  margin-top: auto;
  height: 100px;
  border-radius: 6px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* ============ VALUE BLOCKS ============ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.value {
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: all 0.15s ease;
}
.value:hover { border-color: var(--ink); }
.value--ink {
  background: var(--bg-ink);
  color: #fff;
  border-color: var(--bg-ink);
}
.value--ink:hover { border-color: var(--bg-ink); }
.value--ink .feat__num { color: rgba(255,255,255,0.5); }
.value--ink .feat__body { color: rgba(255,255,255,0.7); }
.value--signal {
  background: var(--signal);
  color: #fff;
  border-color: var(--signal);
}
.value--signal:hover { border-color: var(--signal-deep); }
.value--signal .feat__body { color: rgba(255,255,255,0.85); }
.value__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.0;
  letter-spacing: 0;
}
.value__title em { font-style: normal; color: var(--signal); }
.value--ink .value__title em { color: var(--signal); }
.value--signal .value__title em { color: var(--ink); }
@media (max-width: 760px) { .value { grid-column: span 12 !important; } }

/* ============ USE CASES ============ */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1100px) { .usecase-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .usecase-grid { grid-template-columns: 1fr; } }
.usecase {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: grid;
  grid-template-rows: auto minmax(44px, max-content) auto 1fr;
  gap: 12px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.usecase:hover {
  border-color: var(--line);
  transform: none;
}
.usecase__icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
}
.usecase__icon em { font-style: normal; }
.usecase:hover .usecase__icon { background: var(--signal); }
.usecase__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
}
.usecase__body { font-size: 13.5px; color: var(--ink-3); line-height: 1.45; margin: 0; }
.usecase__tip {
  align-self: end;
  margin: 0;
  padding-top: 8px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  letter-spacing: 0;
  color: var(--ink-4);
  line-height: 1.45;
}
.usecase__arrow {
  position: absolute;
  top: 22px; right: 20px;
  font-size: 14px;
  color: var(--ink-4);
  transition: none;
}
.usecase:hover .usecase__arrow { color: var(--ink-4); transform: none; }

/* ============ PROCESS ============ */
.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .process { grid-template-columns: 1fr; } }
.process__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.process__step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
  cursor: pointer;
  transition: padding 0.2s ease;
}
.process__step:hover { padding-left: 6px; }
.process__step.active { padding-left: 10px; }
.process__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0;
}
.process__step.active .process__num { color: var(--signal); }
.process__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
}
.process__plus {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}
.process__step.active .process__plus {
  transform: rotate(45deg);
  color: #fff;
  border-color: var(--signal);
  background: var(--signal);
}
.process__detail {
  grid-column: 2 / -1;
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  transition: max-height 0.3s ease, margin 0.3s ease;
}
.process__step.active .process__detail {
  max-height: 200px;
  margin-top: 12px;
}

.process__viz {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-ink-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
}

/* ============ CUSTOMIZATION GRID ============ */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 900px) { .custom-grid { grid-template-columns: repeat(2, 1fr); } }
.module {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.15s ease;
  cursor: pointer;
}
.module:hover { border-color: var(--ink); transform: translateY(-2px); }
.module--active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.module--active:hover { background: var(--signal); border-color: var(--signal); }
.module__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
}
.module--active .module__index { color: var(--signal); }
.module--active:hover .module__index { color: #fff; }
.module__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
}
.module__viz {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 90px;
  line-height: 1;
  pointer-events: none;
}
.module--active .module__viz { color: var(--signal); opacity: 0.25; }

/* ============ INTERNATIONAL ============ */
.intl {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .intl { grid-template-columns: 1fr; } }

.world-map {
  position: relative;
  aspect-ratio: 16/10;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  overflow: hidden;
}

.lang-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.lang-chip {
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  font-weight: 500;
}
.lang-chip__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--ink);
}

/* ============ FOUNDERS ============ */
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 760px) { .founders { grid-template-columns: 1fr; } }
.founder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  transition: all 0.15s ease;
}
.founder:hover { border-color: var(--ink); }
.founder__portrait {
  position: relative;
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.founder__portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}
.founder__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.0;
  margin-bottom: 6px;
}
.founder__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
  font-weight: 500;
}
.founder__bio { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); }
.founders__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 520px) {
  .founders__cta { flex-direction: column; }
  .founders__cta .btn { width: 100%; justify-content: center; }
}

/* ============ ORIGIN / STORY ============ */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }

.story__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
.stat__num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.stat__num em { font-style: normal; color: var(--signal); }
.stat__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
  max-width: 16ch;
  line-height: 1.4;
  font-weight: 500;
}

.story__mockup {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ FINAL CTA ============ */
.final {
  text-align: center;
  padding: clamp(100px, 13vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.final__title { max-width: 18ch; margin: 0 auto 28px; }
.final__sub { margin: 0 auto 40px; }
.final__cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-ink);
  color: rgba(255,255,255,0.65);
  padding: 44px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ EDITIONS STRIP ============ */
.editions-strip {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 760px) { .editions-strip { grid-template-columns: 1fr; } }
.editions-strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.editions-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  color: var(--ink);
  letter-spacing: -0.015em;
}
.editions-list span { display: inline-flex; align-items: center; gap: 20px; }
.divider-dot { display: inline-block; color: var(--ink-5); font-weight: 400; }

/* ============ HERO EYEBROW + PILLS ============ */
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  max-width: 60ch;
}

.hero__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  font-weight: 500;
}

.hero__pills {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 760px) { .hero__pills { grid-template-columns: 1fr; gap: 20px; } }
.hero__pill {
  padding: 4px 32px;
  border-left: 1px solid var(--line);
}
.hero__pill:first-child { padding-left: 0; border-left: 0; }
.hero__pill-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
  margin-bottom: 8px;
}
.hero__pill-v {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

/* ============ STORY ============ */
.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.story__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.story__bullets li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.4;
}
.story__bullets li:last-child { border-bottom: 1px solid var(--line); }
.story__bullets-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--signal);
  font-weight: 500;
}

.story__visual { display: flex; flex-direction: column; gap: 12px; }

/* ============ PLACEHOLDERS ============ */
.placeholder {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.placeholder--wide { aspect-ratio: 16/9; }
.placeholder--square { aspect-ratio: 1/1; }
.placeholder > svg { width: 100%; height: 100%; }
.placeholder__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  font-weight: 500;
  padding: 0 2px;
}
.placeholder__caption-tag {
  color: var(--ink-4);
}

/* ============ CASES (numbered) ============ */
.usecase__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--signal);
  font-weight: 500;
}

/* ============ CATALOGUE ============ */
.catalogue { display: flex; flex-direction: column; gap: 36px; }
.catalogue__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .catalogue__products { grid-template-columns: 1fr; } }

.catalog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.15s ease;
}
.catalog-card:hover { border-color: var(--ink); }
.catalog-card__media {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3.4;
  background: var(--bg-soft);
}
.catalog-card__media svg { width: 100%; height: 100%; display: block; }
.catalog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ CAROUSEL ============ */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 620ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}
.carousel--contain .carousel__slide img {
  object-fit: contain;
  background: #fff;
}
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.15s ease;
  z-index: 3;
}
.carousel__arrow--prev { left: 10px; }
.carousel__arrow--next { right: 10px; }
.carousel:hover .carousel__arrow,
.carousel__arrow:focus-visible { opacity: 1; }
.carousel__arrow:hover { background: #fff; }
.carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3;
}
.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel__dot.active {
  background: #fff;
  transform: scale(1.25);
}
@media (hover: none) {
  .carousel__arrow { opacity: 1; background: rgba(255, 255, 255, 0.85); }
}
.catalog-card__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  padding: 0 8px;
}
.catalog-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 0 8px;
}
.catalog-card__body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  padding: 0 8px 8px;
}

.modules-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.module-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: #fff;
  transition: all 0.15s ease;
  cursor: default;
}
.module-tag:hover { border-color: var(--ink); }
.module-tag__n {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}

/* ============ WHY (numbered rows) ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-2);
}
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
.why-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: baseline;
}
.why-row:nth-child(odd) { border-right: 1px solid var(--line-2); }
@media (max-width: 760px) {
  .why-row:nth-child(odd) { border-right: 0; }
  .why-row { padding-right: 0; }
}
.why-row__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--signal);
  font-weight: 500;
  padding-left: 4px;
}
.why-row__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--ink);
}

/* ============ TESTIMONIAL ============ */
.testimonial__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
  margin: 0 0 32px;
}
.testimonial__avatar img { width: 58px; height: 58px; object-fit: cover; object-position: center top; display: block; }
.testimonial {
  max-width: 860px;
  margin: 4px auto 0;
  text-align: center;
  position: relative;
}
.testimonial__mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 1;
  height: 56px;
  color: var(--signal);
  user-select: none;
  pointer-events: none;
}
.testimonial__quote {
  margin: 0 auto 40px;
  max-width: 680px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.testimonial__avatar {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.testimonial__id { display: flex; flex-direction: column; }
.testimonial__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.testimonial__role {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-3);
  margin-top: 3px;
  max-width: 320px;
}
.testimonial__org {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 760px) {
  .testimonial__author { flex-direction: column; gap: 12px; text-align: center; }
  .testimonial__role { max-width: none; }
}

/* ============ FINAL EYEBROW ============ */
.final__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.final__title { position: relative; z-index: 2; }
.final__sub { position: relative; z-index: 2; }
.final__cta { position: relative; z-index: 2; }

/* ============ HERO META override ============ */
.hero__meta-item {
  border: 1px solid var(--line);
  padding: 7px 11px;
  border-radius: 999px;
}

/* ============ NAV brand mark contemporary ============ */

/* ============ UTILITIES ============ */
.hidden-mobile { }
@media (max-width: 760px) {
  .hidden-mobile { display: none; }
  .nav__links { display: none; }
}

/* ============ STORY COLUMNS ============ */
.story__text { display: flex; flex-direction: column; gap: 32px; }
.story__text .sec-head { margin-bottom: 0; }
.story__text .sec-head__sub { margin-bottom: 0; }
.story__photo { position: relative; }
.story__photo img { width: 100%; border-radius: var(--radius); display: block; }

.story__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.story__stat {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.story__stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 7ch;
}
.story__stat-prefix { color: var(--signal); }
.story__stat-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 7px;
  line-height: 1.4;
  font-weight: 500;
}

/* ============ MODULES GRID ============ */
.modules-grid-wrap {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.modules-grid__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
  font-weight: 500;
}
.modules-grid__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  display: block;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 900px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .modules-grid { grid-template-columns: 1fr; } }

.module-feat {
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s;
}
.module-feat:hover { border-color: var(--ink); }
.module-feat__icon { font-size: 20px; line-height: 1; }
.module-feat__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.module-feat__body {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* ============ PROCESS SINGLE ============ */
.process--single { grid-template-columns: minmax(0, 1fr); }
.process--single .process__viz { display: none; }

/* ============ WHY SHOWCASE ============ */
.why-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: clamp(40px, 6vw, 72px) 0;
}
.why-showcase__stage {
  max-width: 64ch;
  text-align: center;
}
.why-showcase__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.why-showcase__quote {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-4);
  margin: 0;
  overflow-wrap: break-word;
}
.why-showcase__nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.why-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}
.why-dot:hover { border-color: var(--ink); color: var(--ink); }
.why-dot.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.why-dot__num { font-weight: 500; }
.why-dot__bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  opacity: 0.4;
}
.why-dot.active .why-dot__bar { opacity: 1; }
.why-showcase__autoplay { display: none; }

/* ============ SVG ANIMATIONS ============ */
.pv-fade { animation: pvFade 0.4s ease both; }
.pv-rise { animation: pvRise 0.5s ease both; }
.pv-ghost { opacity: 0.12; }
.pv-pulse { animation: pvPulse 2s ease-in-out infinite; }
@keyframes pvFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pvRise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pvPulse { 0%,100% { opacity: 0.12; } 50% { opacity: 0.3; } }

/* ====== MOD ANTOINE V1 — Overrides ====== */

#final .final__title > span > span:nth-of-type(1),
#final .final__title > span > span:nth-of-type(2) {
    font-size: 68px;
}

.catalog-card__media > img {
    margin-bottom: -11px;
}

/* ============================================================
   MOBILE OPTIMIZATION — overrides scoped to ≤760px / ≤520px only.
   Desktop layout (>760px) is intentionally left untouched.
   ============================================================ */
@media (max-width: 760px) {
  /* -- Layout rhythm: tighter gutters & section padding on small screens -- */
  :root { --gutter: 20px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 44px 0; }

  /* -- Nav: keep it compact, give the brand room -- */
  .nav__inner { height: 58px; gap: 12px; }
  .nav__brand { font-size: 16px; }
  .nav__brand img { height: 26px; }

  /* -- Hero: tighten spacing, full-width CTAs for big tap targets -- */
  .hero { padding: 28px 0 44px; }
  .hero__eyebrow { margin-bottom: 22px; padding-bottom: 14px; }
  .hero__title { margin-bottom: 22px; }
  .hero__sub { margin-bottom: 26px; max-width: none; }
  .hero__cta { gap: 10px; margin-bottom: 30px; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; padding: 15px 20px; }
  .hero__meta { font-size: 11px; line-height: 1.5; }

  /* hero "stage" sits below the copy — give it a touch more breathing room */
  .hero__stage { width: 92%; margin: 8px auto 0; }

  /* -- Hero pills: drop the desktop vertical dividers once stacked -- */
  .hero__pills { margin-top: 44px; padding-top: 24px; gap: 0; }
  .hero__pill { padding: 18px 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero__pill:first-child { padding-top: 0; border-top: 0; }

  /* -- Section heads: a hair smaller, no wasted top padding on labels -- */
  .sec-head__eyebrow,
  .sec-head__label { padding-top: 0; }
  .sec-head__sub { margin-top: 16px; }

  /* -- Cards: collapse the desktop min-heights that leave big empty gaps -- */
  .feat,
  .usecase,
  .value { min-height: 0; }
  .feat { padding: 24px 20px; }
  .usecase { padding: 20px 18px; }
  .value { padding: 26px 22px; }
  .module { aspect-ratio: auto; min-height: 132px; }

  /* modules-grid eyebrow rule can crowd the label — let it shrink gracefully */
  .modules-grid__eyebrow { font-size: 10.5px; letter-spacing: 0.03em; }

  /* -- Final CTA: kill the forced 68px (it overflowed badly on phones) and
        hide the decorative floating cards that overlapped the copy -- */
  .final { padding: 72px 0; }
  #final .final__title > span > span:nth-of-type(1),
  #final .final__title > span > span:nth-of-type(2) {
    font-size: clamp(40px, 13vw, 60px);
  }
  #final [aria-hidden="true"] { display: none; }
  .final__sub { max-width: none; }
  .final__cta { flex-direction: column; }
  .final__cta .btn { width: 100%; justify-content: center; padding: 15px 20px; }

  /* -- Footer: brand spans full width, columns flow 2-up, long links wrap -- */
  .footer { padding: 36px 0 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer__top > div:first-child { grid-column: 1 / -1; }
  .footer__col a { overflow-wrap: anywhere; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 380px) {
  /* very narrow phones — shave the heaviest display type one more notch */
  .display { font-size: clamp(30px, 9vw, 36px); }
  #final .final__title > span > span:nth-of-type(1),
  #final .final__title > span > span:nth-of-type(2) {
    font-size: clamp(34px, 12vw, 44px);
  }
}
