/* ── TOKENS ────────────────────────────────────── */
:root {
  --g9: #0f2419;
  --g8: #143122;
  --g7: #1c442f;
  --moss: #b9cb62;
  --moss-d: #7a9132;
  --wh: #ffffff;
  --off: #f5f8f5;
  --line: #dde6df;
  --muted: #5c6b62;
  --ink: #0d1a10;
  --f-serif: "Noto Serif SC", serif;
  --f-sans: "Noto Sans SC", sans-serif;
  --pad: clamp(20px, 4vw, 60px);
  --max: 1200px;
  --ease: cubic-bezier(.22,.68,0,1.2);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--wh);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── UTIL ──────────────────────────────────────── */
.wrap { width: min(var(--max), 100% - var(--pad) * 2); margin: 0 auto; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss-d);
  margin-bottom: 14px;
}

.section-h {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--g8);
  text-wrap: balance;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--g8);
  border-bottom: 1.5px solid var(--g8);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}

/* ── REVEAL ANIMATION ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── ANNOUNCE ──────────────────────────────────── */
.announce {
  background: var(--g8);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  text-align: center;
  padding: 11px var(--pad);
  letter-spacing: .05em;
}
.announce strong { color: var(--moss); }
.announce a {
  color: var(--moss);
  font-weight: 700;
  margin-left: 20px;
  border-bottom: 1px solid rgba(185,203,98,.4);
  padding-bottom: 1px;
}

/* ── NAV ───────────────────────────────────────── */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wh);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav-bar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
}

.nav-inner {
  width: min(var(--max), 100% - var(--pad) * 2);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-name {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--g8);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #3d4a41;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--g8); font-weight: 600; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  background: var(--g8);
  color: var(--wh) !important;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
}
.nav-cta:hover { background: var(--g7) !important; }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch a {
  padding: 6px 10px;
  color: var(--muted);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.lang-switch a:hover { background: var(--off); color: var(--g8); }
.lang-switch a.current {
  background: var(--g8);
  color: var(--wh);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--g8);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: 73px;
  background: var(--wh);
  z-index: 99;
  padding: 32px var(--pad);
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block;
  font-size: 18px;
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--g8);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.nav-drawer .drawer-cta {
  margin-top: 24px;
  display: inline-block;
  background: var(--g8);
  color: var(--wh);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 700px;
  height: 88vh;
  max-height: 920px;
  display: flex;
  align-items: flex-end;
  background: var(--g9);
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.12) brightness(.9);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8,22,13,.95) 0%, rgba(8,22,13,.6) 50%, rgba(8,22,13,.15) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  color: var(--wh);
  padding-bottom: 90px;
  max-width: 760px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(185,203,98,.5);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(52px, 7.5vw, 110px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.015em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-desc {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.55;
  color: rgba(255,255,255,.83);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-p {
  background: var(--moss);
  color: var(--g9) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 34px;
  transition: background .2s;
}
.btn-p:hover { background: #cad96a; }
.btn-g {
  border: 1.5px solid rgba(255,255,255,.45);
  color: var(--wh) !important;
  font-size: 14px;
  padding: 14px 28px;
  transition: border-color .2s, background .2s;
}
.btn-g:hover { border-color: var(--wh); background: rgba(255,255,255,.06); }

/* ── TOPICS STRIP ──────────────────────────────── */
.strip { background: var(--g8); overflow-x: auto; scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
.strip-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  white-space: nowrap;
}
.strip-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 22px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  border-right: 1px solid rgba(255,255,255,.08);
  cursor: default;
  transition: color .15s, background .15s;
}
.strip-chip:hover { color: var(--wh); background: rgba(255,255,255,.05); }
.strip-chip .n { font-size: 10px; font-weight: 700; color: var(--moss); letter-spacing: .08em; }

/* ── STATS ─────────────────────────────────────── */
.stats-bar { background: var(--wh); border-bottom: 1px solid var(--line); }
.stats-row { display: flex; }
.stat {
  flex: 1;
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: 0; }
.stat-n {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--g8);
  line-height: 1;
  min-height: 1.1em;
}
.stat-l {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: .04em;
}

/* ── AGENDA ────────────────────────────────────── */
.agenda-sec { padding: 96px 0; background: var(--off); }
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.a-card {
  background: var(--wh);
  padding: 34px 28px 30px;
  transition: background .2s;
  /* flex column 让 tag 始终贴底，并使 a-issues 撑满剩余空间 */
  display: flex;
  flex-direction: column;
}
.a-card:hover { background: #f2f6f2; }
.a-card.future-card { grid-column: span 2; }
.a-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--moss-d);
  margin-bottom: 16px;
}
.a-card h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--g8);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  /* 固定高度：最多两行（22px × 1.2 × 2 + padding = ~65px）确保横线对齐 */
  min-height: 64px;
}
.a-card .a-lead {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.72;
  margin-bottom: 16px;
}
/* a-issues 撑满剩余空间，tag 自然沉底 */
.a-issues { display: grid; gap: 7px; flex: 1; align-content: start; }
.a-issues li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.a-issues li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--moss-d);
  font-weight: 700;
}
.a-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g8);
  border-bottom: 1.5px solid var(--moss);
  padding-bottom: 2px;
}

/* ── STATEMENT ─────────────────────────────────── */
.statement { background: var(--g8); padding: 96px 0; text-align: center; }
.stmt-q {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--wh);
  max-width: 760px;
  margin: 0 auto 22px;
  text-wrap: balance;
}
.stmt-q strong { color: var(--moss); }
.stmt-cite {
  font-size: 12px;
  font-style: normal;
  color: rgba(255,255,255,.42);
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ── WHY ───────────────────────────────────────── */
.why-sec { padding: 96px 0; background: var(--wh); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.w-card { border-top: 2px solid var(--g8); padding-top: 26px; }
.w-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--moss-d);
  margin-bottom: 14px;
}
.w-card h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--g8);
  margin-bottom: 10px;
}
.w-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── BRANDS ────────────────────────────────────── */
.brands-sec { padding: 96px 0; background: var(--off); }
.brands-intro { max-width: 640px; margin-bottom: 52px; }
.brands-intro p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-top: 14px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.brand-card {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.brand-card:last-child { border-right: 0; }
.brand-photo { aspect-ratio: 3/2; overflow: hidden; background: var(--g7); }
.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82);
  transition: transform .6s;
}
.brand-card:hover .brand-photo img { transform: scale(1.05); }
.brand-body {
  padding: 26px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.brand-origin {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss-d);
  margin-bottom: 8px;
}
.brand-name {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--g8);
  margin-bottom: 3px;
}
.brand-en {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .06em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.brand-pos { font-size: 13px; color: var(--ink); line-height: 1.72; margin-bottom: 14px; }
.brand-assets { display: grid; gap: 6px; margin-bottom: 16px; }
.brand-assets li {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 13px;
  position: relative;
}
.brand-assets li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--moss-d);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}
.brand-market {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g8);
  background: var(--off);
  padding: 9px 12px;
  border-top: 1px solid var(--line);
}

/* ── REACH ─────────────────────────────────────── */
.reach-sec { padding: 96px 0; background: var(--wh); }
.reach-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  margin-top: 52px;
  align-items: start;
}
.reach-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--g7); }
.reach-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.reach-photo:hover img { transform: scale(1.03); }
.reach-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(10,25,17,.9), transparent);
  padding: 44px 24px 24px;
  color: var(--wh);
}
.reach-cap h3 { font-family: var(--f-serif); font-size: 21px; line-height: 1.3; margin-bottom: 6px; }
.reach-cap p { font-size: 13px; color: rgba(255,255,255,.7); }
/* 取消左右分栏，改为上下堆叠，让每列文字有足够宽度不再断行 */
.mkt-cols { display: grid; grid-template-columns: 1fr; gap: 32px; }
.mkt-list h3 {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--g8);
  padding-bottom: 13px;
  border-bottom: 2px solid var(--g8);
}
.mkt-row { padding: 13px 0; border-bottom: 1px solid var(--line); }
.mkt-row b { display: block; font-family: var(--f-serif); font-size: 14px; font-weight: 700; color: var(--g8); margin-bottom: 4px; }
.mkt-row span { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── LIBRARY ───────────────────────────────────── */
.lib-sec { padding: 96px 0; background: var(--off); }
.res-table { margin-top: 52px; border-top: 2px solid var(--g8); }
.res-row {
  display: grid;
  grid-template-columns: 110px 1fr 48px;
  gap: 32px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.res-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--moss-d);
  padding-top: 2px;
}
.res-title {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--g8);
  margin-bottom: 5px;
}
.res-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.res-src-inline { display: inline; font-size: 12px; color: rgba(92,107,98,.65); margin-left: 8px; }
.res-btn {
  display: block;
  text-align: right;
  font-size: 18px;
  color: var(--g8);
  opacity: .5;
  transition: opacity .2s;
}
.res-btn:hover { opacity: 1; }

/* ── NEWS ──────────────────────────────────────── */
.news-sec { padding: 96px 0; background: var(--wh); }
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.n-card {
  background: var(--wh);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
}
.n-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.08); border-color: transparent; }
.n-img { aspect-ratio: 16/10; overflow: hidden; background: var(--off); }
.n-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.n-card:hover .n-img img { transform: scale(1.04); }
.n-body { padding: 20px 20px 24px; flex: 1; }
.n-src { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--moss-d); margin-bottom: 9px; }
.n-title { font-family: var(--f-serif); font-size: 18px; font-weight: 700; line-height: 1.32; color: var(--g8); margin-bottom: 8px; }
.n-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── JOIN ──────────────────────────────────────── */
.join-sec { background: var(--g9); padding: 96px 0; color: var(--wh); }
.join-head { margin-bottom: 52px; }
.join-head h2 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--wh);
  margin-top: 12px;
  text-wrap: balance;
}
.join-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
}
.j-card {
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 34px 24px;
  transition: background .2s;
}
.j-card:last-child { border-right: 0; }
.j-card:hover { background: rgba(255,255,255,.05); }
.j-num { font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--moss); margin-bottom: 18px; }
.j-card h3 { font-family: var(--f-serif); font-size: 19px; font-weight: 700; color: var(--wh); margin-bottom: 10px; }
.j-card p { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.78; }
.join-contact {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.join-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
}
.join-contact-info {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.join-contact-info a {
  font-family: var(--f-serif);
  color: var(--moss);
  font-size: 16px;
  font-weight: 600;
  transition: opacity .2s;
}
.join-contact-info a:hover { opacity: .75; }
.contact-sep { color: rgba(255,255,255,.35); }
.registration-block {
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  padding: 28px;
}
.registration-block-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.registration-block h3 {
  font-family: var(--f-serif);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--wh);
  margin-top: 8px;
}
.registration-block-head p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.registration-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
}
.registration-step {
  padding: 18px 16px 4px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.registration-step:last-child { border-right: 0; }
.registration-step b { display: block; color: var(--moss); font-size: 11px; letter-spacing: .14em; }
.registration-step strong { display: block; color: var(--wh); font-family: var(--f-serif); font-size: 17px; line-height: 1.3; margin-top: 9px; }
.registration-step span { display: block; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.55; margin-top: 6px; }
.registration-link { display: inline-flex; margin-top: 24px; color: var(--g9); background: var(--moss); padding: 12px 16px; font-size: 14px; font-weight: 700; transition: opacity .2s; }
.registration-link:hover { opacity: .82; }
.registration-page { background: var(--off); min-height: calc(100vh - 72px); }
.registration-shell { padding: 64px 0 96px; }
.registration-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 48px; align-items: start; }
.registration-intro h2 { font-family: var(--f-serif); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.18; color: var(--g8); margin-top: 12px; }
.registration-intro > p { max-width: 470px; color: var(--muted); font-size: 15px; line-height: 1.8; margin-top: 18px; }
.registration-notes { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 20px; display: grid; gap: 14px; }
.registration-note { display: grid; grid-template-columns: 30px 1fr; gap: 12px; }
.registration-note b { color: var(--moss-d); font-size: 12px; letter-spacing: .12em; }
.registration-note span { color: var(--muted); font-size: 13px; line-height: 1.6; }
.registration-form-panel { background: var(--wh); border: 1px solid var(--line); padding: 30px; }
.registration-form { display: grid; gap: 20px; }
.registration-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--g8); font-size: 13px; font-weight: 600; }
.form-field label span { color: var(--moss-d); }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: var(--wh); color: var(--ink); font: inherit; font-size: 14px; padding: 12px 13px; outline: none; transition: border-color .2s, box-shadow .2s; }
.form-field input, .form-field select { height: 46px; }
.form-field textarea { min-height: 112px; resize: vertical; line-height: 1.6; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--g8); box-shadow: 0 0 0 2px rgba(16,65,53,.1); }
.form-consent { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.form-consent input { margin-top: 3px; accent-color: var(--g8); }
.registration-submit { border: 0; cursor: pointer; justify-content: space-between; width: fit-content; min-width: 170px; font: inherit; }
.registration-success { border-top: 1px solid var(--line); padding-top: 22px; }
.registration-success h3 { font-family: var(--f-serif); font-size: 26px; color: var(--g8); margin-bottom: 10px; }
.registration-success p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.registration-success[hidden], .registration-form[hidden] { display: none; }
.form-honeypot { position: absolute; left: -9999px; }

/* ── FOOTER ────────────────────────────────────── */
.footer { background: var(--g9); border-top: 1px solid rgba(255,255,255,.07); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}
.f-brand-name { font-family: var(--f-serif); font-size: 16px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 0; }
.footer h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer ul { display: grid; gap: 10px; }
.footer li { font-size: 13px; color: rgba(255,255,255,.56); line-height: 1.5; }
.footer li.org-label { color: rgba(255,255,255,.82); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; }
.footer li a { color: inherit; }
.footer li a:hover { color: var(--moss); }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.f-bottom p { font-size: 12px; color: rgba(255,255,255,.28); }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid, .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-card { border-bottom: 1px solid var(--line); }
  .join-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .agenda-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .a-card.future-card { grid-column: auto; }
  .reach-grid, .mkt-cols { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; border-bottom: 1px solid var(--line); }
  .res-row { grid-template-columns: 1fr; gap: 8px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .registration-block-head, .registration-steps { grid-template-columns: 1fr; }
  .registration-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px 0; }
  .registration-step:last-child { border-bottom: 0; }
  .registration-layout { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  .agenda-grid, .news-grid, .why-grid, .brand-grid, .join-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 600px; height: 100svh; }
  .strip-inner { padding: 0; }
  .registration-block { padding: 22px 18px; }
  .registration-block h3 { font-size: 25px; }
  .registration-shell { padding: 44px 0 72px; }
  .registration-form-panel { padding: 22px 18px; }
  .registration-form .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-field.full { grid-column: auto; }
}
