/* ==========================================================================
   GoActive Bucharest — design system
   ========================================================================== */

:root {
  --ink: #0A0A10;
  --ink-2: #14141C;
  --ink-3: #1E1E29;
  --paper: #F3F0E7;
  --paper-2: #E8E4D8;
  --blue: #2B36FF;
  --lime: #D4FF3F;
  --coral: #FF5B3A;

  --fg: var(--ink);
  --muted: #5F5E68;
  --muted-d: #A3A2B0;
  --line: rgba(10, 10, 16, .13);
  --line-d: rgba(243, 240, 231, .14);
  --stroke: var(--ink);

  --display: "Archivo", "Arial Black", Impact, system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
  --r: 22px;
  --r-lg: 34px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
[hidden] { display: none !important; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.site-header :focus-visible, .section--ink :focus-visible, .hero :focus-visible,
.profile-hero :focus-visible, .site-footer :focus-visible, .mobile-menu :focus-visible,
.section--blue :focus-visible { outline-color: var(--lime); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 12px; z-index: 300; background: var(--lime); color: var(--ink); padding: 10px 18px; border-radius: 999px; font-weight: 600; text-decoration: none; }
.skip:focus { left: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
.display {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 112%;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}
.h-xxl { font-size: clamp(2.5rem, 9.2vw, 10rem); }
.h-xl  { font-size: clamp(2.3rem, 7vw, 7rem); }
.h-l   { font-size: clamp(2rem, 4.8vw, 4.6rem); }
.h-m   { font-size: clamp(1.6rem, 3vw, 2.6rem); }

.kicker, .label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  margin: 0;
}
.kicker::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 0 5px rgba(212, 255, 63, .16);
}
.section--paper .kicker::before, .section--lime .kicker::before { background: var(--blue); box-shadow: 0 0 0 5px rgba(43, 54, 255, .14); }
.label .n { opacity: .86; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.36rem); line-height: 1.55; max-width: 46ch; margin: 0; }
.muted { color: var(--muted); }
.hl { color: var(--lime); }
.hl-blue { color: var(--blue); }
.hl-coral { color: var(--coral); }
.outline { color: transparent; -webkit-text-stroke: max(1.5px, .022em) var(--stroke); }
.mark {
  background: var(--lime); color: var(--ink); padding: 0 .14em; border-radius: .14em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--lime); --bd: var(--lime); --tx: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  padding: 1.05em 1.65em; border-radius: 999px;
  background: var(--bg); color: var(--tx); border: 2px solid var(--bd);
  font: 600 1rem/1 var(--body); text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform .4s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .4s var(--ease); flex: none; }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn--ink { --bg: var(--ink); --bd: var(--ink); --tx: var(--paper); }
.btn--ink:hover { --tx: var(--lime); }
.btn--blue { --bg: var(--blue); --bd: var(--blue); --tx: #fff; }
.btn--ghost { --bg: transparent; --bd: currentColor; --tx: inherit; }
.btn--ghost:hover { --bg: var(--paper); --bd: var(--paper); --tx: var(--ink); }
.section--paper .btn--ghost:hover, .section--lime .btn--ghost:hover { --bg: var(--ink); --bd: var(--ink); --tx: var(--paper); }
.btn--sm { padding: .78em 1.2em; font-size: .92rem; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h); color: var(--paper);
  background: rgba(10, 10, 16, .7);
  -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--line-d);
  transition: height .35s var(--ease), background .35s;
}
.site-header.is-scrolled { height: 64px; background: rgba(10, 10, 16, .92); }
.header__inner { height: 100%; display: flex; align-items: center; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; color: var(--paper); }
.logo__img { display: block; height: 34px; width: auto; transition: height .35s var(--ease), transform .6s var(--ease); }
.site-header.is-scrolled .logo__img { height: 30px; }
.logo:hover .logo__img { transform: translateY(-1px); }
@media (max-width: 380px) { .logo__img { height: 28px; } }
.logo__mark { width: 40px; height: 40px; flex: none; transition: transform .6s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-12deg) scale(1.05); }
.logo__text { display: flex; flex-direction: column; font-family: var(--display); font-weight: 900; font-stretch: 118%; text-transform: uppercase; font-size: 1.12rem; line-height: 1; letter-spacing: -.01em; }
.logo__sub { font-family: var(--body); font-weight: 500; font-size: .6rem; letter-spacing: .34em; color: var(--muted-d); margin-top: 5px; }

.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav a, .nav__drop-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 15px; border-radius: 999px;
  color: var(--paper); background: none; border: 0; text-decoration: none;
  font: 500 .94rem/1 var(--body); cursor: pointer; transition: background .2s, color .2s;
}
.nav a:hover, .nav__drop-btn:hover { background: rgba(243, 240, 231, .08); }
.nav [aria-current="page"], .nav__drop-btn.is-current { color: var(--lime); }
.nav__drop { position: relative; }
.nav__drop-btn svg { transition: transform .3s var(--ease); }
.nav__drop:hover .nav__drop-btn svg, .nav__drop.is-open .nav__drop-btn svg { transform: rotate(180deg); }
.nav__sub {
  position: absolute; top: calc(100% + 12px); left: 50%; min-width: 270px;
  list-style: none; margin: 0; padding: 8px;
  background: var(--ink-2); border: 1px solid var(--line-d); border-radius: 20px;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, .7);
  opacity: 0; visibility: hidden; transform: translate(-50%, 10px);
  transition: opacity .25s, transform .35s var(--ease), visibility .25s;
}
.nav__sub::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav__drop:hover .nav__sub, .nav__drop.is-open .nav__sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__sub a { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; width: 100%; border-radius: 14px; padding: 13px 16px; }
.nav__sub small { color: var(--muted-d); font-size: .78rem; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--lime); color: var(--ink); position: relative; flex: none;
}
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease), top .35s var(--ease); }
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 26px; }
.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink); color: var(--paper);
  padding: calc(var(--header-h) + 28px) var(--gutter) 36px;
  display: flex; flex-direction: column; overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.menu-open { overflow: hidden; }
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--line-d); }
.mobile-menu > ul > li > a {
  display: block; padding: 18px 0; text-decoration: none;
  font-family: var(--display); font-weight: 900; font-stretch: 112%; text-transform: uppercase;
  font-size: clamp(1.9rem, 8vw, 3rem); line-height: 1; letter-spacing: -.02em;
}
.mobile-menu a[aria-current="page"] { color: var(--lime); }
.mobile-menu__team { padding: 4px 0 20px; display: grid; gap: 6px; }
.mobile-menu__team a { text-decoration: none; color: var(--muted-d); font-size: 1.05rem; }
.mobile-menu__team a[aria-current="page"] { color: var(--lime); }
.mobile-menu .btn { margin-top: 32px; align-self: flex-start; }

@media (max-width: 1000px) {
  .nav, .header__cta { display: none; }
  .burger { display: inline-block; }
}

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(88px, 11vw, 170px) 0; }
.section--tight { padding: clamp(64px, 8vw, 110px) 0; }
.section--paper { background: var(--paper); --fg: var(--ink); color: var(--fg); --stroke: var(--ink); }
.section--paper-2 { background: var(--paper-2); --fg: var(--ink); color: var(--fg); --stroke: var(--ink); }
.section--ink, .hero, .profile-hero, .site-footer {
  background: var(--ink); --fg: var(--paper); color: var(--fg); --stroke: var(--paper);
  --muted: var(--muted-d); --line: var(--line-d);
}
.section--blue { background: var(--blue); --fg: #fff; color: var(--fg); --stroke: #fff; --muted: rgba(255, 255, 255, .86); --line: rgba(255, 255, 255, .22); }
.section--lime { background: var(--lime); --fg: var(--ink); color: var(--fg); --stroke: var(--ink); --muted: rgba(10, 10, 16, .66); --line: rgba(10, 10, 16, .18); }

.sec-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 60px; align-items: end; margin-bottom: clamp(48px, 6vw, 90px); }
.sec-head .label { grid-column: 1 / -1; }
.sec-head .lead { justify-self: end; }
.sec-head .statement { grid-column: 1 / -1; max-width: 26ch; }
.stack > * + * { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; overflow: hidden; isolation: isolate;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 110px)) 0 clamp(36px, 4vw, 56px);
  display: flex; flex-direction: column;
}
.hero::before, .profile-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--line-d) 1px, transparent 1px), linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse at 75% 20%, #000 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 75% 20%, #000 0%, transparent 65%);
  opacity: .55;
}
.orb {
  position: absolute; z-index: -1; pointer-events: none; border-radius: 50%;
  width: min(70vw, 980px); aspect-ratio: 1; right: -18vw; top: -26vw;
  background: radial-gradient(circle at 40% 40%, #5A63FF 0%, var(--blue) 35%, rgba(43, 54, 255, 0) 70%);
  filter: blur(30px); opacity: .6; animation: float 16s ease-in-out infinite alternate;
}
.orb--lime { width: min(34vw, 460px); right: auto; left: -12vw; top: auto; bottom: -16vw; background: radial-gradient(circle, rgba(212, 255, 63, .5), rgba(212, 255, 63, 0) 65%); opacity: .5; animation-duration: 20s; }
@keyframes float { to { transform: translate(-6vw, 5vw) scale(1.08); } }

.hero__inner { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.hero__title { margin: 28px 0 clamp(36px, 4vw, 56px); }
.hero__title .line { display: block; overflow: hidden; padding: .03em 0; margin: -.03em 0; }
.hero__title .line > span { display: inline-block; }
.js .hero__title .line > span { transform: translateY(108%); }
.is-loaded .hero__title .line > span { transform: none; transition: transform 1.1s var(--ease) calc(var(--i, 0) * 110ms + 100ms); }

.hero__bottom { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__meta { margin-top: clamp(48px, 6vw, 84px); border-top: 1px solid var(--line-d); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hero__meta div { padding: 20px 20px 0 0; font-size: .82rem; color: var(--muted-d); }
.hero__meta strong { display: block; margin-top: 4px; color: var(--paper); font-weight: 600; font-size: .98rem; }

.badge { position: relative; width: clamp(130px, 13vw, 184px); aspect-ratio: 1; flex: none; }
.badge__ring { width: 100%; height: 100%; animation: spin 20s linear infinite; }
.badge__ring text { font: 600 14.5px var(--body); letter-spacing: .24em; fill: var(--paper); }
.badge__core { position: absolute; inset: 29%; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; transition: transform .6s var(--ease); }
.badge:hover .badge__core { transform: scale(1.1) rotate(45deg); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Page hero (inner pages) */
.hero--page { min-height: auto; padding-bottom: clamp(64px, 8vw, 120px); }
.hero--page .hero__title { margin-bottom: 36px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__fact { padding: 16px 20px; border: 1px solid var(--line-d); border-radius: 18px; min-width: 150px; background: rgba(243, 240, 231, .03); }
.hero__fact strong { display: block; font-family: var(--display); font-weight: 900; font-stretch: 115%; font-size: 2rem; line-height: 1; color: var(--lime); }
.hero__fact span { font-size: .85rem; color: var(--muted-d); }

/* ---------- Marquee ---------- */
.tilt { overflow: hidden; padding: clamp(18px, 3vw, 36px) 0; margin: calc(clamp(18px, 3vw, 36px) * -1) 0; position: relative; z-index: 2; pointer-events: none; }
.marquee { display: flex; overflow: hidden; background: var(--lime); color: var(--ink); border-block: 2px solid var(--ink); padding: 16px 0; user-select: none; }
.tilt .marquee { transform: rotate(-2deg); width: 110%; margin-left: -5%; }
.marquee--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.marquee__track { display: flex; flex: none; min-width: 100%; animation: marquee 40s linear infinite; }
.marquee__track span {
  display: flex; align-items: center; gap: .55em; padding-right: .55em; white-space: nowrap;
  font-family: var(--display); font-weight: 900; font-stretch: 118%; text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.5rem); line-height: 1; letter-spacing: -.01em;
}
.marquee__track span::after { content: "✦"; font-size: .6em; color: var(--blue); }
.marquee--ink .marquee__track span::after { color: var(--lime); }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------- Mission ---------- */
.statement {
  font-family: var(--display); font-weight: 800; font-stretch: 100%;
  font-size: clamp(1.9rem, 4.4vw, 4.4rem); line-height: 1.02; letter-spacing: -.035em;
  margin: 0; text-wrap: balance; max-width: 22ch;
}
.mission-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 120px); align-items: center; }
.prose p { margin: 0 0 1.25em; font-size: 1.08rem; color: var(--muted); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose .big { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.45; color: var(--fg); font-weight: 500; }

.chair-viz { margin: 0; }
.chair-viz svg { width: 100%; max-width: 540px; height: auto; margin: 0 auto; overflow: visible; }
.cv-ring { fill: none; stroke: var(--line); stroke-width: 1.5; stroke-dasharray: 3 7; }
.cv-table { fill: var(--ink); }
.cv-chair { fill: var(--paper-2); stroke: var(--ink); stroke-width: 2; }
.cv-open { fill: var(--lime); stroke: var(--ink); stroke-width: 2.5; }
.cv-pulse { fill: none; stroke: var(--blue); stroke-width: 2.5; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s var(--ease) infinite; }
.cv-pulse--2 { animation-delay: 1.3s; }
@keyframes pulse { from { transform: scale(1); opacity: .9; } to { transform: scale(2.2); opacity: 0; } }
.cv-title { fill: var(--paper); font-family: var(--display); font-weight: 900; font-stretch: 115%; font-size: 25px; letter-spacing: -.3px; }
.cv-small { fill: var(--lime); font: 600 10.5px var(--body); letter-spacing: 2.4px; }
.cv-you { fill: var(--ink); font: 700 11px var(--body); letter-spacing: 1px; }
.chair-viz figcaption { text-align: center; margin-top: 20px; font-size: .9rem; color: var(--muted); }

/* ---------- Pillars ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.pillar {
  position: relative; display: flex; flex-direction: column; min-height: 460px; overflow: hidden;
  padding: clamp(28px, 3vw, 42px); border-radius: var(--r-lg); background: var(--paper-2); color: var(--ink);
  transition: transform .6s var(--ease), background .4s, color .4s;
}
.pillar__num { font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(4.4rem, 7.6vw, 7.4rem); line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--ink); margin-bottom: auto; transition: -webkit-text-stroke-color .4s; }
.pillar h3 { font-family: var(--display); font-weight: 900; font-stretch: 108%; text-transform: uppercase; font-size: clamp(1.5rem, 2.2vw, 2.05rem); line-height: .96; letter-spacing: -.015em; margin: 56px 0 16px; }
.pillar p { margin: 0; color: var(--muted); transition: color .4s; }
.pillar:hover { transform: translateY(-8px); background: var(--ink); color: var(--paper); }
.pillar:hover .pillar__num { -webkit-text-stroke-color: var(--lime); }
.pillar:hover p { color: var(--muted-d); }
.pillar--blue { background: var(--blue); color: #fff; }
.pillar--blue .pillar__num { -webkit-text-stroke-color: #fff; }
.pillar--blue p { color: rgba(255, 255, 255, .78); }

/* ---------- Barriers list ---------- */
.barriers { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.barriers li { display: grid; grid-template-columns: 64px minmax(0, 1.15fr) minmax(0, 1fr); gap: 24px; align-items: center; padding: clamp(22px, 2.6vw, 34px) 0; border-bottom: 1px solid var(--line); transition: padding .5s var(--ease); }
.barriers .n { font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--muted); }
.barriers h3 { margin: 0; font-family: var(--display); font-weight: 800; font-stretch: 106%; font-size: clamp(1.35rem, 2.9vw, 2.6rem); line-height: 1; letter-spacing: -.025em; transition: color .3s; }
.barriers p { margin: 0; color: var(--muted); }
.barriers li:hover { padding-left: 14px; }
.barriers li:hover h3 { color: var(--lime); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 2px solid currentColor; }
.stat { padding: 28px 24px 0 0; container-type: inline-size; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat__value { display: block; font-family: var(--display); font-weight: 900; font-stretch: 115%; font-size: min(clamp(2.6rem, 5.4vw, 5.4rem), 20cqi); /* scales with its column: the widest value, "€26.2bn", is about 4.7em */ line-height: .9; letter-spacing: -.035em; white-space: nowrap; }
.stat__label { display: block; margin-top: 14px; font-size: .95rem; color: var(--muted); max-width: 24ch; }
.source { margin-top: 36px; font-size: .8rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.step { padding-top: 26px; border-top: 2px solid var(--fg); }
.step__n { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--lime); font-weight: 700; font-size: .9rem; margin-bottom: 30px; }
.step:last-child .step__n { background: var(--lime); color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.step h3 { margin: 0 0 12px; font-family: var(--display); font-weight: 900; font-stretch: 115%; text-transform: uppercase; font-size: clamp(1.8rem, 2.7vw, 2.5rem); line-height: .92; letter-spacing: -.02em; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Team cards & portraits ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.member { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: var(--paper); background: var(--ink-2); border: 1px solid var(--line-d); border-radius: var(--r-lg); transition: transform .6s var(--ease), border-color .3s; }
.member:hover { transform: translateY(-8px); border-color: rgba(212, 255, 63, .55); }
.member__body { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 24px 26px 28px; }
.member__role { font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-d); }
.member__name { margin: 10px 0 0; font-family: var(--display); font-weight: 900; font-stretch: 112%; text-transform: uppercase; font-size: clamp(1.55rem, 2.3vw, 2.15rem); line-height: .92; letter-spacing: -.02em; }
.circle-arrow { flex: none; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--paper); color: var(--ink); transition: background .3s, transform .6s var(--ease); }
.member:hover .circle-arrow { background: var(--lime); transform: rotate(45deg); }

.portrait { --c: var(--blue); --c2: var(--lime); position: relative; aspect-ratio: 4 / 5; overflow: hidden; isolation: isolate; background: var(--c); container-type: inline-size; }
.portrait::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 24px); }
.portrait::after { content: ""; position: absolute; top: 7%; right: 7%; width: 20%; aspect-ratio: 1; border-radius: 50%; background: var(--c2); }
.portrait__initials { position: absolute; left: -.05em; bottom: -.15em; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: 64cqi; line-height: .8; letter-spacing: -.07em; color: var(--c2); transition: transform .9s var(--ease); }
.portrait__tag { position: absolute; left: 7%; top: 7%; font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--c2); }
.portrait img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.member:hover .portrait__initials { transform: translateY(-5%) scale(1.03); }
.portrait--coral { --c: var(--coral); --c2: var(--ink); }
.portrait--lime { --c: var(--lime); --c2: var(--blue); }
.portrait--lime::before { background: repeating-linear-gradient(135deg, rgba(10, 10, 16, .07) 0 2px, transparent 2px 24px); }

/* ---------- Manifesto / CTA ---------- */
.manifesto .display { font-size: clamp(2.6rem, 9vw, 9.6rem); }
.manifesto__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 32px; margin-top: clamp(40px, 5vw, 72px); }
.cta-band { text-align: left; }
.cta-band .display { font-size: clamp(2.4rem, 7.4vw, 7.6rem); max-width: 14ch; }
.cta-band__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 32px; margin-top: 44px; }

/* ---------- Profile pages ---------- */
.profile-hero { position: relative; overflow: hidden; isolation: isolate; padding: calc(var(--header-h) + clamp(40px, 6vw, 90px)) 0 clamp(64px, 8vw, 110px); }
.profile-hero__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .75fr); gap: clamp(36px, 5vw, 80px); align-items: end; }
.profile-hero__grid > div:first-child { container-type: inline-size; }
/* Long surnames (e.g. CONSTANTIN ≈ 7.8em wide) shrink to fit their column. */
.profile-hero .display { font-size: min(clamp(3rem, 10.5vw, 11rem), 12.4cqi); margin: 26px 0 32px; }
.profile-hero .portrait { border-radius: var(--r-lg); }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: var(--muted-d); margin: 0 0 30px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--lime); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tag { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: .86rem; font-weight: 500; text-decoration: none; transition: background .25s, color .25s, border-color .25s; }
a.tag:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fact { padding: clamp(24px, 3vw, 40px) 24px clamp(24px, 3vw, 40px) 0; }
.fact + .fact { padding-left: 24px; border-left: 1.5px solid var(--line); }
.fact { container-type: inline-size; }
.fact__v { display: block; font-family: var(--display); font-weight: 900; font-stretch: 115%; font-size: min(clamp(2.4rem, 4.6vw, 4.4rem), 23cqi); line-height: .9; letter-spacing: -.035em; white-space: nowrap; }
.fact__l { display: block; margin-top: 10px; font-size: .93rem; font-weight: 500; color: var(--muted); max-width: 22ch; }

.split { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.4fr); gap: clamp(32px, 6vw, 100px); }
.split + .split { margin-top: clamp(72px, 9vw, 130px); padding-top: clamp(72px, 9vw, 130px); border-top: 1px solid var(--line); }
.split__aside { position: sticky; top: 110px; align-self: start; }
.split__aside .display { font-size: clamp(2rem, 3.8vw, 3.6rem); margin-top: 18px; }

.timeline { list-style: none; margin: 0; padding: 0; }
.tl { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); }
.tl:first-child { border-top: 2px solid var(--fg); }
.tl__when { font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--muted); padding-top: 6px; }
.tl h3 { margin: 0 0 4px; font-family: var(--display); font-weight: 800; font-stretch: 104%; font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.1; letter-spacing: -.015em; }
.tl .where { margin: 0 0 14px; font-size: .95rem; color: var(--muted); }
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding-left: 24px; margin-bottom: 9px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .78em; width: 11px; height: 2px; background: var(--blue); }
.section--ink .ticks li::before { background: var(--lime); }

.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.proj { display: flex; flex-direction: column; gap: 36px; min-height: 180px; padding: 22px 24px; border-radius: var(--r); background: var(--paper-2); transition: background .3s, color .3s, transform .5s var(--ease); }
.proj:hover { background: var(--ink); color: var(--paper); transform: translateY(-4px); }
.proj__meta { display: flex; justify-content: space-between; gap: 12px; font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.proj h3 { margin: auto 0 0; font-family: var(--display); font-weight: 800; font-stretch: 104%; font-size: 1.32rem; line-height: 1.05; letter-spacing: -.01em; }
.proj--hi { background: var(--lime); }

.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.mini { padding: 22px 24px; border: 1.5px solid var(--line); border-radius: var(--r); }
.mini strong { display: block; font-size: 1.06rem; margin-bottom: 4px; }
.mini span { font-size: .93rem; color: var(--muted); }
.mini .when { display: block; margin-bottom: 14px; font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 10px 17px; border-radius: 999px; background: var(--ink); color: var(--paper); font-size: .93rem; font-weight: 500; }
.chip--line { background: transparent; color: inherit; border: 1.5px solid var(--line); }

.feature-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.feature { padding: clamp(26px, 3vw, 36px); border-radius: var(--r-lg); background: var(--paper-2); }
.feature__icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--ink); color: var(--lime); margin-bottom: 40px; }
.feature h3 { margin: 0 0 10px; font-family: var(--display); font-weight: 900; font-stretch: 108%; text-transform: uppercase; font-size: 1.5rem; line-height: .98; }
.feature p { margin: 0; color: var(--muted); }

.pull { font-family: var(--display); font-weight: 800; font-stretch: 100%; font-size: clamp(1.7rem, 3.4vw, 3.2rem); line-height: 1.04; letter-spacing: -.035em; margin: 0; text-wrap: balance; }

.next { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(56px, 7vw, 100px) 0; text-decoration: none; color: inherit; }
.next .label { color: var(--muted); margin-bottom: 18px; }
.next .display { font-size: clamp(2.3rem, 7vw, 7rem); transition: color .3s; }
.next:hover .display { color: var(--lime); }
.next__arrow { flex: none; display: grid; place-items: center; width: clamp(64px, 8vw, 124px); aspect-ratio: 1; border-radius: 50%; background: var(--lime); color: var(--ink); transition: transform .6s var(--ease); }
.next__arrow svg { width: 38%; height: 38%; }
.next:hover .next__arrow { transform: rotate(45deg); }

/* ---------- Forms ---------- */
.form-layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.6fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
.form-aside { position: sticky; top: 110px; }
.form-aside .display { font-size: clamp(2rem, 3.6vw, 3.4rem); margin: 18px 0 24px; }
.aside-steps { list-style: none; margin: 36px 0 0; padding: 0; counter-reset: s; }
.aside-steps li { counter-increment: s; display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); font-size: .96rem; color: var(--muted); }
.aside-steps li::before { content: "0" counter(s); font-weight: 700; font-size: .82rem; color: var(--blue); padding-top: 2px; }
.aside-steps strong { display: block; color: var(--fg); font-weight: 600; }

.form { display: grid; gap: clamp(48px, 5.5vw, 72px); }
.fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.legend { display: flex; align-items: baseline; gap: 16px; float: left; width: 100%; padding: 0 0 16px; margin: 0 0 30px; border-bottom: 2px solid var(--fg); }
.legend + * { clear: both; }
.legend .n { font-weight: 700; font-size: .84rem; color: var(--blue); }
.legend .t { font-family: var(--display); font-weight: 900; font-stretch: 112%; text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2.25rem); line-height: 1; letter-spacing: -.015em; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 28px; }
.field { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label, .group-label { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.opt { font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--muted); }
.req { color: #B3260B; }
.hint { font-size: .86rem; color: var(--muted); margin: 0; }
.input {
  width: 100%; appearance: none; -webkit-appearance: none;
  font: 500 1.08rem/1.4 var(--body); color: var(--ink);
  background: #fff; border: 1.5px solid rgba(10, 10, 16, .5); border-radius: 14px; padding: 15px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.input::placeholder { color: #6F6E7A; }
.input:hover { border-color: rgba(10, 10, 16, .35); }
.input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(43, 54, 255, .16); }
.input:user-invalid { border-color: var(--coral); }
textarea.input { min-height: 170px; resize: vertical; }
select.input {
  cursor: pointer; padding-right: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='m3 5 4 4 4-4' stroke='%230A0A10' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
}
.field__row { display: flex; justify-content: space-between; gap: 12px; }
.counter { font-size: .8rem; color: var(--muted); white-space: nowrap; }

.group { border: 0; margin: 0; padding: 0; min-width: 0; }
.group + .group, .field + .group, .group + .field { margin-top: 30px; }
.group legend { padding: 0; margin-bottom: 14px; }
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice span {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px;
  background: #fff; border: 1.5px solid rgba(10, 10, 16, .5); font-size: .97rem; font-weight: 500; line-height: 1.2;
  cursor: pointer; user-select: none; transition: background .2s, color .2s, border-color .2s, transform .3s var(--ease);
}
.choice span::before { content: "+"; width: 1em; text-align: center; font-weight: 700; }
.choice span:hover { border-color: var(--ink); }
.choice input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--lime); }
.choice input:checked + span::before { content: "✓"; }
.choice input[type="radio"] + span::before { content: ""; width: 12px; height: 12px; border-radius: 50%; border: 2px solid currentColor; box-sizing: border-box; }
.choice input[type="radio"]:checked + span::before { content: ""; background: var(--lime); border-color: var(--lime); }
.choice input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.choice input:active + span { transform: scale(.97); }
.group-error { display: none; margin: 10px 0 0; font-size: .88rem; font-weight: 500; color: #B3260B; }
.is-invalid .group-error { display: block; }
.is-invalid .choice span { border-color: var(--coral); }

.consent { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--muted); cursor: pointer; }
.consent input { width: 22px; height: 22px; margin: 1px 0 0; flex: none; accent-color: var(--blue); cursor: pointer; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-top: 30px; border-top: 2px solid var(--fg); }
.form__footer .consent { flex: 1 1 320px; }
.form-status { display: none; padding: 18px 22px; border-radius: 16px; font-weight: 500; }
.form-status.is-visible { display: block; }
.form-status--err { background: #FFE2DA; color: #7A1B06; }
.form-status a { color: inherit; font-weight: 700; }

.success { padding: clamp(36px, 5vw, 64px); border-radius: var(--r-lg); background: var(--lime); color: var(--ink); outline: none; }
.success__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; margin-bottom: 36px; }
.success .display { font-size: clamp(2.2rem, 5vw, 4.4rem); margin-bottom: 20px; }
.success p { margin: 0 0 30px; max-width: 50ch; font-size: 1.1rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 2px solid var(--fg); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; cursor: pointer; list-style: none; font-family: var(--display); font-weight: 800; font-stretch: 104%; font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.15; letter-spacing: -.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--lime); font: 400 1.5rem/1 var(--body); transition: transform .4s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: -6px 0 28px; max-width: 64ch; color: var(--muted); }

/* ---------- Contact ---------- */
.channels { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 14px; }
.channel { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 64px; min-height: 320px; overflow: hidden; padding: clamp(26px, 3vw, 40px); border-radius: var(--r-lg); text-decoration: none; transition: transform .6s var(--ease); }
a.channel:hover { transform: translateY(-6px); }
.channel__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.channel__icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: rgba(10, 10, 16, .1); }
.channel__label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; opacity: .9; }
.channel__value { display: block; margin-top: 12px; font-family: var(--display); font-weight: 900; font-stretch: 106%; font-size: clamp(1.4rem, 2.5vw, 2.3rem); line-height: 1; letter-spacing: -.02em; overflow-wrap: anywhere; }
.channel__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.channel--email { background: var(--lime); color: var(--ink); container-type: inline-size; }
.channel--email .channel__value { font-size: min(2.3rem, 6.9cqi); overflow-wrap: normal; white-space: nowrap; }
.channel--ig { background: var(--coral); color: var(--ink); }
.channel .circle-arrow { background: var(--ink); color: var(--paper); }
a.channel:hover .circle-arrow { transform: rotate(45deg); }
.channel.is-pending .circle-arrow { opacity: .35; }

.partner-list { list-style: none; margin: 32px 0 0; padding: 0; }
.partner-list li { display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); font-weight: 500; }
.partner-list li::before { content: "✦"; color: var(--blue); }

/* ---------- Legal pages ---------- */
.updated { display: inline-flex; margin-top: 28px; padding: 9px 16px; border: 1px solid var(--line-d); border-radius: 999px; font-size: .85rem; color: var(--muted-d); }
.legal-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: clamp(56px, 7vw, 100px); }
.legal-card { padding: clamp(24px, 3vw, 34px); border-radius: var(--r-lg); background: var(--paper-2); }
.legal-card h2 { margin: 28px 0 8px; font-family: var(--display); font-weight: 900; font-stretch: 108%; text-transform: uppercase; font-size: 1.4rem; line-height: 1; }
.legal-card p { margin: 0; color: var(--muted); }
.legal-card .feature__icon { margin: 0; }
.legal { display: grid; grid-template-columns: minmax(0, .5fr) minmax(0, 1.5fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.toc { position: sticky; top: 110px; }
.toc ol { list-style: none; margin: 18px 0 0; padding: 0; counter-reset: t; border-top: 2px solid var(--fg); }
.toc li { counter-increment: t; border-bottom: 1px solid var(--line); }
.toc a { display: grid; grid-template-columns: 34px 1fr; padding: 11px 0; text-decoration: none; font-size: .93rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.toc a::before { content: counter(t, decimal-leading-zero); font-size: .78rem; font-weight: 700; color: var(--blue); padding-top: 2px; }
.toc a:hover { color: var(--fg); }
.legal__body { max-width: 78ch; }
.legal__body section { margin-bottom: clamp(48px, 6vw, 72px); scroll-margin-top: 100px; }
.legal__body h2 { display: flex; gap: 16px; align-items: baseline; margin: 0 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--fg); font-family: var(--display); font-weight: 900; font-stretch: 110%; text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1; letter-spacing: -.01em; }
.legal__body h2 .n { font-family: var(--body); font-size: .82rem; font-weight: 700; color: var(--blue); letter-spacing: 0; }
.legal__body h3 { margin: 28px 0 8px; font-size: 1.08rem; font-weight: 700; }
.legal__body p, .legal__body li { color: #3A3942; }
.legal__body p { margin: 0 0 14px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { margin-bottom: 7px; }
.legal__body a { color: var(--blue); font-weight: 600; }
.legal__body strong { color: var(--ink); }
.table-wrap { overflow-x: auto; margin: 18px 0 22px; border: 1px solid var(--line); border-radius: var(--r); }
.legal table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .92rem; background: #fff; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.legal th { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: var(--ink); color: var(--paper); }
.legal tr:last-child td { border-bottom: 0; }
.callout { margin: 18px 0; padding: 20px 24px; border-radius: var(--r); background: var(--lime); color: var(--ink); font-weight: 500; }
.callout p { color: var(--ink); margin: 0; }
.address { padding: 20px 24px; border-left: 3px solid var(--blue); background: #fff; border-radius: 0 var(--r) var(--r) 0; margin: 0 0 16px; font-style: normal; line-height: 1.7; }
@media (max-width: 860px) {
  .legal, .legal-summary { grid-template-columns: minmax(0, 1fr); }
  .toc { position: static; }
}

/* ---------- Footer ---------- */
.site-footer { padding: clamp(72px, 9vw, 120px) 0 28px; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding-bottom: 40px; }
.footer__cta .display { font-size: clamp(2rem, 4vw, 3.6rem); margin-bottom: 28px; }
.site-footer .footer__h { margin: 6px 0 18px; font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-d); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-footer ul a { text-decoration: none; color: var(--paper); overflow-wrap: anywhere; }
.site-footer ul a:hover { color: var(--lime); }
.footer__word { display: block; width: 100%; height: auto; margin: 28px 0 0; user-select: none; pointer-events: none; }
.footer__bottom a { color: inherit; text-underline-offset: 3px; }
.footer__bottom a:hover { color: var(--lime); }
.consent a { color: var(--blue); font-weight: 600; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-d); font-size: .83rem; color: var(--muted-d); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cards-3, .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 20px; }
  .stats, .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3), .fact:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { margin-top: 36px; }
  .fact:nth-child(n+3) { border-top: 1.5px solid var(--line); }
  .channels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__cta { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .sec-head, .mission-grid, .split, .form-layout, .profile-hero__grid, .hero__bottom { grid-template-columns: minmax(0, 1fr); }
  .sec-head .lead { justify-self: start; }
  .split__aside, .form-aside { position: static; }
  .hero__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .barriers li { grid-template-columns: 40px minmax(0, 1fr); gap: 8px 16px; }
  .barriers p { grid-column: 2; }
  .tl { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .grid-2, .feature-cards { grid-template-columns: minmax(0, 1fr); }
  .profile-hero .portrait { max-width: 380px; }
  .badge { justify-self: start; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cards-3, .team-grid, .steps, .channels { grid-template-columns: minmax(0, 1fr); }
  .pillar { min-height: 0; }
  .pillar h3 { margin-top: 40px; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat, .stat + .stat { padding-left: 0; padding-right: 12px; border-left: 0; }
  .stat:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
  .fact, .fact + .fact { padding-left: 0; border-left: 0; }
  .fact:nth-child(even) { padding-left: 16px; border-left: 1.5px solid var(--line); }
  .hero__actions .btn { flex: 1 1 auto; }
  .channel { min-height: 260px; }
  .next__arrow { width: 56px; }
}

/* ---------- Motion control (WCAG 2.2.2 Pause, Stop, Hide) ---------- */
.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation-play-state: paused !important; }
.motion-toggle { padding: 0; border: 0; background: none; font: inherit; color: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.motion-toggle:hover { color: var(--lime); }

/* Optional team photos fade in only once they have actually loaded */
.js .portrait img { opacity: 0; transition: opacity .5s var(--ease); }
.js .portrait img.is-loaded { opacity: 1; }

/* ---------- Failsafe: content never stays hidden if JavaScript does not run ---------- */
@keyframes ga-failsafe-show { to { opacity: 1; transform: none; } }
.js body:not(.is-loaded) .reveal,
.js body:not(.is-loaded) .hero__title .line > span { animation: ga-failsafe-show .6s var(--ease) 2.5s forwards; }

/* ---------- Ideas form: quick path + optional details ---------- */
.quick-note { margin: 22px 0 0; font-size: .95rem; color: var(--muted); }
.form-more { border: 2px solid var(--fg); border-radius: var(--r-lg); background: #fff; }
.form-more > summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; list-style: none; cursor: pointer; font-weight: 700; font-size: 1.08rem; }
.form-more > summary::-webkit-details-marker { display: none; }
.form-more > summary small { display: block; margin-top: 3px; font-weight: 500; font-size: .9rem; color: var(--muted); }
.form-more > summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--lime); font: 400 1.5rem/1 var(--body); transition: transform .4s var(--ease); }
.form-more[open] > summary::after { transform: rotate(45deg); }
.form-more > summary:hover::after { background: var(--blue); color: #fff; }
.form-more__body { display: grid; gap: clamp(40px, 5vw, 60px); padding: 12px 26px 32px; border-top: 1px solid var(--line); }

/* ---------- Links and tap targets ---------- */
.hero__meta a { color: inherit; text-decoration-color: rgba(212, 255, 63, .6); text-underline-offset: 4px; }
.hero__meta a:hover { color: var(--lime); }
.site-footer ul { gap: 2px; }
.site-footer ul a { display: inline-block; padding: 6px 0; }
.motion-toggle { padding: 6px 0; }

/* ---------- Phones ---------- */
@media (max-width: 600px) {
  .badge { display: none; }
  .hero__meta { margin-top: 40px; }
  .outline { -webkit-text-stroke-width: 2px; }
  .form-more > summary { padding: 18px; }
  .form-more__body { padding: 8px 18px 26px; }
}
