:root {
  --bg: #FAF7F2;
  --bg-tint: #F2EDE4;
  --bg-card: #FFFEFB;
  --ink: #14161A;
  --ink-2: #2B2D33;
  --muted: #6E6A66;
  --muted-2: #A29C94;
  --line: #E5DFD3;
  --accent: #C45A3D;
  --accent-soft: #F1D9CE;
  --green: #2C7A4F;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.55; }

/* Top nav */
.topnav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topnav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.topnav .brand {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}
.topnav .brand .dot { color: var(--accent); margin: 0 4px; }
.topnav .links { display: flex; gap: 6px; }
.topnav .links a {
  font-family: var(--sans); font-size: 12px;
  color: var(--ink); text-decoration: none;
  padding: 6px 12px; border-radius: 999px;
}
.topnav .links a:hover { background: var(--bg-tint); }
.topnav .links a.cta { background: var(--accent); color: white; font-weight: 500; }
.topnav .links a.cta:hover { background: #d56a4d; }

@media (max-width: 600px) {
  .topnav .links a { padding: 6px 8px; font-size: 11px; }
  .topnav .links a:not(.cta) { display: none; }
}

.page { max-width: 1240px; margin: 0 auto; padding: 56px 32px 100px; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 56px;
  align-items: flex-end;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.6fr 1fr; gap: 48px; margin-bottom: 64px; }
}
.eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
h1.display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.96; letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
h1.display em { font-style: italic; color: var(--accent); }
.subtitle {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4; color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
  max-width: 620px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.btn {
  height: 48px; padding: 0 22px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
  cursor: pointer; border: none;
}
.btn.primary { background: var(--ink); color: #F5F2EC; }
.btn.primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.secondary:hover { border-color: var(--ink); }
.btn.accent { background: var(--accent); color: white; }
.btn.accent:hover { background: #d56a4d; transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; }

.hero-meta {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
}
.hero-meta .label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.hero-meta dl { margin: 0; }
.hero-meta dl > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.hero-meta dl > div:last-child { border: none; padding-bottom: 0; }
.hero-meta dl dt { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding-top: 2px; }
.hero-meta dl dd { margin: 0; font-weight: 500; text-align: right; color: var(--ink); }

/* At-a-glance callout */
.glance-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 36px 0 56px;
  padding: 32px 36px;
  background: linear-gradient(180deg, var(--bg-card) 0%, #FBF3EE 100%);
  border: 1px solid var(--accent);
  border-radius: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
}
.glance-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(196,90,61,0.14);
}
.glance-cta::before {
  content: ""; position: absolute;
  right: -80px; bottom: -80px;
  width: 240px; height: 240px;
  background: var(--accent);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}
.glance-cta .glance-left { flex: 1; min-width: 0; }
.glance-cta .glance-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 8px;
}
.glance-cta h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.08; letter-spacing: -0.015em;
  margin: 0 0 6px;
  text-wrap: balance;
}
.glance-cta h2 em { font-style: italic; color: var(--accent); }
.glance-cta p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 600px;
}
.glance-cta .glance-right {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: white;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  padding: 12px 22px;
  border-radius: 999px;
  z-index: 1;
}
.glance-cta .glance-right svg { width: 14px; height: 14px; }

@media (max-width: 700px) {
  .glance-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
    margin: 24px 0 40px;
  }
  .glance-cta .glance-right {
    align-self: stretch; justify-content: center;
  }
}

/* ===== INTERACTIVE ROADMAP ===== */
.roadmap-wrap {
  margin: 56px 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 32px;
}
.roadmap-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 28px;
}
.roadmap-head .label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.roadmap-head h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 4vw, 32px); letter-spacing: -0.015em;
  margin: 0 0 4px;
  line-height: 1.1;
  text-wrap: balance;
}
.roadmap-head h2 em { font-style: italic; color: var(--accent); }
.roadmap-head .sub { font-size: 13.5px; color: var(--muted); }
.roadmap-today {
  text-align: right;
  font-family: var(--mono); font-size: 11px;
  color: var(--muted);
}
.roadmap-today .now-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: white;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em;
}
.roadmap-today .now-pill::before {
  content: ""; width: 6px; height: 6px;
  background: white; border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.roadmap-today .date { color: var(--ink); margin-top: 6px; }

.roadmap-bar {
  position: relative;
  height: 6px;
  background: var(--bg-tint);
  border-radius: 4px;
  margin: 8px 0 36px;
}
.roadmap-bar .seg {
  position: absolute; top: 0; bottom: 0;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 4px;
}
.roadmap-bar .seg.done { opacity: 0.55; }
.roadmap-bar .seg.now { opacity: 1; }
.roadmap-bar .marker {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(196,90,61,0.25);
}
.roadmap-bar .marker::after {
  content: "TODAY";
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; color: var(--accent);
  white-space: nowrap; font-weight: 500;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .roadmap-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .roadmap-grid { grid-template-columns: repeat(5, 1fr); } }

.phase {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px 18px;
  position: relative;
  transition: transform .15s, border-color .15s;
}
.phase:hover { transform: translateY(-2px); border-color: var(--ink); }
.phase.now {
  background: linear-gradient(180deg, var(--bg-card) 0%, #FBF3EE 100%);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(196,90,61,0.08);
}
.phase.done { opacity: 0.55; }
.phase .ph-num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.phase.now .ph-num { color: var(--accent); font-weight: 500; }
.phase.done .ph-num::after { content: "✓"; color: var(--green); font-size: 12px; }
.phase .ph-date {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-2); margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.phase.now .ph-date { color: var(--accent); font-weight: 500; }
.phase h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 16px; line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink);
  text-wrap: balance;
}
.phase p { font-size: 12.5px; color: var(--muted); line-height: 1.4; margin: 0; }
.phase .ph-progress {
  margin-top: 12px;
  height: 3px;
  background: var(--bg-tint);
  border-radius: 2px;
  overflow: hidden;
}
.phase .ph-progress .fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width .8s ease;
}
.phase.now::after {
  content: "NOW";
  position: absolute; top: -10px; left: 14px;
  background: var(--accent); color: white;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; font-weight: 600;
  padding: 4px 8px; border-radius: 999px;
}
.phase.done::after {
  content: "DONE";
  position: absolute; top: -10px; left: 14px;
  background: var(--muted); color: white;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; font-weight: 600;
  padding: 4px 8px; border-radius: 999px;
}

/* Section heading */
.section-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 12px;
  margin: 64px 0 16px;
}
.section-tag::after { content: ""; flex: 1; height: 1px; background: var(--line); }
h2.sec {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.1; letter-spacing: -0.015em;
  margin: 0 0 8px;
  text-wrap: balance;
}
h2.sec em { font-style: italic; color: var(--accent); }
.sec-desc {
  font-size: 16px; color: var(--muted); max-width: 720px;
  margin-bottom: 36px;
}

/* Formats grid */
.formats { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .formats { grid-template-columns: 1fr 1fr 1fr; } }

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  display: flex; flex-direction: column;
}
.format-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 90, 61, 0.12);
}
.format-card.primary {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-card) 0%, #FBF3EE 100%);
}

.fc-preview {
  background: var(--bg-tint);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
}

.preview-onthego { background: linear-gradient(180deg, #f6f1e7 0%, #f0e9da 100%); }
.pp-onthego {
  width: 58%;
  aspect-ratio: 9 / 19;
  background: var(--bg);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 14px 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.pp-onthego .topdot { width: 26px; height: 3px; background: var(--line); border-radius: 2px; align-self: center; margin-bottom: 4px; }
.pp-onthego .pe { font-family: var(--mono); font-size: 5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.pp-onthego .ph { font-family: var(--serif); font-size: 18px; line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin: 2px 0 4px; }
.pp-onthego .ph em { font-style: italic; color: var(--accent); }
.pp-onthego .pd { font-family: var(--serif); font-size: 6.5px; line-height: 1.3; color: var(--ink-2); margin-bottom: 4px; }
.pp-onthego .pmeta { height: 8px; background: var(--bg-tint); border-radius: 2px; margin-bottom: 4px; }
.pp-onthego .toc-mini { background: var(--bg-tint); border-radius: 4px; padding: 4px 5px; font-family: var(--mono); font-size: 4.5px; color: var(--muted); display: flex; flex-direction: column; gap: 1.5px; }
.pp-onthego .toc-mini .row { display: flex; justify-content: space-between; padding-bottom: 1px; border-bottom: 0.5px solid var(--line); }
.pp-onthego .toc-mini .row:last-child { border: none; }

.preview-mobile { background: #1a1815; }
.pp-mobile {
  width: 56%;
  aspect-ratio: 9 / 19.5;
  background: var(--bg);
  border-radius: 18px;
  border: 6px solid #0a0908;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  padding: 12px 12px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pp-mobile .dots { display: flex; gap: 2px; margin-bottom: 8px; }
.pp-mobile .dots .d { flex: 1; height: 2px; background: var(--line); border-radius: 1px; }
.pp-mobile .dots .d.done { background: var(--accent); }
.pp-mobile .crumb-mini { font-family: var(--mono); font-size: 4.5px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.pp-mobile h3 { font-family: var(--serif); font-size: 15px; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 4px; color: var(--ink); font-weight: 400; }
.pp-mobile h3 em { font-style: italic; color: var(--accent); }
.pp-mobile .stat-big { font-family: var(--serif); font-size: 28px; color: var(--accent); line-height: 0.9; margin: 12px 0 4px; }
.pp-mobile .stat-lab { font-size: 5px; color: var(--muted); line-height: 1.3; max-width: 80%; }
.pp-mobile .navbar { position: absolute; bottom: 8px; left: 12px; right: 12px; display: flex; gap: 4px; align-items: center; }
.pp-mobile .navbar .nb { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-card); }
.pp-mobile .navbar .nbtn { flex: 1; height: 14px; border-radius: 999px; background: var(--ink); }

.preview-deck { background: var(--bg-tint); }
.pp-deck {
  width: 84%;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  padding: 18px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.pp-deck .crest { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 5px; letter-spacing: 0.12em; text-transform: uppercase; }
.pp-deck .crest .l { color: var(--accent); }
.pp-deck .crest .r { color: var(--muted); }
.pp-deck h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.pp-deck h3 em { font-style: italic; color: var(--accent); }
.pp-deck .deck-tag { font-family: var(--mono); font-size: 5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.pp-deck .pn { position: absolute; bottom: 18px; right: 22px; font-family: var(--mono); font-size: 5px; color: var(--muted-2); letter-spacing: 0.1em; }
.pp-deck .fm { position: absolute; bottom: 18px; left: 22px; font-family: var(--mono); font-size: 5px; color: var(--muted); letter-spacing: 0.08em; }

.fc-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.fc-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
  display: flex; gap: 8px; align-items: center;
}
.fc-tag .badge {
  background: var(--accent); color: white;
  padding: 2px 8px; border-radius: 999px;
  font-size: 9px; letter-spacing: 0.06em;
}
h3.fc-title {
  font-family: var(--serif); font-weight: 500;
  font-size: 24px; line-height: 1.15;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.fc-card-p {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.5; margin: 0 0 14px;
}
.fc-meta {
  margin-top: auto;
  display: flex; gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.06em;
}
.fc-meta strong { color: var(--ink); font-weight: 500; }
.fc-arrow {
  margin-top: 14px;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--accent);
}

/* Take part band */
.take-part {
  margin: 64px 0 0;
  background: var(--ink);
  color: #F5F2EC;
  border-radius: 18px;
  padding: 36px 32px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: center;
}
@media (min-width: 800px) { .take-part { grid-template-columns: 1.4fr 1fr; padding: 48px 44px; } }
.take-part .eyebrow { color: #E89A82; }
.take-part h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1; letter-spacing: -0.015em;
  color: #FBF9F5; margin: 0 0 12px;
  text-wrap: balance;
}
.take-part h2 em { color: #E89A82; font-style: italic; }
.take-part p { color: #C9C4BA; font-size: 15px; line-height: 1.55; margin: 0; }
.take-part .ctas { display: flex; flex-direction: column; gap: 10px; }
.take-part .cta-card {
  display: block; padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #F5F2EC; text-decoration: none;
  transition: background .15s, transform .15s;
}
.take-part .cta-card:hover { background: rgba(255,255,255,0.12); transform: translateX(2px); }
.take-part .cta-card.primary {
  background: #E89A82; color: #1a1815; border-color: #E89A82;
}
.take-part .cta-card.primary:hover { background: #d68870; }
.take-part .cta-card .t {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #E89A82; margin-bottom: 3px;
}
.take-part .cta-card.primary .t { color: #1a1815; }
.take-part .cta-card .h {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  line-height: 1.2;
}

/* Supporting documents */
.support-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .support-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .support-grid { grid-template-columns: 1fr 1fr 1fr; } }

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, transform .15s;
  display: flex; flex-direction: column;
}
.support-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.sc-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.support-card h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink);
}
.support-card p {
  font-size: 13px; color: var(--muted);
  line-height: 1.45; margin: 0 0 14px;
}
.support-card .arrow {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px;
  color: var(--accent);
}

footer.foot {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}
footer.foot a {
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
footer.foot a:hover { color: var(--ink); border-color: var(--ink); }
footer.foot .right { display: flex; gap: 16px; }

/* === MOBILE POLISH === */
@media (max-width: 600px) {
  .page { padding: 36px 18px 80px; }
  h1.display { font-size: 44px; line-height: 1; }
  .subtitle { font-size: 18px; }
  .hero { gap: 28px; margin-bottom: 40px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { height: 44px; font-size: 13px; padding: 0 18px; flex: 1 1 auto; min-width: 0; }
  .hero-meta { padding: 18px 18px; }
  .roadmap-wrap { padding: 22px 18px 26px; margin: 40px 0; border-radius: 14px; }
  .roadmap-head { gap: 12px; margin-bottom: 22px; }
  .roadmap-today { text-align: left; }
  .roadmap-head h2 { font-size: 24px; }
  .roadmap-head .sub { font-size: 12.5px; }
  .roadmap-bar { margin: 6px 0 30px; }
  .phase { padding: 16px 14px; }
  .phase h4 { font-size: 15px; }
  .phase p { font-size: 12px; }
  .section-tag { margin: 48px 0 14px; }
  h2.sec { font-size: 28px; }
  .sec-desc { font-size: 15px; margin-bottom: 28px; }
  .formats { gap: 16px; }
  .fc-body { padding: 18px 18px 20px; }
  h3.fc-title { font-size: 22px; }
  .take-part { padding: 32px 22px; border-radius: 14px; }
  .take-part h2 { font-size: 26px; }
  .take-part p { font-size: 14px; }
  .support-grid { gap: 10px; }
  .support-card { padding: 16px 18px; }
  .support-card h4 { font-size: 17px; }
}
