@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500;600&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

/* =============================================================
   shōrAI Design System — Colors & Type Tokens
   ============================================================= */

/* ---------- Fonts ---------- */
/* Wordmark substitute: Sora (geometric sans, similar weight & joined-curve feel to the custom shōrAI lockup) */
/* Body / UI: DM Sans (humanist, French-diacritic ready) */
/* Mono: JetBrains Mono */
/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* cyrillic-ext */

/* cyrillic */

/* greek */

/* vietnamese */

/* latin-ext */

/* latin */

/* cyrillic-ext */

/* cyrillic */

/* greek */

/* vietnamese */

/* latin-ext */

/* latin */

/* cyrillic-ext */

/* cyrillic */

/* greek */

/* vietnamese */

/* latin-ext */

/* latin */

























































































































/* cyrillic */

/* vietnamese */

/* latin-ext */

/* latin */

























































































































/* cyrillic */

/* vietnamese */

/* latin-ext */

/* latin */

























































































































/* cyrillic */

/* vietnamese */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */

/* latin-ext */

/* latin */



:root {
  /* ============================================================
     COLOR — Brand
     ============================================================ */

  /* Deep ultramarine — the "shōrAI" wordmark blue.
     Used for primary surfaces, headings on light, contrast on warm imagery. */
  --brand-blue-50:  #EEF1FF;
  --brand-blue-100: #D7DEFF;
  --brand-blue-200: #A8B5FF;
  --brand-blue-300: #6F84FA;
  --brand-blue-400: #3D55F0;
  --brand-blue-500: #1B36E5;   /* core wordmark blue */
  --brand-blue-600: #0F23C9;
  --brand-blue-700: #0A1A9E;
  --brand-blue-800: #08146F;
  --brand-blue-900: #050D45;
  --brand-blue-950: #02062A;

  /* Sunset orange — the mark gradient.
     Warm, optimistic, productive. Use sparingly on light surfaces. */
  --brand-orange-50:  #FFF3EC;
  --brand-orange-100: #FFE0CC;
  --brand-orange-200: #FFC299;
  --brand-orange-300: #FFA065;
  --brand-orange-400: #FF7F33;
  --brand-orange-500: #F25A14;   /* the "core" orange */
  --brand-orange-600: #D9430A;
  --brand-orange-700: #B23206;
  --brand-orange-800: #7E2204;
  --brand-orange-900: #4B1402;

  /* Solar gold — the lighter end of the logo gradient */
  --brand-gold-300: #FFD089;
  --brand-gold-400: #FFB44A;
  --brand-gold-500: #FF9A1E;
  --brand-gold-600: #E2810A;

  /* Signature gradient — direct rip of the logomark */
  --brand-gradient: linear-gradient(135deg, #E94B1F 0%, #F25A14 30%, #FF8A1F 60%, #FFB44A 100%);
  --brand-gradient-soft: linear-gradient(135deg, #F25A14 0%, #FFB44A 100%);

  /* Twilight gradient — sunset over indigo, the backgrounds */
  --brand-twilight: radial-gradient(120% 90% at 85% 20%, #FFB44A 0%, #F25A14 18%, #6A1F8E 45%, #1B36E5 75%, #02062A 100%);

  /* ============================================================
     COLOR — Neutrals  (warm-leaning, never pure grey)
     ============================================================ */
  --ink-0:    #FFFFFF;
  --ink-50:   #FAF8F5;   /* page tint — warm off-white */
  --ink-100:  #F2EFE9;
  --ink-200:  #E6E2DA;
  --ink-300:  #CFC9BD;
  --ink-400:  #9A9286;
  --ink-500:  #6E665C;
  --ink-600:  #4D463E;
  --ink-700:  #2E2A24;
  --ink-800:  #181612;
  --ink-900:  #0A0908;   /* near-black, brand "noir" */

  /* ============================================================
     COLOR — Semantic
     ============================================================ */
  --color-bg:           var(--ink-50);
  --color-bg-elevated: #FFFFFF;
  --color-bg-inverse:  var(--brand-blue-950);

  --color-fg:           var(--ink-900);
  --color-fg-muted:    var(--ink-500);
  --color-fg-subtle:   var(--ink-400);
  --color-fg-inverse:  var(--ink-0);

  --color-border:       var(--ink-200);
  --color-border-strong: var(--ink-300);

  --color-accent:       var(--brand-orange-500);
  --color-accent-hover: var(--brand-orange-600);
  --color-link:         var(--brand-blue-600);
  --color-link-hover:   var(--brand-blue-700);

  --color-success: #1F7A4A;
  --color-warning: #C77800;
  --color-danger:  #B23206;

  /* ============================================================
     TYPE — families
     ============================================================ */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;
  --font-jp:      'Noto Serif JP', 'Yu Mincho', serif;  /* used for 将来 callouts */

  /* ============================================================
     TYPE — scale (modular, optimised for marketing site density)
     ============================================================ */
  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 16px;
  --fs-md:   18px;
  --fs-lg:   22px;
  --fs-xl:   28px;
  --fs-2xl:  36px;
  --fs-3xl:  48px;
  --fs-4xl:  64px;
  --fs-5xl:  88px;
  --fs-6xl:  120px;   /* hero "future" moments */

  /* ============================================================
     SPACING — 4px base
     ============================================================ */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* ============================================================
     RADII — geometric, never pill except for tags
     ============================================================ */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-pill: 999px;

  /* ============================================================
     SHADOWS — warm, soft, ambient
     ============================================================ */
  --shadow-xs:  0 1px 2px rgba(11, 18, 71, 0.06);
  --shadow-sm:  0 2px 6px rgba(11, 18, 71, 0.08), 0 1px 2px rgba(11, 18, 71, 0.04);
  --shadow-md:  0 8px 24px rgba(11, 18, 71, 0.10), 0 2px 6px rgba(11, 18, 71, 0.05);
  --shadow-lg:  0 24px 60px rgba(11, 18, 71, 0.14), 0 4px 12px rgba(11, 18, 71, 0.06);
  --shadow-glow-orange: 0 0 0 8px rgba(242, 90, 20, 0.10), 0 12px 40px rgba(242, 90, 20, 0.30);
  --shadow-glow-blue:   0 0 0 8px rgba(27, 54, 229, 0.12), 0 12px 40px rgba(27, 54, 229, 0.28);

  /* ============================================================
     MOTION
     ============================================================ */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 140ms;
  --duration-base: 240ms;
  --duration-slow: 480ms;
}

/* ============================================================
   SEMANTIC TEXT STYLES
   ============================================================ */
.h-hero,
h1.hero {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 9vw, var(--fs-6xl));
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.h1, h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, var(--fs-4xl));
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.h2, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, var(--fs-3xl));
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.h3, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, var(--fs-2xl));
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.h4, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
}

.body-lg, p.lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-md);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.body, p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.6;
}

.body-sm, small {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.caption {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-xs);
  line-height: 1.4;
  color: var(--color-fg-muted);
}

code, .mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.kanji {
  font-family: var(--font-jp);
  font-weight: 500;
}

/* Reset base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}


/* =============================================================
   shōrAI — Site marketing plein écran
   ============================================================= */

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

.site {
  background: var(--ink-50);
  color: var(--ink-900);
  font-family: var(--font-sans);
  min-height: 100vh;
}

:root {
  --gutter: clamp(20px, 5vw, 80px);
  --shell: 1360px;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* === Nav (floating pill, centered) === */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  width: 100%;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(11, 18, 71, 0.06);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(11, 18, 71, 0.08);
  transition: padding 200ms var(--ease-out);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--brand-blue-700);
  text-decoration: none;
}
.nav__brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform 600ms var(--ease-out);
}
.nav__brand:hover img { transform: rotate(45deg); }
.nav__links {
  display: flex;
  gap: 2px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 140ms var(--ease-out), color 140ms;
  cursor: pointer;
  white-space: nowrap;
}
.nav__links a:hover { background: rgba(11, 18, 71, 0.05); }
.nav__cta {
  background: var(--ink-900);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: background 140ms var(--ease-out);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--ink-700); }
.nav__langs {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 4px;
}
.nav__lang {
  color: var(--ink-500);
  text-decoration: none;
  padding: 2px 2px;
  transition: color 140ms var(--ease-out);
}
.nav__lang:hover { color: var(--ink-900); }
.nav__lang--active { color: var(--ink-900); font-weight: 700; }
.nav__lang-sep { color: var(--ink-300); }
.mobile-menu .nav__langs { margin: 18px 0; font-size: 15px; }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  color: var(--ink-900);
  cursor: pointer;
}

/* === Logo accents (used across pages) === */
.mark-spin {
  display: inline-block;
  animation: markSpin 28s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes markSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Section divider with mark */
.mark-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0 20px;
  position: relative;
}
.mark-divider::before,
.mark-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 280px;
  background: linear-gradient(90deg, transparent 0%, rgba(11, 18, 71, 0.12) 50%, transparent 100%);
}
.mark-divider img {
  width: 36px;
  height: 36px;
  opacity: 0.9;
}
.mark-divider--dark::before,
.mark-divider--dark::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
}

/* Mark watermark — large translucent placement */
.mark-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* === Hero — plein écran === */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-image: url("/assets/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: 60px;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 42, 0.0) 25%, rgba(2, 6, 42, 0.55) 100%),
    linear-gradient(120deg, rgba(2, 6, 42, 0.55) 0%, rgba(2, 6, 42, 0.05) 60%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(54px, 9vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  text-wrap: balance;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #FFD089 0%, #FFB44A 30%, #FF7F33 65%, #F25A14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}
.hero__lead {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__primary {
  background: #fff;
  color: var(--ink-900);
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background 140ms, box-shadow 200ms;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
.hero__primary:hover {
  background: var(--ink-50);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.hero__primary:active { transform: scale(0.98); }
.hero__ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 140ms var(--ease-out), border-color 140ms;
  text-decoration: none;
}
.hero__ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255,255,255,0.45); }

/* Right column — stat callout */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: end;
}
.hero__stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 20px 22px;
  color: #fff;
}
.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(135deg, #FFD089 0%, #FF7F33 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}
.hero__kanji {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.55);
  z-index: 2;
}
.hero__kanji span { color: rgba(255,255,255,0.85); font-size: 24px; margin-right: 12px; letter-spacing: 0.1em; }

/* Giant translucent mark behind hero type */
.hero__watermark {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.hero__watermark img { width: 100%; height: 100%; animation: markSpin 60s linear infinite; }
@media (max-width: 980px) {
  .hero__watermark { right: -250px; width: 560px; height: 560px; opacity: 0.10; }
}

/* === Trust strip === */
.trust {
  background: var(--ink-50);
  padding: 56px 0 32px;
  border-bottom: 1px solid rgba(11, 18, 71, 0.06);
}
.trust__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  text-align: center;
  margin: 0 0 28px;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  justify-content: center;
  align-items: center;
}
.trust__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink-400);
  opacity: 0.85;
  white-space: nowrap;
  transition: color 140ms;
}
.trust__logo:hover { color: var(--ink-700); }
.trust__logo small {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 2px;
}

/* === Section base === */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section--dark { background: var(--ink-900); color: #fff; }
.section--blue { background: var(--brand-blue-950); color: #fff; }
.section--alt { background: #fff; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange-600);
  font-weight: 600;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--light { color: var(--brand-gold-400); }
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 920px;
  text-wrap: balance;
}
.section__lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-600);
  max-width: 620px;
  margin: 0 0 64px;
}
.section--dark .section__lead, .section--blue .section__lead { color: rgba(255,255,255,0.7); }

.section__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: 64px;
}
.section__head .section__lead { margin-bottom: 0; }

/* === Methodology === */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.method {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(11, 18, 71, 0.05);
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.method:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.method__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--brand-orange-500);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.method__num .dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--brand-gradient);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}
.method__num .step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.method h3 {
  margin: auto 0 8px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.method p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-600);
}
.method__duration {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(11, 18, 71, 0.10);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
}

/* === Services === */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service {
  background: #fff;
  border-radius: 28px;
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.7fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  border: 1px solid rgba(11, 18, 71, 0.05);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(11, 18, 71, 0.12); }
.service--dark { background: var(--brand-blue-950); color: #fff; border-color: transparent; }
.service--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(242, 90, 20, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.service > * { position: relative; z-index: 1; }
.service__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--brand-orange-500);
  text-transform: uppercase;
}
.service--dark .service__num { color: var(--brand-gold-400); }
.service__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  margin: 10px 0 0;
  line-height: 1.02;
}
.service__desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}
.service--dark .service__desc { color: rgba(255, 255, 255, 0.75); }
.service__price {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-top: 12px;
}
.service--dark .service__price { color: rgba(255,255,255,0.55); }
.service__cta {
  justify-self: end;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.service--dark .service__cta { color: #fff; }
.service__cta .arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--ink-100);
  display: grid;
  place-items: center;
  transition: background 180ms, color 180ms, transform 180ms;
}
.service--dark .service__cta .arrow { background: rgba(255, 255, 255, 0.10); }
.service:hover .service__cta .arrow {
  background: var(--brand-orange-500);
  color: #fff;
  transform: translateX(4px);
}

/* === Case studies (dark, full bleed) === */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.case {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms, border-color 200ms;
}
.case:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.case__sector {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.case__kpi {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 12px 0 0;
}
.case__desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.case__footer {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
}

/* === Quote / kanji editorial moment === */
.quote {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--ink-900);
  color: #fff;
  overflow: hidden;
}
.quote__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/bg-alt1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: blur(2px);
}
.quote__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, transparent 0%, rgba(10, 9, 8, 0.85) 80%);
}
.quote__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.quote__kanji {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(80px, 14vw, 200px);
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}
.quote__romaji {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.quote__text {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}
.quote__attr {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
}

/* === FAQ === */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(11, 18, 71, 0.10);
}
.faq__item {
  border-bottom: 1px solid rgba(11, 18, 71, 0.10);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 28px 4px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink-900);
  transition: color 140ms;
}
.faq__q:hover { color: var(--brand-blue-700); }
.faq__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 200ms, transform 240ms var(--ease-out);
  font-size: 18px;
  color: var(--ink-700);
}
.faq__item.open .faq__icon {
  background: var(--brand-orange-500);
  color: #fff;
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease-out);
}
.faq__item.open .faq__a { max-height: 320px; }
.faq__a-inner {
  padding: 0 60px 28px 4px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-600);
  max-width: 820px;
}

/* === Contact === */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__left h2 {
  margin: 16px 0 0;
}
.contact__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-600);
  margin: 24px 0 32px;
  max-width: 480px;
}
.contact__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-700);
}
.contact__bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-gradient);
  flex-shrink: 0;
}
.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(11,18,71,0.08);
}
.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__detail-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.contact__detail-value {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-900);
}
.form {
  background: #fff;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 28px;
  border: 1px solid rgba(11, 18, 71, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form__field input,
.form__field textarea,
.form__field select {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  color: var(--ink-900);
  resize: vertical;
  transition: all 160ms var(--ease-out);
  width: 100%;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--brand-blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 54, 229, 0.12);
}
.form__submit {
  background: var(--ink-900);
  color: #fff;
  padding: 17px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  margin-top: 8px;
  transition: background 140ms var(--ease-out), transform 100ms, box-shadow 240ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
}
.form__submit:hover { background: var(--ink-700); box-shadow: var(--shadow-md); }
.form__submit:active { transform: scale(0.98); }
.form__legal {
  font-size: 11px;
  color: var(--ink-500);
  text-align: center;
  line-height: 1.5;
  margin: 4px 0 0;
}

/* Submission success */
.form__success {
  padding: 40px 16px;
  text-align: center;
}
.form__success-eyebrow {
  font-size: 12px;
  color: var(--brand-orange-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.form__success h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.form__success p { margin: 0; color: var(--ink-600); font-size: 14px; }

/* === Footer === */
.footer {
  background: var(--brand-blue-950);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(60px, 8vw, 96px) 0 32px;
  position: relative;
  overflow: hidden;
}
.footer__bg {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242, 90, 20, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: #fff;
}
.footer__brand img { width: 48px; height: 48px; object-fit: contain; }
.footer__tag {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  max-width: 320px;
  color: rgba(255,255,255,0.7);
}
.footer__col h5 {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-family: var(--font-sans);
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 140ms;
  cursor: pointer;
}
.footer__col a:hover { color: var(--brand-gold-400); }
.footer__bottom {
  position: relative;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.18em;
}

/* === Reveal on scroll === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { padding: 8px 8px 8px 18px; }
  .nav__burger { display: inline-flex; }

  .hero__content { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero__stat { flex: 1 1 140px; padding: 16px 18px; }
  .hero__stat-value { font-size: 36px; }
  .hero__kanji { display: none; }

  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: 1fr; }

  .service {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service__cta { justify-self: start; }

  .section__head { grid-template-columns: 1fr; gap: 16px; }
  .contact { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__inner > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav { top: 12px; padding: 0 12px; }
  .nav__inner { padding: 6px 6px 6px 14px; }
  .nav__brand { font-size: 18px; gap: 10px; }
  .nav__brand img { width: 40px; height: 40px; }
  .nav__cta { padding: 10px 16px; font-size: 13px; }

  .hero { padding-top: 120px; padding-bottom: 48px; }
  .hero__stats { flex-direction: column; }
  .hero__stat { flex: 1; }

  .method-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { font-size: 11px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 6, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 80px 32px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
}
.mobile-menu a {
  display: block;
  padding: 18px 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu__cta {
  margin-top: 32px;
  background: var(--brand-gradient);
  color: #fff !important;
  border-radius: 999px;
  text-align: center;
  border-bottom: 0 !important;
  padding: 18px 24px !important;
}

/* =============================================================
   ABOUT page — Qui sommes-nous
   ============================================================= */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background: var(--brand-blue-950);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/bg-alt2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.65;
}
.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,42,0.5) 0%, rgba(2,6,42,0.85) 100%);
}
.about-hero__mark {
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 820px;
  height: 820px;
  opacity: 0.22;
  pointer-events: none;
}
.about-hero__mark img { width: 100%; height: 100%; animation: markSpin 80s linear infinite; }
@media (max-width: 980px) {
  .about-hero__mark { right: -300px; width: 600px; height: 600px; opacity: 0.12; }
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.about-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.about-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}
.about-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(46px, 7vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #fff;
  text-wrap: balance;
}
.about-hero h1 .grad {
  background: linear-gradient(135deg, #FFD089 0%, #F25A14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-hero__lead {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

/* Mission / piliers */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar {
  background: #fff;
  border-radius: 28px;
  padding: 40px 32px;
  border: 1px solid rgba(11, 18, 71, 0.06);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.pillar__mark {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  pointer-events: none;
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brand-orange-600);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pillar h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.pillar p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-600);
}
@media (max-width: 980px) { .pillars { grid-template-columns: 1fr; } }

/* Stats banner */
.stats-banner {
  background: var(--ink-50);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid rgba(11, 18, 71, 0.06);
  border-bottom: 1px solid rgba(11, 18, 71, 0.06);
  position: relative;
  overflow: hidden;
}
.stats-banner__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  opacity: 0.04;
  pointer-events: none;
}
.stats-banner__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stats-banner__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stats-banner__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-banner__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-600);
}
@media (max-width: 800px) {
  .stats-banner__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* Values / Approche list */
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value {
  background: #fff;
  border: 1px solid rgba(11, 18, 71, 0.06);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  transition: transform 220ms var(--ease-out), box-shadow 220ms;
}
.value:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.value__mark {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--ink-50);
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 71, 0.06);
}
.value__mark img { width: 32px; height: 32px; }
.value h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.value p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-600);
}
@media (max-width: 800px) { .values { grid-template-columns: 1fr; } }

/* Manifesto editorial moment */
.manifesto {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--ink-900);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.manifesto__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/bg-quote.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.manifesto__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 50% 50%, transparent 0%, rgba(10, 9, 8, 0.92) 80%);
}
.manifesto__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.manifesto__mark {
  display: block;
  margin: 0 auto 36px;
  width: 100px;
  height: 100px;
}
.manifesto__mark img { width: 100%; height: 100%; }
.manifesto h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.manifesto p {
  margin: 24px auto 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}
.manifesto__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.manifesto__signature .kanji {
  font-family: var(--font-jp);
  color: var(--brand-gold-400);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: none;
}

/* CTA banner */
.cta-banner {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink-50);
  position: relative;
}
.cta-banner__card {
  position: relative;
  background: var(--brand-blue-950);
  color: #fff;
  border-radius: 32px;
  padding: clamp(48px, 6vw, 80px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 40px;
}
.cta-banner__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 100% 50%, rgba(242, 90, 20, 0.35) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__mark {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  opacity: 0.22;
  pointer-events: none;
}
.cta-banner__mark img { width: 100%; height: 100%; animation: markSpin 50s linear infinite; }
.cta-banner__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}
.cta-banner__cta {
  position: relative;
  justify-self: end;
  background: var(--brand-gradient);
  color: #fff;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 140ms, box-shadow 200ms;
  border: 0;
  cursor: pointer;
}
.cta-banner__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(242, 90, 20, 0.35); }
@media (max-width: 800px) {
  .cta-banner__card { grid-template-columns: 1fr; text-align: left; }
  .cta-banner__cta { justify-self: start; }
}

/* =============================================================
   PORTFOLIO page
   ============================================================= */

.portfolio-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--ink-50);
  overflow: hidden;
}
.portfolio-hero__mark {
  position: absolute;
  right: -180px;
  top: -120px;
  width: 600px;
  height: 600px;
  opacity: 0.08;
  pointer-events: none;
}
.portfolio-hero__mark img { width: 100%; height: 100%; animation: markSpin 90s linear infinite; }
.portfolio-hero h1 {
  position: relative;
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  text-wrap: balance;
  max-width: 940px;
}
.portfolio-hero h1 .grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portfolio-hero__lead {
  position: relative;
  margin: 24px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 640px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 56px 0 0;
  position: relative;
}
.portfolio-filter {
  background: #fff;
  border: 1px solid rgba(11, 18, 71, 0.08);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  font-family: var(--font-sans);
}
.portfolio-filter:hover { border-color: rgba(11, 18, 71, 0.18); color: var(--ink-900); }
.portfolio-filter.active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project {
  background: #fff;
  border: 1px solid rgba(11, 18, 71, 0.06);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease-out), box-shadow 220ms;
  cursor: pointer;
  position: relative;
}
.project:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(11, 18, 71, 0.10); }
.project__cover {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.project__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,42,0.0) 50%, rgba(2,6,42,0.55) 100%);
}
.project__mark {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 2;
}
.project__mark img { width: 22px; height: 22px; }
.project__sector {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 12px;
  border-radius: 999px;
}
.project__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.project__kpi {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  line-height: 1.2;
}
.project__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-600);
  flex: 1;
}
.project__footer {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 18, 71, 0.06);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* Featured case (deep dive) */
.featured-case {
  background: var(--ink-900);
  color: #fff;
  border-radius: 32px;
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
.featured-case::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(242, 90, 20, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.featured-case__mark {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  opacity: 0.14;
  pointer-events: none;
}
.featured-case__mark img { width: 100%; height: 100%; }
.featured-case > * { position: relative; z-index: 1; }
.featured-case__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold-400);
  margin-bottom: 16px;
}
.featured-case__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.featured-case__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 32px;
}
.featured-case__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.featured-case__kpi {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 22px;
}
.featured-case__kpi-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.featured-case__kpi-label {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
@media (max-width: 800px) {
  .featured-case { grid-template-columns: 1fr; }
}

/* Page-tag (nav active state for non-anchor links) */
.nav__links a.active--page {
  color: var(--ink-900);
  background: rgba(11, 18, 71, 0.06);
}

/* =============================================================
   THÈME CLAIR — fond blanc sur tout le site (meilleure lisibilité)
   Toutes les sections sombres repassent en clair, texte foncé.
   ============================================================= */

.site { background: #fff; }

/* --- Case studies : était sombre --- */
.section--dark,
.section--blue { background: #fff; color: var(--ink-900); }
.section--dark .section__lead,
.section--blue .section__lead { color: var(--ink-600); }

.case {
  background: #fff;
  border: 1px solid rgba(11, 18, 71, 0.08);
}
.case:hover {
  background: #fff;
  border-color: rgba(11, 18, 71, 0.16);
  box-shadow: var(--shadow-md);
}
.case__sector { color: var(--ink-500); }
.case__desc { color: var(--ink-600); }
.case__footer {
  color: var(--ink-500);
  border-top-color: rgba(11, 18, 71, 0.08);
}

/* --- Carte service sombre → claire --- */
.service--dark {
  background: #fff;
  color: var(--ink-900);
  border-color: rgba(11, 18, 71, 0.05);
}
.service--dark::after { display: none; }
.service--dark .service__num { color: var(--brand-orange-500); }
.service--dark .service__desc { color: var(--ink-600); }
.service--dark .service__price { color: var(--ink-500); }
.service--dark .service__cta { color: var(--ink-900); }
.service--dark .service__cta .arrow { background: var(--ink-100); }

/* --- Citation éditoriale : fond clair --- */
.quote {
  background: var(--ink-50);
  color: var(--ink-900);
}
.quote__bg { display: none; }
.quote__text { color: var(--ink-900); }
.quote__romaji { color: var(--ink-500); }
.quote__attr { color: var(--ink-500); }

/* --- Pied de page : clair --- */
.footer {
  background: var(--ink-50);
  color: var(--ink-600);
  border-top: 1px solid rgba(11, 18, 71, 0.08);
}
.footer__bg { opacity: 0.5; }
.footer__brand { color: var(--ink-900); }
.footer__tag { color: var(--ink-600); }
.footer__col h5 { color: var(--ink-500); }
.footer__col a { color: var(--ink-700); }
.footer__col a:hover { color: var(--brand-orange-600); }
.footer__bottom {
  color: var(--ink-500);
  border-top-color: rgba(11, 18, 71, 0.10);
}
.footer__kanji { color: var(--ink-700); }

/* --- Pages internes : moments sombres → clairs --- */
.quote .section__lead { color: var(--ink-600); }
.manifesto {
  background: var(--ink-50);
  color: var(--ink-900);
}
.manifesto__bg { display: none; }
.manifesto h2 { color: var(--ink-900); }
.manifesto p { color: var(--ink-600); }
.manifesto__signature { color: var(--ink-500); }

.featured-case {
  background: #fff;
  color: var(--ink-900);
  border: 1px solid rgba(11, 18, 71, 0.08);
}
.featured-case::before { display: none; }
.featured-case__desc { color: var(--ink-600); }
.featured-case__kpi {
  background: var(--ink-50);
  border-color: rgba(11, 18, 71, 0.08);
}
.featured-case__kpi-label { color: var(--ink-500); }

/* =============================================================
   SUPPLÉMENT MULTI-PAGES — shōrAI
   Extras pour l'arborescence (breadcrumbs, hubs, listes éditoriales)
   dans le langage du design (bleu/orange).
   ============================================================= */

/* Page header (pages internes) */
.page-head { padding: clamp(120px, 16vw, 200px) 0 clamp(40px, 6vw, 72px); position: relative; }
.page-head .eyebrow { color: var(--brand-orange-500); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.page-head .eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brand-orange-500); display: inline-block; }
.page-head__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 7vw, 96px); line-height: 0.96; letter-spacing: -0.04em; margin: 0 0 24px; max-width: 16ch; text-wrap: balance; }
.page-head__lead { font-size: clamp(17px, 1.6vw, 22px); line-height: 1.55; color: var(--ink-600); max-width: 60ch; }
.page-head .kanji-suffix { font-family: var(--font-jp); color: var(--brand-orange-500); font-size: 0.42em; margin-left: 0.4rem; vertical-align: 0.25em; }

/* Breadcrumbs */
.crumbs { padding: 14px 0 0; font-size: 13px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none; margin: 0; padding: 0; }
.crumbs li { list-style: none; color: var(--ink-400); }
.crumbs a { color: var(--ink-400); text-decoration: none; transition: color 160ms var(--ease-out); }
.crumbs a:hover { color: var(--brand-orange-500); }
.crumbs li[aria-current] { color: var(--ink-700); }
.crumbs .sep { color: var(--ink-300); }

/* Bloc-grid (hubs Expertises / Secteurs) */
.block-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 8px; }
.block { display: grid; grid-template-columns: 4rem 1fr auto; gap: 20px 32px; align-items: center; padding: clamp(28px, 4vw, 44px) 0; border-top: 1px solid rgba(11,18,71,0.10); transition: padding-left 240ms var(--ease-out); }
.block:last-child { border-bottom: 1px solid rgba(11,18,71,0.10); }
.block:hover { padding-left: 12px; }
.block__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; color: var(--brand-orange-500); }
.block__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.03em; margin: 0 0 8px; line-height: 1.04; color: var(--ink-900); }
.block__desc { color: var(--ink-600); max-width: 58ch; font-size: 16px; line-height: 1.6; }
.block__aside { font-style: italic; color: var(--ink-400); margin-top: 8px; font-size: 14px; }
.block__link { white-space: nowrap; font-size: 14px; font-weight: 600; color: var(--brand-blue-700); display: inline-flex; align-items: center; gap: 8px; }
.block__link .arrow { transition: transform 240ms var(--ease-out); }
.block:hover .block__link .arrow { transform: translateX(5px); }

/* Liste éditoriale numérotée */
.editorial-list { margin: 8px 0 0; list-style: none; padding: 0; }
.editorial-list > li { display: grid; grid-template-columns: 3.5rem 1fr; gap: 24px; padding: clamp(20px,3vw,30px) 0; border-top: 1px solid rgba(11,18,71,0.10); }
.editorial-list > li:last-child { border-bottom: 1px solid rgba(11,18,71,0.10); }
.editorial-list .num { font-family: var(--font-mono); font-size: 14px; color: var(--brand-orange-500); padding-top: 6px; }
.editorial-list .it-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px,2.4vw,28px); letter-spacing: -0.02em; color: var(--ink-900); margin: 0 0 6px; line-height: 1.1; }
.editorial-list .it-desc { color: var(--ink-600); max-width: 60ch; font-size: 16px; line-height: 1.6; }

/* Liste de features simples */
.feature-list { margin-top: 8px; }
.feature-list > div { padding: clamp(20px,3vw,28px) 0; border-top: 1px solid rgba(11,18,71,0.10); }
.feature-list > div:last-child { border-bottom: 1px solid rgba(11,18,71,0.10); }
.feature-list h4 { font-family: var(--font-display); font-weight: 600; font-size: clamp(19px,2vw,24px); letter-spacing: -0.02em; color: var(--ink-900); margin: 0 0 6px; }
.feature-list p { color: var(--ink-600); max-width: 64ch; font-size: 16px; line-height: 1.6; margin: 0; }

/* Two-column editorial */
.two-col { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); }
.two-col p { color: var(--ink-600); font-size: clamp(16px,1.4vw,19px); line-height: 1.7; }
.two-col p + p { margin-top: 1.1rem; }

/* Proof / CAB block */
.proof { background: var(--ink-50); border: 1px solid rgba(11,18,71,0.06); border-radius: var(--radius-xl); padding: clamp(28px,4vw,48px); margin-top: 40px; }
.proof__grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.proof__cell .lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-orange-500); margin-bottom: 10px; }
.proof__cell p { color: var(--ink-700); font-size: 16px; line-height: 1.65; margin: 0; }

/* Bandeau preuve (Diagnostic Flash) */
.banner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px; justify-content: space-between; background: var(--brand-blue-950); color: #fff; border-radius: var(--radius-xl); padding: clamp(28px,4vw,40px); margin-top: 48px; position: relative; overflow: hidden; }
.banner__text { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; }
.banner__big { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px,4vw,52px); letter-spacing: -0.03em; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.banner__desc { color: rgba(255,255,255,0.78); font-size: 15px; max-width: 42ch; }
.banner a { color: #fff; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.banner a .arrow { transition: transform 240ms var(--ease-out); }
.banner a:hover .arrow { transform: translateX(5px); }

/* Pullquote */
.pullquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px,3.2vw,40px); line-height: 1.2; letter-spacing: -0.02em; color: var(--ink-900); max-width: 22ch; }
.pullquote--center { margin: 0 auto; text-align: center; max-width: 28ch; }

/* Stats (impact, page-level) */
.stats { display: grid; gap: clamp(28px,4vw,44px); margin-top: 8px; }
.stat { display: grid; grid-template-columns: auto 1fr; gap: 16px 32px; align-items: baseline; padding-bottom: 28px; border-bottom: 1px solid rgba(11,18,71,0.10); }
.stat__val { font-family: var(--font-display); font-weight: 600; font-size: clamp(56px,9vw,110px); line-height: 0.9; letter-spacing: -0.04em; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--ink-600); font-size: 16px; max-width: 32ch; align-self: center; }

/* CTA inline links */
.cta-primary { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; color: var(--brand-blue-700); text-decoration: none; }
.cta-primary .arrow { transition: transform 240ms var(--ease-out); }
.cta-primary:hover .arrow { transform: translateX(5px); }
.cta-secondary { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-700); text-decoration: none; }
.cta-secondary:hover { color: var(--brand-orange-500); }
.cta-secondary .arrow { transition: transform 240ms var(--ease-out); }
.cta-secondary:hover .arrow { transform: translateX(4px); }

/* Big button (gradient pill) */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; border-radius: 999px; font-family: var(--font-sans); font-weight: 600; font-size: 16px; background: var(--ink-900); color: #fff; text-decoration: none; border: 0; cursor: pointer; transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -16px rgba(11,18,71,0.4); }
.btn--grad { background: var(--brand-gradient); }
.btn .arrow { transition: transform 240ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Cookie banner */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150; max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid rgba(11,18,71,0.10); border-radius: var(--radius-lg); padding: 22px; box-shadow: 0 20px 50px -20px rgba(11,18,71,0.35); display: none; }
.cookie.show { display: block; }
.cookie p { font-size: 14px; color: var(--ink-600); margin: 0 0 14px; line-height: 1.5; }
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie__row button { font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 999px; border: 0; cursor: pointer; }
.cookie__row .accept { background: var(--ink-900); color: #fff; }
.cookie__row .refuse { background: transparent; border: 1px solid rgba(11,18,71,0.18); color: var(--ink-700); }
.cookie__row a { font-size: 14px; color: var(--ink-400); text-decoration: none; }

/* Contact coords */
.contact__coords { display: grid; gap: 14px; margin-top: 8px; }
.contact__line { font-size: 17px; color: var(--ink-700); display: flex; align-items: center; gap: 12px; }
.contact__line a { color: var(--ink-700); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 160ms; }
.contact__line a:hover { border-color: var(--brand-orange-500); }
.contact__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand-orange-500); flex-shrink: 0; }

.measure { max-width: 720px; }
.muted { color: var(--ink-400); }
.ital { font-style: italic; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

@media (min-width: 760px) {
  .two-col { grid-template-columns: 0.85fr 1.15fr; }
  .two-col--even { grid-template-columns: 1fr 1fr; }
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .block { grid-template-columns: 1fr; gap: 8px; }
  .block__link { justify-self: start; margin-top: 8px; }
  .editorial-list > li { grid-template-columns: 1fr; gap: 6px; }
  .stat { grid-template-columns: 1fr; gap: 6px; }
}
