/* Totalement Geek — responsive arcade editorial system */
@font-face { font-family: "Unbounded"; src: url("../assets/fonts/unbounded-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Unbounded"; src: url("../assets/fonts/unbounded-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Unbounded"; src: url("../assets/fonts/unbounded-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../assets/fonts/inter-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../assets/fonts/inter-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../assets/fonts/inter-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../assets/fonts/inter-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("../assets/fonts/ibm-plex-mono-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
:root {
  --bg: #10140f;
  --bg-deep: #080a08;
  --panel: #181e17;
  --panel-light: #222a20;
  --ink: #fffdf7;
  --ink-muted: #b9c2b4;
  --amber: #35d40b;
  --amber-soft: #23a906;
  --pink: #f1b29f;
  --cyan: #73e64f;
  --line: rgba(240, 255, 235, 0.12);
  --line-strong: rgba(240, 255, 235, 0.24);
  --shadow: 0 28px 80px rgba(2, 8, 1, 0.4);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --max: 1180px;
  --font-display: "Unbounded", "Trebuchet MS", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(53, 212, 11, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 26%, rgba(241, 178, 159, 0.06), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}
::selection { background: var(--amber); color: var(--bg-deep); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

h1, h2, h3 {
  margin: 0 0 0.65em;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { max-width: 16ch; font-size: clamp(2.35rem, 6.3vw, 5.4rem); font-weight: 800; }
h2 { max-width: 22ch; font-size: clamp(1.75rem, 3.6vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 700; }
p { margin: 0 0 1.15em; color: var(--ink-muted); }
strong { color: var(--ink); }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--amber);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75em;
  margin: 0 0 1.1rem;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: clamp(.68rem, 1.4vw, .78rem);
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border: 1px solid var(--amber);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(53, 212, 11, .12), 0 0 20px rgba(53, 212, 11, .55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 8, .88);
  box-shadow: 0 12px 35px rgba(2, 8, 1, .2);
  backdrop-filter: blur(18px) saturate(1.2);
}
.nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand img { width: auto; height: 48px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); margin: 0; padding: 0; list-style: none; }
.nav-links a {
  position: relative;
  display: block;
  padding: 11px 0;
  color: var(--ink-muted);
  font-size: clamp(.76rem, 1vw, .9rem);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle::before, .nav-toggle::after, .nav-toggle span {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65em;
  padding: 13px 21px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: clamp(.72rem, 1vw, .83rem);
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn::after { content: "→"; font-size: 1.15em; transition: transform .2s ease; }
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--amber); color: #081006; box-shadow: 0 12px 28px rgba(53, 212, 11, .18); }
.btn-primary:hover { background: #68e943; box-shadow: 0 16px 34px rgba(53, 212, 11, .26); }
.btn-outline { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: var(--ink); }
.btn-outline:hover { border-color: var(--amber); background: rgba(53, 212, 11, .07); color: var(--amber); }
button.btn:disabled { opacity: .6; cursor: wait; transform: none; }

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.08); animation: hero-in 1.1s ease both; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,10,8,.94) 0%, rgba(8,10,8,.73) 43%, rgba(8,10,8,.16) 76%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .24;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(2,8,1,.34) 4px);
  mix-blend-mode: multiply;
}
.hero-copy { width: 100%; padding: clamp(110px, 15vw, 180px) 0 clamp(62px, 8vw, 92px); }
.hero-copy .container { margin-left: max(24px, calc((100vw - var(--max)) / 2)); margin-right: 24px; width: min(720px, calc(100% - 48px)); }
.hero-copy h1, .hero-copy .lede, .hero-copy .eyebrow, .hero-actions { animation: reveal-up .7s ease both; }
.hero-copy .lede { animation-delay: .08s; }
.hero-actions { animation-delay: .16s; }
.hero-copy .lede { max-width: 58ch; color: rgba(255,247,230,.78); font-size: clamp(1.02rem, 2vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }

.hero-plain {
  position: relative;
  padding: clamp(76px, 11vw, 142px) 0 clamp(58px, 8vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-plain::before {
  content: "";
  position: absolute;
  width: min(520px, 60vw);
  aspect-ratio: 1;
  top: -44%;
  right: -8%;
  border: 1px solid rgba(53,212,11,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(53,212,11,.028), 0 0 0 88px rgba(241,178,159,.022);
  pointer-events: none;
}
.hero-plain .split { position: relative; }
.hero-plain .split > div:first-child { animation: reveal-up .7s ease both; }
.hero-plain .split-media { animation: reveal-up .7s .12s ease both; }
.hero-plain p.lede { max-width: 62ch; color: var(--ink-muted); font-size: clamp(1.02rem, 2vw, 1.18rem); }

.section { padding: clamp(68px, 9vw, 112px) 0; }
.section-tight { padding: clamp(38px, 5vw, 60px) 0; }
.section-alt {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(34,42,32,.76), rgba(18,23,17,.94));
}
.section-alt::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(53,212,11,.035), transparent 30%, rgba(241,178,159,.02)); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 54px); }
.section-head > p:last-child { max-width: 62ch; }
.center h2 { margin-inline: auto; }
.center > .container > p:not(.eyebrow), .center > p:not(.eyebrow) { max-width: 60ch; margin-inline: auto; }
.center .btn { margin-top: .7rem; }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(34,42,32,.88), rgba(22,28,21,.94));
  box-shadow: 0 16px 40px rgba(2,8,1,.14);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  top: -50px;
  right: -40px;
  border: 1px solid rgba(53,212,11,.23);
  transform: rotate(45deg);
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-7px); border-color: rgba(53,212,11,.4); box-shadow: var(--shadow); }
.card:hover::before { transform: rotate(58deg) scale(1.2); }
.card p:last-of-type { margin-bottom: 1.4rem; }
.card .btn { margin-top: auto; }
.grid-2 .card { display: flex; flex-direction: column; }
.card .num {
  display: block;
  margin-bottom: 1rem;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.grid-4 .card:nth-child(even) { transform: translateY(18px); }
.grid-4 .card:nth-child(even):hover { transform: translateY(11px); }

.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(34px, 7vw, 88px); }
.split > div:first-child > p:not(.eyebrow) { max-width: 64ch; }
.split-media { position: relative; }
.split-media::before {
  content: "";
  position: absolute;
  inset: -12px 14px 14px -12px;
  z-index: -1;
  border: 1px solid rgba(53,212,11,.36);
  border-radius: var(--radius);
}
.split img { width: 100%; max-height: 620px; object-fit: cover; border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow); }
.split.reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.split.reverse .split-media { order: -1; }

.launch-visual {
  position: relative;
  min-height: clamp(360px, 46vw, 560px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.launch-visual::before,
.launch-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.launch-visual::before {
  width: min(90%, 500px);
  aspect-ratio: 1;
  z-index: -2;
  border: 1px solid rgba(53,212,11,.24);
  box-shadow: 0 0 0 26px rgba(53,212,11,.025), 0 0 0 52px rgba(53,212,11,.018);
}
.launch-visual::after {
  width: 58%;
  aspect-ratio: 1;
  z-index: -1;
  background: rgba(241,178,159,.08);
  filter: blur(50px);
}
.launch-badge {
  width: min(78vw, 430px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px;
  border: 2px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: var(--amber);
  color: #081006;
  text-align: center;
  box-shadow: 0 30px 80px rgba(2,8,1,.4), inset 0 0 0 12px rgba(8,16,6,.06);
  transform: rotate(2deg);
}
.launch-badge span,
.launch-badge small {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.launch-badge span { font-size: clamp(.73rem, 1.6vw, .9rem); }
.launch-badge strong {
  margin: .3em 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -.06em;
  line-height: .92;
  text-transform: uppercase;
}
.launch-badge small { font-size: clamp(.62rem, 1.3vw, .78rem); }

.timeline-item { position: relative; display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--line); }
.timeline-item::before { content: ""; position: absolute; width: 9px; height: 9px; top: -5px; left: 0; border-radius: 50%; background: var(--amber); box-shadow: 0 0 16px rgba(53,212,11,.58); }
.timeline-item:first-of-type { border-top: 0; }
.timeline-item:first-of-type::before { display: none; }
.timeline-year { position: sticky; top: 110px; align-self: start; color: var(--amber); font-family: var(--font-mono); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item > div:last-child { max-width: 780px; }
.timeline-media { margin-top: 1.8rem; }
.timeline-media img { width: 100%; max-height: 520px; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 55px rgba(2,8,1,.26); }

.faq-item { position: relative; max-width: 900px; padding: 27px 48px 27px 0; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item::after { content: "+"; position: absolute; top: 23px; right: 2px; color: var(--amber); font-family: var(--font-mono); font-size: 1.5rem; }
.faq-item h3 { margin-bottom: .55em; color: var(--ink); }
.faq-item p:last-child { margin-bottom: 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.7rem 0 0; }
.tag { padding: 9px 15px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink-muted); background: rgba(255,255,255,.02); font-family: var(--font-mono); font-size: .73rem; letter-spacing: .06em; text-transform: uppercase; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.tag:hover { transform: translateY(-2px); border-color: var(--amber); color: var(--amber); }

.form-wrap { padding: clamp(24px, 5vw, 46px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(34,42,32,.9), rgba(16,20,15,.97)); box-shadow: var(--shadow); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; margin-bottom: 8px; color: var(--ink-muted); font-family: var(--font-mono); font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; }
.form-row input, .form-row textarea, .form-row select { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: rgba(8,10,8,.58); color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-row textarea { min-height: 150px; resize: vertical; }
.form-row input:hover, .form-row textarea:hover, .form-row select:hover { border-color: rgba(255,247,230,.38); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--amber); background: rgba(8,10,8,.8); box-shadow: 0 0 0 4px rgba(53,212,11,.11); }
.form-note { margin-top: 12px; color: var(--ink-muted); font-size: .84rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#form-status { min-height: 1.6em; margin-top: 16px; font-family: var(--font-mono); font-size: .84rem; }
#form-status.ok { color: #72e650; }
#form-status.err { color: #f1b29f; }
.contact-info-item { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 16px; margin-bottom: 23px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.contact-info-item .k { color: var(--amber); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-info-item a { color: var(--ink); font-weight: 700; text-decoration: none; transition: color .2s ease; }
.contact-info-item a:hover { color: var(--amber); }

blockquote { position: relative; margin: 2.2rem 0; padding: 1.2rem 1.4rem 1.2rem 2rem; border-left: 3px solid var(--amber); background: linear-gradient(90deg, rgba(53,212,11,.08), transparent); color: var(--ink); font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.55; }

.site-footer { position: relative; margin-top: 0; padding: clamp(50px, 8vw, 82px) 0 34px; border-top: 1px solid var(--line); background: var(--bg-deep); }
.site-footer::before { content: ""; position: absolute; top: -1px; left: 0; width: 30%; height: 1px; background: linear-gradient(90deg, var(--amber), transparent); }
.footer-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 36px; }
.footer-row .brand img { height: 62px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 24px; max-width: 620px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: var(--ink-muted); font-size: .88rem; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--amber); }
.footer-meta { margin: 34px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: rgba(185,194,180,.7); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .025em; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 14px 0 0; padding: 0; list-style: none; }
.footer-legal a, .footer-legal button { padding: 0; border: 0; background: none; color: rgba(185,194,180,.72); font-family: var(--font-mono); font-size: .7rem; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; cursor: pointer; transition: color .2s ease, text-decoration-color .2s ease; }
.footer-legal a:hover, .footer-legal button:hover { color: var(--amber); text-decoration-color: currentColor; }

.privacy-content { max-width: 900px; }
.privacy-content h2 { margin-top: 2.2em; }
.privacy-content h3 { margin-top: 1.8em; }
.privacy-content li { margin-bottom: .65em; color: var(--ink-muted); }
.privacy-table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--line); border-radius: var(--radius); }
.privacy-table { width: 100%; min-width: 720px; border-collapse: collapse; background: rgba(8,10,8,.38); }
.privacy-table th, .privacy-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table th { color: var(--ink); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.privacy-table td { color: var(--ink-muted); font-size: .92rem; }
.privacy-table tr:last-child td { border-bottom: 0; }

.consent-panel { position: fixed; bottom: 20px; left: 20px; z-index: 500; width: min(520px, calc(100vw - 40px)); max-height: calc(100vh - 40px); overflow-y: auto; padding: 24px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: rgba(8,10,8,.98); box-shadow: 0 24px 80px rgba(0,0,0,.64); }
.consent-panel[hidden] { display: none; }
.consent-panel h2 { margin-bottom: 12px; font-size: clamp(1.25rem, 4vw, 1.65rem); }
.consent-panel > p { margin-bottom: 18px; font-size: .92rem; }
.consent-options { display: grid; gap: 9px; margin: 0 0 18px; padding: 0; border: 0; }
.consent-option { display: flex; align-items: flex-start; gap: 12px; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.consent-option input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--amber); }
.consent-option-copy { flex: 1; }
.consent-option-copy strong { display: block; font-size: .9rem; }
.consent-option-copy span { display: block; color: var(--ink-muted); font-size: .78rem; line-height: 1.45; }
.consent-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.consent-action { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 10px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: rgba(255,255,255,.035); color: var(--ink); font-size: .78rem; font-weight: 700; line-height: 1.25; text-align: center; text-decoration: none; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.consent-action:hover { border-color: var(--amber); background: rgba(53,212,11,.08); color: var(--amber); }
.consent-save { width: 100%; margin-top: 9px; border-color: var(--amber); background: var(--amber); color: var(--bg-deep); }
.consent-save:hover { background: #68e943; color: var(--bg-deep); }
.consent-status { min-height: 1.4em; margin: 10px 0 0; color: var(--ink-muted); font-family: var(--font-mono); font-size: .7rem; }

.bulb-divider { display: flex; align-items: center; gap: 10px; margin: 3rem 0; padding: 0; list-style: none; }
.bulb-divider span { width: 6px; height: 6px; flex: none; border-radius: 50%; background: var(--line-strong); }
.bulb-divider span:nth-child(3n+1) { background: var(--amber-soft); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.text-amber { color: var(--amber); }

.gallery-section { overflow: hidden; }
.gallery-heading { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, .7fr); align-items: end; gap: 48px; margin-bottom: clamp(30px, 5vw, 58px); }
.gallery-heading .section-head { margin-bottom: 0; }
.gallery-intro { max-width: 42ch; margin: 0 0 .45rem; padding-left: 20px; border-left: 1px solid var(--amber); }
.gallery-viewport { overflow: visible; }
.event-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: clamp(12px, 1.6vw, 18px); }
.gallery-item { min-width: 0; margin: 0; }
.gallery-open { display: block; width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: transparent; color: var(--ink); cursor: zoom-in; }
.gallery-open img { width: 100%; height: auto; border-radius: inherit; transition: filter .25s ease, opacity .25s ease; }
.gallery-open:hover img { filter: brightness(1.08); opacity: .94; }
.gallery-controls { display: none; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.gallery-arrow { display: grid; width: 48px; height: 48px; padding: 0; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--panel); color: var(--ink); cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.gallery-arrow:hover:not(:disabled) { border-color: var(--amber); background: var(--amber); color: var(--bg-deep); transform: translateY(-2px); }
.gallery-arrow:disabled { cursor: not-allowed; opacity: .32; }
.gallery-arrow span { font-size: 1.4rem; line-height: 1; }
.gallery-status { min-width: 78px; margin: 0; color: var(--ink-muted); font-family: var(--font-mono); font-size: .72rem; text-align: center; }
.gallery-lightbox { width: min(92vw, 1080px); max-width: none; padding: 0; overflow: visible; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bg-deep); box-shadow: 0 35px 100px rgba(0,0,0,.75); }
.gallery-lightbox::backdrop { background: rgba(3,5,3,.88); backdrop-filter: blur(10px); }
.gallery-lightbox img { width: 100%; max-height: 84vh; border-radius: inherit; object-fit: contain; }
.gallery-close { position: absolute; top: -16px; right: -12px; z-index: 1; padding: 9px 13px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--amber); color: var(--bg-deep); font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.35); }

@keyframes hero-in { from { opacity: .55; transform: scale(1.045); } to { opacity: 1; transform: scale(1); } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1040px) {
  .nav-links { gap: 15px; }
  .nav-links a { max-width: 142px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 .card:nth-child(even) { transform: none; }
  .grid-4 .card:nth-child(even):hover { transform: translateY(-7px); }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 36px), var(--max)); }
  .nav-row { min-height: 70px; }
  .brand img { height: 42px; }
  .nav-toggle { display: block; }
  .nav-toggle span { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(16,20,15,.98);
    box-shadow: 0 20px 45px rgba(2,8,1,.36);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .35s ease, opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-links.open { max-height: 480px; visibility: visible; opacity: 1; transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { max-width: none; padding: 16px 24px; font-size: .9rem; }
  .nav-links a::after { top: 0; right: auto; bottom: 0; left: 0; width: 3px; height: auto; transform: scaleY(0); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleY(1); }
  .hero { min-height: 660px; }
  .hero-media::before { background: linear-gradient(0deg, var(--bg) 0%, rgba(8,10,8,.76) 54%, rgba(8,10,8,.2) 100%); }
  .hero-copy .container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 42px; }
  .split.reverse .split-media { order: 0; }
  .launch-visual { min-height: 470px; }
  .hero-plain .split-media { max-width: 680px; }
  .grid { grid-template-columns: 1fr; }
  .grid-2, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-heading { grid-template-columns: 1fr; gap: 16px; }
  .gallery-intro { max-width: 54ch; }
  .gallery-viewport { overflow: hidden; }
  .event-gallery { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .event-gallery::-webkit-scrollbar { display: none; }
  .gallery-item { flex: 0 0 calc((100% - 14px) / 2); scroll-snap-align: start; }
  .gallery-controls { display: flex; }
  .timeline-item { grid-template-columns: 140px minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  body { font-size: 15px; }
  h1 { font-size: clamp(2.1rem, 11.5vw, 3.2rem); overflow-wrap: anywhere; }
  h2 { font-size: clamp(1.6rem, 8vw, 2.25rem); }
  .hero { min-height: 690px; }
  .hero-copy { padding-bottom: 48px; }
  .hero-copy .container { width: min(calc(100% - 28px), var(--max)); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-plain { padding-top: 72px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .gallery-item { flex-basis: 100%; }
  .gallery-close { top: 10px; right: 10px; }
  .card { padding: 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .launch-visual { min-height: 340px; }
  .launch-badge { width: min(86vw, 330px); padding: 38px; }
  .timeline-year { position: static; }
  .timeline-item::before { left: auto; right: 0; }
  .contact-info-item { grid-template-columns: 1fr; gap: 5px; }
  .form-wrap { border-radius: var(--radius); }
  .form-wrap .btn { width: 100%; }
  .footer-row { align-items: flex-start; flex-direction: column; }
  .footer-row .brand img { width: min(290px, 82vw); height: auto; }
  .footer-links { justify-content: flex-start; flex-direction: column; gap: 10px; }
  .footer-links a { display: inline-block; padding-block: 3px; }
  .footer-meta { line-height: 1.8; }
  .consent-panel { bottom: 10px; left: 10px; width: calc(100vw - 20px); max-height: calc(100vh - 20px); padding: 19px; }
  .consent-actions { grid-template-columns: 1fr; }
  .center .btn { width: 100%; max-width: 430px; }
}

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