/* Hugo Blasco — site styles */
:root {
  --bg: #FAFAF7;
  --bg-2: #F2F2EE;
  --ink: #0A0E1A;
  --ink-2: #2A2F3F;
  --mute: #6B7180;
  --line: #E4E2DA;
  --line-2: #D8D5CB;
  --accent: #1E40FF;
  --accent-ink: #0026D9;
  --accent-tint: #EAF0FF;
  --accent-soft: rgba(30, 64, 255, 0.08);
  --warn: #F59E0B;
  --radius: 4px;
  --maxw: 1280px;
  --sans: "Manrope", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

[data-palette="navy"] {
  --accent: #1E3A8A;
  --accent-ink: #15296B;
  --accent-tint: #E8ECF7;
  --accent-soft: rgba(30, 58, 138, 0.08);
}
[data-palette="forest"] {
  --accent: #15803D;
  --accent-ink: #0F5F2D;
  --accent-tint: #E5F2EB;
  --accent-soft: rgba(21, 128, 61, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ===== TYPE ===== */
.mono { font-family: var(--mono); font-feature-settings: "ss01"; }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }

/* ===== LAYOUT ===== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.sec { max-width: var(--maxw); margin: 0 auto; padding: 120px 32px; border-top: 1px solid var(--line); }
.sec--flat { padding-top: 24px; border-top: none; }
.subpage .sec { padding: 64px 32px; }
.subpage .sec--flat { padding-top: 24px; }
.sec--contact-flat .contact__inner { display: block; }
.sec--contact-flat .contact__cta { margin-top: 0; }
@media (max-width: 768px) {
  .sec { padding: 64px 20px; }
  .wrap { padding: 0 20px; }
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.2s, background 0.2s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brandMark {
  width: 36px; height: 36px; border-radius: 6px;
  background: transparent; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.18s;
}
.nav__brand:hover .nav__brandMark { transform: rotate(-3deg); }
.nav__brandText { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brandName { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.nav__brandRole { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.04em; margin-top: 2px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav__link {
  font-size: 13px; color: var(--ink-2); transition: color 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; margin: 0; border: 0; background: transparent;
  font-family: inherit; font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
}
.nav__link:hover { color: var(--accent); }

/* Dropdown */
.nav__drop { position: relative; display: flex; align-items: center; }
.nav__dropTrigger { cursor: pointer; }
.nav__dropTrigger svg { display: block; margin-top: 1px; }
.nav__drop--open .nav__dropTrigger { color: var(--accent); }
.nav__dropTrigger svg { transition: transform 0.18s; }
.nav__drop--open .nav__dropTrigger svg { transform: rotate(180deg); margin-top: 1px; }
.nav__dropMenu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px -8px rgba(10, 14, 26, 0.18), 0 4px 12px rgba(10, 14, 26, 0.08);
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
  z-index: 60;
}
.nav__dropMenu::before {
  content: ""; position: absolute; top: -6px; left: 50%; margin-left: -6px;
  width: 12px; height: 12px; background: var(--bg);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  transform: rotate(45deg);
}
.nav__drop--open .nav__dropMenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__drop:last-child .nav__dropMenu {
  left: auto; right: 0;
  transform: translateX(0) translateY(-6px);
}
.nav__drop:last-child .nav__dropMenu::before {
  left: auto; right: 28px; margin-left: 0;
}
.nav__drop:last-child.nav__drop--open .nav__dropMenu {
  transform: translateX(0) translateY(0);
}
.nav__dropItem {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 5px;
  transition: background 0.14s;
  position: relative; z-index: 1;
}
.nav__dropItem:hover { background: var(--accent-soft); }
.nav__dropItemTitle { font-size: 13px; font-weight: 600; color: var(--ink); }
.nav__dropItem:hover .nav__dropItemTitle { color: var(--accent); }
.nav__dropItemDesc { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.02em; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.lang {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--mute); padding: 6px 10px; border: 1px solid var(--line);
  border-radius: 999px; display: inline-flex; gap: 4px;
}
.lang__on { color: var(--ink); font-weight: 600; }
.lang__sep { opacity: 0.4; }
@media (max-width: 900px) { .nav__links { display: none; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: -0.005em;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 8px 14px; font-size: 12px; }
.btn--lg { padding: 16px 24px; font-size: 14px; }
.btn--primary { background: var(--accent); color: white; }
.btn--primary:hover { background: var(--accent-ink); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line-2); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }

/* ===== HERO ===== */
.hero { padding: 120px 32px 0; max-width: var(--maxw); margin: 0 auto; }
@media (max-width: 768px) { .hero { padding: 96px 20px 0; } }
.hero__grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px;
  padding-bottom: 64px; align-items: start;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 48px; } }

.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-2); padding: 6px 12px;
  background: var(--accent-soft); border-radius: 999px;
  margin-bottom: 32px;
}
.pulse { position: relative; width: 8px; height: 8px; }
.pulse__dot { position: absolute; inset: 0; background: var(--accent); border-radius: 50%; }
.pulse::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  background: var(--accent); opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero__title {
  font-size: clamp(40px, 6.5vw, 88px);
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.hero__title em {
  font-style: italic; font-family: "Newsreader", "Manrope", serif; font-weight: 500;
  color: var(--accent);
}
.hero__highlight {
  background: var(--accent);
  color: white;
  padding: 0 0.18em;
  border-radius: 6px;
  display: inline-block;
  transform: rotate(-1deg);
  margin: 0 0.05em;
}

.hero__lede {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-2); max-width: 600px; margin: 0 0 36px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__meta { display: flex; gap: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero__metaItem { display: flex; flex-direction: column; gap: 4px; }
.hero__metaK { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--mute); text-transform: uppercase; }
.hero__metaV { font-size: 13px; color: var(--ink); }

.hero__metaItem--live { flex-direction: row; align-items: center; gap: 14px; }
.hero__metaItem--live .hero__metaK { font-size: 11px; }
.hero__metaItem--live .hero__metaV { font-size: 15px; font-weight: 500; }
.hero__metaDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
  animation: heroDotPulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes heroDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Portrait */
.hero__right { position: relative; }
.portrait { position: relative; max-width: 360px; margin-left: auto; margin-top: 152px; }
@media (max-width: 900px) { .portrait { margin-top: 0; } }
.portrait__frame {
  position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line);
}
.portrait__placeholder { width: 100%; height: 100%; display: block; }
.portrait__caption {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  background: rgba(255,255,255,0.92); padding: 6px 10px; border-radius: 4px;
}
.portrait__captionK { color: var(--ink); }
.portrait__captionV { color: var(--mute); }
.portrait__badge {
  position: absolute; top: -16px; left: -24px;
  background: var(--ink); color: var(--bg);
  border-radius: 4px; padding: 12px 14px;
  font-family: var(--mono); min-width: 130px;
  box-shadow: 0 12px 28px rgba(10, 14, 26, 0.18);
  transform: rotate(-3deg);
}
.portrait__badgeTop { display: flex; justify-content: space-between; font-size: 9px; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 6px; }
.portrait__badgeRare { font-weight: 600; }
.portrait__badgeDot { animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }
.portrait__badgeCode { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.portrait__badgeMeta { font-size: 9px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.04em; }

/* ===== CLIENT LOGOS (static) ===== */
.clients {
  max-width: var(--maxw); margin: 24px auto 0; padding: 18px 32px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
}
@media (max-width: 768px) { .clients { grid-template-columns: 1fr; gap: 12px; padding: 18px 20px; } }
.clients__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--mute); padding-left: 4px; text-transform: uppercase;
}
.clients__row {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 28px; flex-wrap: wrap;
}
.clients__sep {
  width: 1px; height: 18px; background: var(--line-2);
}
@media (max-width: 768px) { .clients__sep { display: none; } }
.clients__logo {
  display: inline-flex; align-items: center; padding: 4px 2px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.clients__logo:hover { opacity: 1; }
.clients__logoMark {
  font-weight: 700; letter-spacing: -0.01em; color: var(--ink);
}
.clients__logo--airbus .clients__logoMark {
  font-family: "Newsreader", serif; font-style: italic; font-weight: 600;
  font-size: 20px; letter-spacing: 0.01em;
}
.clients__logo--capgemini .clients__logoMark {
  font-family: var(--sans); font-weight: 800; letter-spacing: -0.025em;
  font-size: 18px;
}
.clients__logo--alten .clients__logoMark {
  font-family: var(--sans); font-weight: 900; letter-spacing: 0.06em;
  font-size: 17px;
}

/* ===== TIMELINE (certifications) ===== */
.timeline {
  margin-left: 80px; padding: 24px 0 0;
}
@media (max-width: 768px) { .timeline { margin-left: 0; } }
.timeline__rail {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 32px;
  min-height: 360px;
}
@media (max-width: 900px) { .timeline__rail { grid-template-columns: repeat(3, 1fr); row-gap: 48px; } }
@media (max-width: 540px) { .timeline__rail { grid-template-columns: repeat(2, 1fr); } }
.timeline__line {
  position: absolute; top: 50px; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--line), var(--line-2), var(--line));
}
@media (max-width: 900px) { .timeline__line { display: none; } }
.timeline__col {
  position: relative; display: flex; flex-direction: column;
}
.timeline__year {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.04em;
  margin-bottom: 12px; padding-left: 2px;
}
.timeline__tick {
  position: absolute; top: 46px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line-2);
  z-index: 2;
}
.timeline__col:has(.tcert) .timeline__tick {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.timeline__items {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 10px;
}
.timeline__empty { min-height: 80px; }
.tcert {
  position: relative;
  border: 1px solid var(--line); border-radius: 6px;
  padding: 12px 14px; background: var(--bg);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tcert:hover { transform: translateY(-2px); border-color: var(--accent); }
.tcert__connector {
  position: absolute; top: -16px; left: 4px;
  width: 1px; height: 16px; background: var(--line-2);
}
.timeline__items .tcert + .tcert .tcert__connector { display: none; }
.tcert--featured .tcert__connector { background: var(--line-2); width: 1px; }
.tcert--featured {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(10, 14, 26, 0.18);
  position: relative;
}
.tcert--featured::before {
  content: ""; position: absolute; top: 0; right: 0; width: 60px; height: 60px;
  background: radial-gradient(circle at top right, var(--accent), transparent 70%);
  opacity: 0.6; border-top-right-radius: 6px;
  pointer-events: none;
}
.tcert__head { display: flex; justify-content: space-between; align-items: center; gap: 6px; margin-bottom: 4px; }
.tcert__code {
  font-family: var(--mono); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  position: relative; z-index: 1;
}
.tcert--featured .tcert__code { color: var(--accent); }
.tcert__star { color: var(--accent); font-size: 12px; position: relative; z-index: 1; }
.tcert__label {
  font-size: 11px; line-height: 1.4; color: var(--ink-2);
  position: relative; z-index: 1;
}
.tcert--featured .tcert__label { color: rgba(255,255,255,0.75); }

/* ===== SECTION HEAD ===== */
.sec__head { display: grid; grid-template-columns: 80px 1fr; gap: 32px; margin-bottom: 64px; }
@media (max-width: 768px) { .sec__head { grid-template-columns: 60px 1fr; gap: 16px; margin-bottom: 40px; } }
.sec__num { font-family: var(--mono); font-size: 11px; color: var(--mute); padding-top: 12px; letter-spacing: 0.06em; }
.sec__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}
.sec__eyebrow svg { display: block; flex-shrink: 0; }
/* Optical correction: "EXPÉRIENCES" reads 1px high because of the É accent
   extending above the cap line. Nudge the text down to re-align. */
#experience .sec__eyebrowText {
  transform: translateY(1px);
  display: inline-block;
}
.sec__title { font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.03em; max-width: 880px; }
.sec__lede { color: var(--ink-2); font-size: 17px; max-width: 640px; margin: 20px 0 0; }

/* ===== METRICS ===== */
.metrics { background: var(--ink); color: var(--bg); }
.metrics__inner { max-width: var(--maxw); margin: 0 auto; padding: 80px 32px; }
.metrics__title {
  font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.02em;
  margin-bottom: 48px; max-width: 600px;
  font-weight: 500;
}
.metrics__title::after {
  content: ""; display: block; width: 32px; height: 2px; background: var(--accent); margin-top: 20px;
}
.metrics__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 768px) { .metrics__grid { grid-template-columns: repeat(2, 1fr); } }
.metric {
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.metric:last-child { border-right: 0; }
@media (max-width: 768px) {
  .metric:nth-child(2n) { border-right: 0; }
  .metric { border-bottom: 1px solid rgba(255,255,255,0.12); }
}
.metric__num {
  font-size: 64px; line-height: 1; font-weight: 500; letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px;
}
.metric__suf { font-family: var(--mono); font-size: 14px; color: var(--mute); font-weight: 400; letter-spacing: 0.02em; }
.metric__rule { width: 24px; height: 1px; background: var(--accent); margin-bottom: 12px; }
.metric__label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; max-width: 220px; }

/* ===== ABOUT ===== */
.about__body { display: grid; grid-template-columns: 80px 1fr 320px; gap: 48px; }
@media (max-width: 900px) { .about__body { grid-template-columns: 1fr; gap: 32px; } }
.about__col { grid-column: 2; }
.about__p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin: 0 0 18px; max-width: 620px; }
.about__side { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 900px) { .about__col, .about__side { grid-column: auto; } }

.card { border: 1px solid var(--line); border-radius: 6px; padding: 18px; background: var(--bg); }
.card__k { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.08em; margin-bottom: 12px; text-transform: uppercase; }
.card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.card__list strong { font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em;
  padding: 5px 10px; border: 1px solid var(--line-2); border-radius: 4px;
  background: var(--bg);
}
.chip--mute { color: var(--mute); }
.chip--sm { font-size: 10px; padding: 4px 8px; }

/* ===== SERVICES ===== */
.services__grid { display: grid; grid-template-columns: 80px repeat(3, 1fr); gap: 24px; }
.sec--flat .services__grid { grid-template-columns: repeat(3, 1fr); }
.sec--flat .svc:first-child { grid-column: auto; }
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } .sec--flat .services__grid { grid-template-columns: 1fr; } }
.svc {
  grid-column: span 1;
  border: 1px solid var(--line); border-radius: 6px; padding: 28px;
  background: var(--bg); display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.svc:first-child { grid-column: 2 / span 1; }
@media (max-width: 900px) { .svc:first-child { grid-column: auto; } }
.svc:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc__top { display: flex; justify-content: space-between; align-items: center; }
.svc__n { font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: 0.06em; }
.svc__arrow { color: var(--ink); transition: color 0.2s; }
.svc:hover .svc__arrow { color: var(--accent); }
.svc__title { font-size: 22px; font-weight: 600; }
.svc__desc { font-size: 14px; line-height: 1.6; color: var(--ink-2); flex: 1; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 5px; padding-top: 12px; border-top: 1px solid var(--line); }

/* ===== APPROACH ===== */
.approach__grid {
  display: grid; grid-template-columns: 80px 1fr; gap: 0;
}
.approach__item {
  grid-column: 2; display: grid; grid-template-columns: 200px 1fr;
  gap: 32px; padding: 28px 0; border-top: 1px solid var(--line);
}
.approach__item:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 768px) {
  .approach__grid { grid-template-columns: 1fr; }
  .approach__item { grid-column: auto; grid-template-columns: 1fr; gap: 8px; }
}
.approach__k { font-family: var(--mono); font-size: 12px; color: var(--ink); letter-spacing: 0.04em; }
.approach__v { font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 600px; }

/* ===== EXPERIENCE ===== */
.exp__list { display: flex; flex-direction: column; gap: 0; padding-left: 80px; }
@media (max-width: 768px) { .exp__list { padding-left: 0; } }
.exp { display: grid; grid-template-columns: 32px 1fr; gap: 24px; padding: 36px 0; border-top: 1px solid var(--line); }
.exp:last-child { border-bottom: 1px solid var(--line); }
.exp__rail { display: flex; flex-direction: column; align-items: center; padding-top: 6px; }
.exp__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 0 4px var(--accent-soft); }
.exp__line { width: 1px; flex: 1; background: var(--line-2); margin-top: 12px; }
.exp__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.exp__period { font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: 0.04em; }
.exp__framework { font-family: var(--mono); font-size: 11px; color: var(--accent); padding: 3px 8px; background: var(--accent-soft); border-radius: 3px; }
.exp__client { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.exp__role { font-size: 14px; color: var(--ink-2); margin-top: 4px; }
.exp__summary { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 16px 0; max-width: 720px; }
.exp__highlights { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
@media (max-width: 768px) { .exp__highlights { grid-template-columns: 1fr; } }
.exp__highlights li { font-size: 13px; color: var(--ink-2); display: flex; gap: 10px; align-items: start; line-height: 1.5; }
.exp__check { color: var(--accent); flex-shrink: 0; padding-top: 4px; }

/* ===== CERTIFICATIONS CALLOUT ===== */
.certs__callout {
  margin-left: 80px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  padding: 24px 28px; background: var(--ink); color: var(--bg);
  border-radius: 8px; margin-bottom: 32px;
}
@media (max-width: 768px) { .certs__callout { margin-left: 0; grid-template-columns: 1fr; gap: 16px; } }
.certs__calloutBadge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  padding: 8px 14px; background: var(--accent); border-radius: 4px;
}
.certs__calloutMark { font-size: 16px; }
.certs__calloutText { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.85); margin: 0; }
.certs__verify { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--bg); display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
.certs__verify:hover { color: var(--accent); }

.certs__grid { display: grid; grid-template-columns: 80px repeat(3, 1fr); gap: 12px; }
@media (max-width: 768px) { .certs__grid { grid-template-columns: 1fr 1fr; } }
.cert {
  grid-column: span 1;
  border: 1px solid var(--line); border-radius: 6px; padding: 20px;
  background: var(--bg); display: flex; flex-direction: column; gap: 8px;
  min-height: 120px;
}
.cert:first-child { grid-column: 2 / span 1; }
@media (max-width: 768px) { .cert:first-child { grid-column: auto; } }
.cert--featured { background: var(--ink); color: var(--bg); border-color: var(--ink); position: relative; overflow: hidden; }
.cert--featured::before {
  content: ""; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--accent), transparent 70%); opacity: 0.5;
}
.cert__head { display: flex; justify-content: space-between; align-items: start; }
.cert__code { font-family: var(--mono); font-size: 18px; font-weight: 600; letter-spacing: 0.02em; }
.cert--featured .cert__code { color: var(--accent); }
.cert__star { color: var(--accent); font-size: 14px; }
.cert__label { font-size: 13px; line-height: 1.4; color: var(--ink-2); flex: 1; }
.cert--featured .cert__label { color: rgba(255,255,255,0.75); }
.cert__year { font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: 0.04em; }
.cert--featured .cert__year { color: rgba(255,255,255,0.5); }

/* ===== AVAILABILITY ===== */
.avail__grid { display: grid; grid-template-columns: 80px repeat(5, 1fr); gap: 0; }
@media (max-width: 900px) { .avail__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); } }
.avail {
  grid-column: span 1; padding: 24px 16px; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.avail:first-child { grid-column: 2 / span 1; }
.avail:last-child { border-right: 1px solid var(--line); }
@media (max-width: 900px) { .avail:first-child, .avail { grid-column: auto; border: 0; background: var(--bg); } }
.avail__num { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.06em; }
.avail__z { font-size: 16px; font-weight: 600; }
.avail__note { font-size: 12px; color: var(--mute); line-height: 1.4; }

/* ===== CONTACT ===== */
.sec--contact { padding-bottom: 64px; }
.contact__inner { display: grid; grid-template-columns: 80px 1fr; gap: 32px; }
@media (max-width: 768px) { .contact__inner { grid-template-columns: 1fr; gap: 16px; } }
.contact__num { font-family: var(--mono); font-size: 11px; color: var(--mute); padding-top: 12px; letter-spacing: 0.06em; }
.contact__title { font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.03em; margin-bottom: 20px; max-width: 880px; }

.contact__avail { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact__availTitle {
  font-family: var(--mono); font-size: 11px; color: var(--mute);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
}
.contact__availGrid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
@media (max-width: 900px) {
  .contact__availGrid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.contact__availItem { display: flex; flex-direction: column; gap: 4px; }
.contact__availZ { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact__availNote { font-size: 13px; color: var(--mute); }
.contact__lede { font-size: 18px; color: var(--ink-2); max-width: 540px; margin-bottom: 36px; }
.contact__cta { margin-bottom: 48px; }
.contact__lines { display: flex; flex-direction: column; max-width: 640px; }
.contact__line {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--line); font-size: 16px;
  transition: padding 0.2s;
}
.contact__line:last-child { border-bottom: 1px solid var(--line); }
.contact__line:hover { padding-left: 8px; color: var(--accent); }
.contact__lineK { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.08em; }
.contact__lineV { font-weight: 500; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__name { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.footer__tag { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.06em; margin-top: 2px; }
.footer__copy { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.04em; }

/* =========================================================
   SUB-PAGES (References, Other projects)
   ========================================================= */

.subpage { padding-top: 88px; }
.subpage__hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px 32px 40px;
}
@media (max-width: 768px) { .subpage__hero { padding: 20px 20px 28px; } }
.subpage__crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--mute); text-transform: uppercase;
  margin-bottom: 24px;
}
.subpage__crumbs a { color: var(--mute); transition: color 0.15s; }
.subpage__crumbs a:hover { color: var(--accent); }
.subpage__crumbs__sep { opacity: 0.4; }
.subpage__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.subpage__title {
  font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em;
  max-width: 880px; font-weight: 600; line-height: 1.05;
}
.subpage__lede {
  color: var(--ink-2); font-size: 17px; max-width: 680px; margin: 24px 0 0;
  line-height: 1.55;
}

/* ===== TRUST CALLOUT ===== */
.trust {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 32px 48px;
}
@media (max-width: 768px) { .trust { padding: 0 20px 32px; } }
.trust__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px;
  align-items: center;
  padding: 22px 26px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-tint);
  border-radius: 8px;
}
@media (max-width: 768px) { .trust__inner { grid-template-columns: 1fr; gap: 14px; } }
.trust__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 600; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 12px; background: white; border: 1px solid var(--accent-tint);
  border-radius: 999px; color: var(--accent);
}
.trust__badgeDot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.trust__text { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.trust__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--accent); white-space: nowrap;
}
.trust__cta:hover { color: var(--accent-ink); }

/* ===== TESTIMONIAL GRID ===== */
.testis {
  max-width: var(--maxw); margin: 0 auto;
  padding: 24px 32px 80px;
}
@media (max-width: 768px) { .testis { padding: 8px 20px 56px; } }
.testis__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1000px) { .testis__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .testis__grid { grid-template-columns: 1fr; } }
.testi {
  position: relative;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.18s, transform 0.18s;
}
.testi:hover { border-color: var(--line-2); transform: translateY(-2px); }
.testi--placeholder { background: var(--bg-2); }
.testi--placeholder::before {
  content: ""; position: absolute; inset: 0; border-radius: 8px;
  background: repeating-linear-gradient(135deg, transparent 0 8px, rgba(10,14,26,0.025) 8px 9px);
  pointer-events: none;
}
.testi__quoteMark {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 56px; line-height: 0.6; color: var(--accent);
  height: 24px;
}
.testi__quote {
  font-size: 15px; line-height: 1.6; color: var(--ink-2);
  font-family: "Newsreader", "Manrope", serif; font-style: italic; font-weight: 500;
  text-wrap: pretty; flex: 1;
  margin: 0;
}
.testi--placeholder .testi__quote { color: var(--mute); }
.testi__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.testi__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.testi__authorMeta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.testi__name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testi__role { font-size: 12px; color: var(--mute); line-height: 1.4; }
.testi__source {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em;
  color: var(--mute); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.testi__sourceDot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.refs__placeholder {
  margin-top: 40px;
  padding: 28px;
  border: 1px dashed var(--line-2);
  border-radius: 8px;
  text-align: center;
  background: var(--bg-2);
}
.refs__placeholderTitle {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink); text-transform: uppercase; margin-bottom: 8px;
}
.refs__placeholderBody { font-size: 14px; color: var(--mute); max-width: 560px; margin: 0 auto; line-height: 1.55; }

/* ===== PROJECTS PAGE ===== */
.projects {
  max-width: var(--maxw); margin: 0 auto;
  padding: 24px 32px 96px;
}
@media (max-width: 768px) { .projects { padding: 8px 20px 64px; } }
.projects__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.projects__count {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--mute);
}
.projects__count strong { color: var(--ink); font-weight: 600; }

.projects__list {
  display: flex; flex-direction: column; gap: 28px;
}
.proj {
  position: relative;
  display: grid; grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s;
}
.proj:hover { border-color: var(--line-2); }
@media (max-width: 900px) { .proj { grid-template-columns: 1fr; gap: 28px; padding: 24px; } }
.proj--coming { background: var(--bg-2); }
.proj--coming .proj__device,
.proj--coming .proj__title,
.proj--coming .proj__tagline,
.proj--coming .proj__desc {
  filter: grayscale(0.7) opacity(0.78);
}

.proj__visual {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent-tint) 0%, var(--bg-2) 100%);
  aspect-ratio: 4/5;
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}
.proj--echos .proj__visual {
  background: linear-gradient(180deg, oklch(0.92 0.06 280) 0%, oklch(0.86 0.04 280) 100%);
}

.proj__device {
  width: 64%; aspect-ratio: 9/19;
  background: #0A0E1A;
  border-radius: 28px;
  padding: 6px;
  box-shadow: 0 24px 48px -12px rgba(10,14,26,0.35), 0 0 0 1px rgba(10,14,26,0.4);
  position: relative;
}
.proj__device::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 14px; background: #0A0E1A; border-radius: 999px; z-index: 2;
}
.proj__screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 28px 14px 14px;
}

/* DietScript mock screen */
.proj__ds {
  --ds-accent: #1E40FF;
  background: linear-gradient(180deg, #FAFAF7 0%, #F2F2EE 100%);
}
.proj__dsHeader {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 8px; color: var(--mute);
  margin-bottom: 14px;
}
.proj__dsGreet { font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.1; }
.proj__dsTagline { font-size: 7px; color: var(--mute); margin-bottom: 12px; }
.proj__dsRing {
  width: 72%; aspect-ratio: 1; margin: 0 auto 12px;
  border-radius: 50%;
  background: conic-gradient(var(--ds-accent) 0deg 230deg, #E4E2DA 230deg 360deg);
  display: grid; place-items: center;
  position: relative;
}
.proj__dsRing::before {
  content: ""; position: absolute; inset: 8px; background: var(--bg); border-radius: 50%;
}
.proj__dsRingNum {
  position: relative; z-index: 1;
  font-size: 16px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proj__dsRingLabel {
  position: absolute; bottom: 22%; left: 0; right: 0; text-align: center;
  font-family: var(--mono); font-size: 6px; color: var(--mute); letter-spacing: 0.08em;
  z-index: 1;
}
.proj__dsCards { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.proj__dsCard {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 7px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 4px;
}
.proj__dsCardK { font-size: 7px; color: var(--ink); font-weight: 600; }
.proj__dsCardV { font-family: var(--mono); font-size: 7px; color: var(--ds-accent); font-weight: 600; }

/* Echos mock screen */
.proj__echos {
  background: radial-gradient(ellipse at top, oklch(0.32 0.14 280) 0%, oklch(0.16 0.08 280) 70%);
  color: white;
}
.proj__echosLogo {
  font-family: "Newsreader", serif; font-style: italic; font-weight: 600;
  font-size: 12px; text-align: center; letter-spacing: 0.02em;
  color: white; margin-top: 8px;
}
.proj__echosSub {
  font-family: var(--mono); font-size: 6px; text-align: center;
  color: oklch(0.85 0.08 60); letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 2px; margin-bottom: 14px;
}
.proj__echosOrb {
  width: 64%; aspect-ratio: 1; margin: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, oklch(0.78 0.16 60) 0%, oklch(0.55 0.18 30) 35%, oklch(0.25 0.12 280) 70%, transparent 100%);
  filter: blur(0.4px);
  box-shadow: 0 0 30px oklch(0.55 0.18 30 / 0.5);
}
.proj__echosBar {
  margin-top: auto; display: flex; justify-content: space-around;
  padding: 6px 0; border-top: 1px solid rgba(255,255,255,0.12);
}
.proj__echosBar span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }

.proj__comingTag {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: rgba(255,255,255,0.95);
  padding: 6px 10px; border-radius: 999px; font-weight: 600;
  z-index: 2;
}
.proj__comingTag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--warn);
  animation: pulse 1.6s ease-out infinite;
}

.proj__body { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.proj__head { display: flex; justify-content: space-between; align-items: start; gap: 16px; flex-wrap: wrap; }
.proj__headLeft { display: flex; flex-direction: column; gap: 6px; }
.proj__name {
  font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--ink);
}
.proj__tagline { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.proj__statusPill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 999px;
  font-weight: 600; text-transform: uppercase;
  white-space: nowrap;
}
.proj__statusPill--live {
  background: oklch(0.95 0.04 145); color: oklch(0.45 0.16 145);
  border: 1px solid oklch(0.85 0.06 145);
}
.proj__statusPill--coming {
  background: oklch(0.96 0.04 60); color: oklch(0.50 0.14 60);
  border: 1px solid oklch(0.85 0.07 60);
}
.proj__statusDot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.proj__statusPill--live .proj__statusDot { animation: heroDotPulse 2.2s ease-out infinite; }

.proj__desc { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }

.proj__meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px;
  padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.proj__metaItem { display: flex; flex-direction: column; gap: 4px; }
.proj__metaK { font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; }
.proj__metaV { font-size: 13px; color: var(--ink); }

.proj__stack { display: flex; flex-wrap: wrap; gap: 6px; }

.proj__comingNote {
  display: flex; gap: 14px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-left: 3px solid var(--warn);
  border-radius: 6px;
}
.proj__comingNoteIcon {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--warn); letter-spacing: 0.04em;
  flex-shrink: 0;
}
.proj__comingNoteText { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin: 0; }

.proj__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.proj__cta .btn--ghost.is-disabled {
  pointer-events: none; opacity: 0.5;
}

/* ===== MOBILE MENU ===== */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav__burger:hover { background: var(--bg-2); }
.nav__burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.22s, opacity 0.15s;
  transform-origin: center;
}
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__actions { margin-left: auto; gap: 8px; }
  .nav__inner { padding: 14px 16px; gap: 12px; }
  .nav__actions .btn--primary { display: none; }
}

.nav__overlay {
  position: fixed; inset: 0; z-index: 48;
  background: rgba(10, 14, 26, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav__overlay--open { opacity: 1; visibility: visible; }

.nav__mobile {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 92vw);
  z-index: 49;
  background: var(--bg);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(10, 14, 26, 0.12);
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__mobile--open { transform: translateX(0); }

.nav__mobileHead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
  flex-shrink: 0;
}
.nav__mobileClose {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; color: var(--mute);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.nav__mobileClose:hover { background: var(--bg-2); color: var(--ink); }

.nav__mobileLinks { display: flex; flex-direction: column; }

.nav__mobileLink {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 600; color: var(--ink);
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.nav__mobileLink:hover { color: var(--accent); }

.nav__mobileGroup { border-bottom: 1px solid var(--line); }
.nav__mobileGroupTitle {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
  padding: 12px 20px 12px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.nav__mobileGroupTitle::before {
  content: "";
  display: block; width: 3px; height: 14px;
  background: var(--accent); border-radius: 2px;
  flex-shrink: 0;
}
.nav__mobileSubLink {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 400; color: var(--ink-2);
  padding: 9px 20px 9px 36px;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}
.nav__mobileSubLink:hover { color: var(--accent); }

.nav__mobileFooter {
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.nav__mobileLang {
  display: flex;
  border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; align-self: flex-start;
}
.nav__mobileLangBtn {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
  color: var(--mute);
  cursor: pointer;
}
.nav__mobileLangBtn--active {
  background: var(--ink); color: var(--bg); font-weight: 600;
}

/* ===== PETITS ECRANS (< 600px) ===== */
@media (max-width: 600px) {
  .portrait__badge { left: 0; }
  .hero__lede { font-size: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .contact__line { grid-template-columns: 48px 1fr auto; gap: 12px; font-size: 14px; }
  .metric__num { font-size: 48px; }
}
