:root {
  --cream:   #FAF8F4;
  --paper:   #F3F0EA;
  --warm:    #EDE9E0;
  --border:  #DDD9CF;
  --ink:     #181512;
  --ink2:    #3D3A35;
  --muted:   #65584d;
  --orange:  #ea5a2a;
  --orange2: #ffb36b;
  --gold:    #B8872A;
  --rust:    #C04A1A;
  --accent:  #ea5a2a;
  --accent-2: #ffb36b;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
em { font-style: normal; }
html { scroll-behavior: smooth; }
body {
  /* background: #f7f2ea; */
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

.site-shell { min-height: 100vh; }
.site-page-offset { padding-top: 108px; }

.site-nav {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 140;
  width: min(1204px, calc(100vw - 16px));
  margin: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,250,242,0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(53,32,13,0.08);
  transition: top 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-nav.is-stuck {
  position: fixed;
  top: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #d94716);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav .nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: var(--ink2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.site-nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav .nav-links a:hover::after,
.site-nav .nav-links a.active::after { transform: scaleX(1); background: var(--orange); }
.site-nav .nav-links a.active { color: var(--orange); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--orange), #d94716);
  box-shadow: 0 16px 34px rgba(217,71,22,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); }

.nav-brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  transition: transform 0.25s ease, background 0.25s ease;
}
.nav-brochure:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.85);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-brochure-mobile { display: none; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-footer {
  position: relative;
  padding: 54px 0 28px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(234,90,42,0.03) 100%);
  border-top: 1px solid rgba(24,21,18,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: 64px;
  align-items: start;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.footer-logo .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--orange, #ea5a2a), #d94716);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
}
.footer-logo .brand-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-text {
  letter-spacing: 0.06em;
}
.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange, #ea5a2a);
  margin: 0;
  letter-spacing: -0.01em;
}
.footer-blurb {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-list a {
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col-list a:hover {
  color: var(--orange, #ea5a2a);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(24,21,18,0.08);
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.footer-loc {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em !important;
}

@media (max-width: 820px) {
  .site-footer {
    padding: 56px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  width: 143px;
  height: 143px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjE0MyIgdmlld0JveD0iMCAwIDE0MyAxNDMiIHdpZHRoPSIxNDMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTEyNi4xIDExNC0xMy45LTMuOWMtMi41LS43LTQuOSAxLjUtNC4zIDQuMWwzLjEgMTQuMWMuNyAzLjItMyA1LjUtNS41IDMuNWwtMTEuNC04LjljLTIuMS0xLjYtNS4xLS41LTUuNSAyLjFsLTIuNiAxNC4zYy0uNiAzLjItNC44IDMuOS02LjQgMS4xbC03LjEtMTIuNmMtMS4zLTIuMy00LjUtMi40LTUuOS0uMmwtNy44IDEyLjJjLTEuNyAyLjctNiAxLjgtNi40LTEuNGwtMS43LTE0LjRjLS4zLTIuNi0zLjMtMy45LTUuNC0yLjRsLTExLjggOC4zYy0yLjcgMS45LTYuMi0uNi01LjMtMy44bDMuOS0xMy45Yy43LTIuNS0xLjUtNC45LTQuMS00LjNsLTE0LjIgMy4xYy0zLjIuNy01LjQ5OTk4LTMtMy41LTUuNWw4LjktMTEuNGMxLjYtMi4xLjUtNS4xLTIuMS01LjVsLTE0LjE5OTk4LTIuNmMtMy4yMDAwMDQtLjYtMy45MDAwMDUtNC44LTEuMS02LjRsMTIuNTk5OTgtNy4xYzIuMy0xLjMgMi40LTQuNS4yLTUuOWwtMTIuMjk5OTgtNy44Yy0yLjcwMDAwNS0xLjctMS44MDAwMDUtNiAxLjQtNi40bDE0LjM5OTk4LTEuN2MyLjYtLjMgMy45LTMuMyAyLjQtNS40bC04LjMtMTEuOGMtMS45LTIuNy42LTYuMiAzLjgtNS4zbDEzLjkgMy44YzIuNS43IDQuOS0xLjUgNC4zLTQuMWwtMy4xLTE0LjFjLS43LTMuMiAzLTUuNDk5OTggNS41LTMuNWwxMS40IDguOWMyLjEgMS42IDUuMS41IDUuNS0yLjFsMi41LTE0LjE5OTk4Yy42LTMuMjAwMDA0IDQuOC0zLjkwMDAwNSA2LjQtMS4xbDcuMSAxMi41OTk5OGMxLjMgMi4zIDQuNSAyLjQgNS45LjJsNy44LTEyLjE5OTk4YzEuNy0yLjcwMDAwNCA2LTEuODAwMDA1IDYuNCAxLjRsMS43IDE0LjM5OTk4Yy4zIDIuNiAzLjMgMy45IDUuNCAyLjRsMTEuOC04LjNjMi43LTEuOSA2LjIuNiA1LjMgMy44bC0zLjkgMTMuOWMtLjcgMi41IDEuNSA0LjkgNC4xIDQuM2wxNC4xLTMuMWMzLjItLjcgNS41IDMgMy41IDUuNWwtOC43IDExLjNjLTEuNiAyLjEtLjUgNS4xIDIuMSA1LjVsMTQuMiAyLjVjMy4yLjYgMy45IDQuOCAxLjEgNi40bC0xMi42IDcuMWMtMi4zIDEuMy0yLjQgNC41LS4yIDUuOWwxMi4yIDcuOGMyLjcgMS43IDEuOCA2LTEuNCA2LjRsLTE0LjMgMS44Yy0yLjYuMy0zLjkgMy4zLTIuNCA1LjRsOC4zIDExLjhjMS44IDIuOC0uNyA2LjMtMy44IDUuNHoiIGZpbGw9IiNmMGVhY2YiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.72;
  pointer-events: none;
}
.site-footer::before {
  top: -42px;
  left: -28px;
}
.site-footer::after {
  right: -18px;
  bottom: -58px;
  transform: rotate(24deg) scale(1.06);
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(24,21,18,0.1);
  color: var(--muted);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }

.float-register {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--orange), #d94716);
  box-shadow: 0 18px 42px rgba(217,71,22,0.28);
}

/* ── FLOATING TAB ── */
.float-tab-pulse {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  width: 52px; height: 90px;
  border-radius: 6px 0 0 6px;
  background: var(--orange2);
  opacity: 0;
  animation: pulse-tab 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-tab {
  0%,100% { opacity: 0; transform: translateY(-50%) scaleX(1); }
  50% { opacity: 0.18; transform: translateY(-50%) scaleX(1.5); }
}
.float-tab {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 999;
  writing-mode: vertical-rl;
  background: var(--orange);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.6rem 0.8rem;
  text-decoration: none;
  border-radius: 6px 0 0 6px;
  box-shadow: -3px 0 18px rgba(217,84,30,0.3);
  transition: background 0.2s, padding 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.float-tab::after {
  content: '↑';
  writing-mode: horizontal-tb;
  font-size: 0.9rem;
}
.float-tab:hover { background: var(--rust); padding-left: 1.1rem; padding-right: 1.1rem; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem; height: 62px;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1.25rem; letter-spacing: 0.05em;
  color: var(--ink); text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.02em; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--orange); }
.nav-reg {
  background: var(--orange); color: #fff;
  padding: 0.5rem 1.3rem; border-radius: 3px;
  text-decoration: none; font-size: 0.78rem; font-weight: 700;
  font-family: "Poppins", sans-serif; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s;
}
.nav-reg:hover { background: var(--rust); }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ── SHARED ── */
.section { padding: 6rem 3.5rem; }
.container { max-width: 1220px; margin: 0 auto; padding-left:16px;padding-right:16px; }
.eyebrow {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
/* .eyebrow::before { content:''; display:block; width:24px; height:2px; background:var(--orange); flex-shrink:0; } */
.display-title {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.96; letter-spacing: -0.05em; color: var(--ink);
  margin-bottom: 1.2rem;
}
.display-title em {
  font-family: "Poppins", sans-serif;
  font-style: normal; font-weight: 600; color: var(--orange);
}
.body-text { font-size: 1.05rem; color: var(--muted); max-width: 600px; line-height: 1.8; font-weight: 400; }
hr.divider { border: none; border-top: 1px solid var(--border); }

/* ── HERO ── */
#hero {
  background: #fff;
  min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto auto;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -8%; right: -3%;
  width: 55%; height: 80%;
  background: radial-gradient(ellipse, rgba(217,84,30,0.07) 0%, rgba(240,107,48,0.03) 35%, transparent 65%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── HERO SPLIT LAYOUT ── */
.hero-split {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  flex-direction: row !important;
  padding: 5rem 0 3rem !important;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative; z-index: 1;
}
.hero-text { animation: fadeUp 0.6s ease both; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(217,84,30,0.08); border: 1px solid rgba(217,84,30,0.18);
  color: var(--orange); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  margin-bottom: 2rem; width: fit-content;
  animation: fadeUp 0.7s ease both;
}
.hero-pill .blink { animation: blink 1.6s ease-in-out infinite; font-size: 0.45rem; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-h1 {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96; letter-spacing: -0.05em; color: var(--ink);
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-h1 em {
  font-family: "Poppins", sans-serif;
  font-weight: 600; color: var(--orange);
}
.hero-sub {
  max-width: 480px; font-size: 0.95rem; color: var(--muted);
  margin-top: 1.5rem; line-height: 1.78; font-weight: 400;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.3s both;
}
.btn-fill {
  background: var(--orange); color: #fff;
  padding: 0.88rem 2rem; border-radius: 3px;
  text-decoration: none; font-size: 0.82rem; font-weight: 700;
  font-family: "Poppins", sans-serif; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-fill:hover { background: var(--rust); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--ink2);
  padding: 0.88rem 2rem; border-radius: 3px;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  font-family: "Poppins", sans-serif; letter-spacing: 0.06em;
  text-transform: uppercase; border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ── HERO STATS BAR ── */
.hero-stats-bar {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 0 3.5rem;
  position: relative; z-index: 1;
}
.hero-stats {
  display: flex; flex-wrap: wrap;
  animation: fadeUp 1s ease 0.4s both;
}
.hstat {
  flex: 1; min-width: 130px; padding: 1.4rem 0; padding-right: 2rem;
  border-right: 1px solid var(--border);
}
.hstat:last-child { border-right: none; }
.hstat-n {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 2rem; color: var(--ink); line-height: 1;
}
.hstat-n span { color: var(--orange); }
.hstat-l {
  font-size: 0.67rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.25rem; font-weight: 500;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 540px;
  animation: fadeUp 1s ease 0.3s both;
}

/* ── Orbit rings ── */
.orbit-system {
  position: absolute;
  width: 560px; height: 560px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(217,84,30,0.12);
  top: 50%; left: 50%;
  transform-origin: center;
}
.ring-1 {
  width: 300px; height: 300px; margin: -150px 0 0 -150px;
  border-color: rgba(217,84,30,0.25);
  border-width: 2px;
  animation: orbitSpin 18s linear infinite;
}
.ring-2 {
  width: 420px; height: 420px; margin: -210px 0 0 -210px;
  border-color: rgba(217,84,30,0.15);
  border-width: 1.5px;
  animation: orbitSpin 28s linear infinite reverse;
}
.ring-3 {
  width: 560px; height: 560px; margin: -280px 0 0 -280px;
  border-color: rgba(217,84,30,0.08);
  border-width: 1.5px;
  border-style: dashed;
  animation: orbitSpin 38s linear infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}
.od1 { top: -4px; left: 50%; margin-left: -4px; box-shadow: 0 0 14px rgba(217,84,30,0.5); }
.od2 { bottom: -4px; right: 18%; box-shadow: 0 0 12px rgba(217,84,30,0.4); }
.od3 { top: 28%; right: -4px; width: 6px; height: 6px; box-shadow: 0 0 10px rgba(217,84,30,0.35); }

/* Central forge core */
.forge-core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  z-index: 2;
}
.core-glow {
  position: absolute; width: 100px; height: 100px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240,107,48,0.18) 0%, rgba(240,107,48,0.04) 50%, transparent 70%);
  border-radius: 50%;
  animation: coreBreath 3s ease-in-out infinite;
}
@keyframes coreBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}
.core-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(240,107,48,0.06);
  border: 1.5px solid rgba(240,107,48,0.22);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.core-label {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.5rem; letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase; opacity: 0.7;
}

/* ── STAGE CARDS — scattered around terminal ── */
.stage-orbit { position: absolute; inset: 0; pointer-events: none; }
.so-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px; padding: 0.55rem 0.75rem;
  backdrop-filter: blur(10px);
  min-width: 95px;
  opacity: 0;
  pointer-events: auto;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.so-card:hover {
  border-color: rgba(217,84,30,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Scattered positions — clear of center terminal area */
.so1 { top: 2%; left: 40%; transform: rotate(2deg); animation: cardIn 0.45s ease 0.7s forwards, cardFloat1 6s ease-in-out 1.2s infinite; }
.so2 { top: 8%; left: 0%; transform: rotate(-3deg); animation: cardIn 0.45s ease 1.0s forwards, cardFloat2 7s ease-in-out 1.5s infinite; }
.so3 { top: 10%; right: 0%; transform: rotate(1.5deg); animation: cardIn 0.45s ease 1.3s forwards, cardFloat3 5.5s ease-in-out 1.8s infinite; }
.so4 { bottom: 26%; left: -10%; transform: rotate(9deg) !important; animation: cardIn 0.45s ease 1.6s forwards, cardFloat1 6.5s ease-in-out 2.1s infinite; }
.so5 { bottom: 9%; right: 0%; transform: rotate(2.5deg); animation: cardIn 0.45s ease 1.9s forwards, cardFloat2 7.5s ease-in-out 2.4s infinite; }
.so6 { bottom: 4%; left: 32%; transform: rotate(-1.5deg); animation: cardIn 0.45s ease 2.2s forwards, cardFloat3 5s ease-in-out 2.7s infinite; }

@keyframes cardFloat1 {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-5px); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-6px); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-4px); }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.so-num {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.48rem; letter-spacing: 0.1em; color: var(--orange); opacity: 0.5;
}
.so-name {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.82rem; color: var(--ink); line-height: 1.25; margin-top: 0.05rem;
}
.so-bar {
  width: 100%; height: 2.5px; background: rgba(255,255,255,0.06);
  border-radius: 3px; margin-top: 0.45rem; overflow: hidden;
}
.so-fill {
  height: 100%; background: var(--orange2); border-radius: 3px;
  animation: barGrow 1.2s ease 2s both;
}
@keyframes barGrow { from { width: 0 !important; } }

/* ── HERO TERMINAL ── */
.hero-terminal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  background: rgba(12,11,10,0.94);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(240,107,48,0.05);
  opacity: 0;
  animation: termIn 0.5s ease 2s forwards;
  z-index: 3;
}
@keyframes termIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.term-bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.td {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.td:first-child { background: rgb(255,90,90); }
.td:nth-child(2) { background: rgb(255,200,50); }
.td:nth-child(3) { background: rgb(80,200,80); }
.term-title {
  font-family: "Poppins", sans-serif; font-size: 0.65rem;
  color: rgba(250,248,244,0.28); margin-left: auto; letter-spacing: 0.02em;
}
.term-body { padding: 1rem 1.3rem; }
.term-line {
  font-family: "Poppins", sans-serif; font-size: 0.85rem;
  line-height: 1.8; color: rgba(250,248,244,0.42);
  opacity: 0; white-space: nowrap;
}
.tl1 { animation: typeIn 0.25s ease 2.3s forwards; }
.tl2 { animation: typeIn 0.25s ease 2.6s forwards; }
.tl3 { animation: typeIn 0.25s ease 2.9s forwards; }
.tl4 { animation: typeIn 0.25s ease 3.1s forwards; }
.tl5 { animation: typeIn 0.25s ease 3.3s forwards; }
.tl6 { animation: typeIn 0.25s ease 3.6s forwards; }
.tl7 { animation: typeIn 0.25s ease 3.9s forwards; }
@keyframes typeIn {
  from { opacity: 0; transform: translateX(3px); }
  to { opacity: 1; transform: translateX(0); }
}
.t-prompt { color: var(--orange2); font-weight: 700; }
.t-cmd { color: rgba(250,248,244,0.72); }
.t-success { color: #5cb85c; font-weight: 700; }
.t-hot { color: var(--orange2); font-weight: 600; }
.term-cursor {
  display: inline-block; width: 8px; height: 15px;
  background: var(--orange2); margin-top: 0.25rem;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }


/* ── HERO PARTICLES ── */
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--orange2);
  opacity: 0;
  animation: particleDrift linear infinite;
}
.p1 { width: 3px; height: 3px; top: 20%; left: 55%; animation-duration: 14s; animation-delay: 0s; }
.p2 { width: 2px; height: 2px; top: 40%; left: 70%; animation-duration: 18s; animation-delay: 2s; }
.p3 { width: 4px; height: 4px; top: 60%; left: 60%; animation-duration: 12s; animation-delay: 4s; }
.p4 { width: 2px; height: 2px; top: 30%; left: 80%; animation-duration: 16s; animation-delay: 1s; }
.p5 { width: 3px; height: 3px; top: 70%; left: 75%; animation-duration: 20s; animation-delay: 3s; }
.p6 { width: 2px; height: 2px; top: 15%; left: 65%; animation-duration: 15s; animation-delay: 5s; }
.p7 { width: 3px; height: 3px; top: 50%; left: 85%; animation-duration: 17s; animation-delay: 7s; }
.p8 { width: 2px; height: 2px; top: 80%; left: 55%; animation-duration: 13s; animation-delay: 6s; }

@keyframes particleDrift {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  10% { opacity: 0.4; }
  50% { opacity: 0.15; transform: translate(-30px, -60px) scale(1); }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translate(20px, -120px) scale(0.5); }
}
.hero-org-bar {
  background: var(--cream); border-top: 1px solid var(--border);
  padding: 0.9rem 3.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.67rem; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.hero-org-bar strong { color: var(--ink2); font-weight: 600; }

/* ── TICKER ── */
#ticker { background: var(--orange); overflow: hidden; padding: 0; }
.ticker-track {
  display: flex; white-space: nowrap;
  animation: tickscroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.tick-item {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.9rem 2rem;
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-right: 1px solid rgba(255,255,255,0.18);
}
@keyframes tickscroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── ABOUT ── */
#about { background: var(--cream); }

/* ── ABOUT HERO GRID ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-left { padding-top: 0.5rem; }
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

/* ── WIDGET CARDS ── */
.widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.3rem 1.4rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.widget:hover {
  border-color: rgba(217,84,30,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.w-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.w-tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  background: rgba(217,84,30,0.07); padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.w-val {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.75rem; color: var(--ink);
}

/* ── DONUT CHART ── */
.w-donut {
  position: relative; width: 130px; height: 130px; margin: 0 auto 0.8rem;
}
.w-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-seg { animation: segPulse 4s ease-in-out infinite; }
.s1 { animation-delay: 0s; } .s2 { animation-delay: 0.3s; }
.s3 { animation-delay: 0.6s; } .s4 { animation-delay: 0.9s; }
.s5 { animation-delay: 1.2s; } .s6 { animation-delay: 1.5s; }
@keyframes segPulse {
  0%, 100% { opacity: 0.4; stroke-width: 8; }
  50% { opacity: 1; stroke-width: 11; }
}

.donut-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--ink); line-height: 1;
}
.donut-center span {
  font-size: 0.55rem; font-weight: 600; color: var(--muted);
  margin-left: 1px; letter-spacing: 0.02em;
}

.w-legend {
  display: flex; flex-wrap: wrap; gap: 0.3rem 0.7rem; justify-content: center;
}
.w-legend span {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.6rem; color: var(--muted); font-weight: 500;
}
.w-legend i {
  width: 7px; height: 7px; border-radius: 2px; display: block; flex-shrink: 0;
}

/* ── AREA CHART ── */
.w-chart { position: relative; margin-bottom: 0.6rem; }
.w-chart svg { width: 100%; height: 80px; display: block; }
.chart-area {
  animation: areaPulse 5s ease-in-out infinite;
}
@keyframes areaPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.chart-line {
  stroke-dasharray: 300;
  animation: lineFlow 3s linear infinite;
}
@keyframes lineFlow {
  0% { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: 0; }
}
.chart-dot { animation: dotScale 2s ease-in-out infinite; }
@keyframes dotScale {
  0%, 100% { r: 3; } 50% { r: 5; }
}
.chart-ping {
  animation: pingLoop 2s ease-in-out infinite;
}
@keyframes pingLoop {
  0% { r: 4; opacity: 0.8; } 70% { r: 12; opacity: 0; } 100% { r: 12; opacity: 0; }
}
.w-chart-labels {
  display: flex; justify-content: space-between;
  font-size: 0.55rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.02em; padding: 0.3rem 0 0;
}

/* Mini stats row */
.w-stat-row {
  display: flex; gap: 0.5rem;
}
.w-mini {
  flex: 1; text-align: center;
  padding: 0.45rem 0.2rem;
  background: var(--paper); border-radius: 6px;
}
.wm-n {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.72rem; color: var(--ink); line-height: 1.2;
}
.wm-l {
  font-size: 0.52rem; color: var(--muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── RADIAL PROGRESS ── */
.w-radial-row {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: 0.3rem;
}
.w-radial {
  position: relative; width: 80px; height: 80px; flex-shrink: 0;
}
.w-radial svg { width: 100%; height: 100%; }
.radial-fill {
  animation: radialLoop 3.5s ease-in-out infinite;
}
@keyframes radialLoop {
  0% { stroke-dashoffset: 201; }
  50% { stroke-dashoffset: 40; }
  100% { stroke-dashoffset: 201; }
}
.radial-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--orange); line-height: 1;
}
.radial-label span {
  font-size: 0.48rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.w-radial-info { display: flex; flex-direction: column; gap: 0.3rem; }
.wri-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; color: var(--muted); font-weight: 400;
}
.wri-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--border);
}
.wri-dot.done { background: var(--orange); }
.wri-dot.active {
  background: var(--orange2);
  box-shadow: 0 0 6px rgba(240,107,48,0.4);
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* ── HORIZONTAL BAR CHART ── */
.w-hbars { display: flex; flex-direction: column; gap: 0.55rem; }
.hbar-row {
  display: grid; grid-template-columns: 60px 1fr 36px; gap: 0.5rem;
  align-items: center;
}
.hbar-label {
  font-size: 0.62rem; font-weight: 600; color: var(--muted);
  text-align: right; white-space: nowrap;
}
.hbar-track {
  height: 8px; background: var(--paper); border-radius: 8px; overflow: hidden;
}
.hbar-fill {
  height: 100%; border-radius: 8px;
  background: var(--c, var(--orange));
  animation: hbarLoop 4s ease-in-out var(--dl, 0s) infinite;
}
@keyframes hbarLoop {
  0% { width: 0; }
  40%, 70% { width: var(--w); }
  100% { width: 0; }
}
.hbar-pct {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.65rem; color: var(--ink);
}

@media (max-width:900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-right { grid-template-columns: 1fr 1fr; }
}
@media (max-width:550px) {
  .about-right { grid-template-columns: 1fr; }
}
.about-2col { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 5rem; margin-top: 4rem; align-items: start; }
.about-prose p {color: var(--ink2); line-height: 1.85; margin-bottom: 1.2rem; font-weight: 400; }
.about-prose p strong { color: var(--ink); font-weight: 600; }
.about-callout {
  margin-top: 1.8rem; padding: 1.4rem 1.6rem;
  background: var(--paper); border-left: 3px solid var(--orange);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem; color: var(--ink2); line-height: 1.6;
}
.about-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.acard {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 5px; padding: 1.4rem 1.5rem;
  transition: border-color 0.2s;
}
.acard:hover { border-color: rgba(217,84,30,0.35); }
.acard-t {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.83rem; color: var(--ink); margin-bottom: 0.3rem;
}
.acard p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; font-weight: 400; }

/* ── ABOUT PAGE ── */

/* Hero — full bg image */
.about-hero {
  position: relative;
  padding: 10rem 3.5rem 5rem;
  overflow: hidden;
  min-height: 520px;
  /* display: flex;
  align-items: flex-end; */
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;
  z-index: 0;
}

.about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 10, 8, 0.88), rgba(12, 10, 8, 0.4) 50%, rgba(12, 10, 8, 0.25));
  pointer-events: none;
}

/* ───────────────────────────────────────────────
   Shared overrides for cp / ft / ph pages
   Stops global h1/h2 rules from squashing local sizes
   ─────────────────────────────────────────────── */
.career-path-page h1,
.career-path-page h2,
.career-path-page h3,
.founder-track-page h1,
.founder-track-page h2,
.founder-track-page h3,
.philosophy-page h1,
.philosophy-page h2,
.philosophy-page h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  max-width: none;
}

/* ───────────────────────────────────────────────
   CAREER PATH — split-stat hero + logo wall
   ─────────────────────────────────────────────── */
.cp-hero {
  background: linear-gradient(135deg, #fff8f0 0%, #faf3e9 100%);
  padding: 9rem 0 5rem;
  border-bottom: 1px solid rgba(24,21,18,0.06);
}
.cp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cp-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E85532;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232,85,50,0.1);
  margin-bottom: 1.2rem;
}
.cp-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1rem;
}
.cp-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 1.6rem;
}
.cp-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(232,85,50,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cp-cta:hover { transform: translateY(-2px); }
.cp-cta--big { padding: 18px 36px; font-size: 0.95rem; margin-top: 1.5rem; }
.cp-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cp-stat {
  background: #fff;
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cp-stat strong {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E85532;
  line-height: 1;
}
.cp-stat span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.cp-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0 0 2rem;
}
.cp-partners {
  padding: 4rem 0;
  background: #fff;
}
.cp-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  justify-items: center;
}
.cp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.25s, opacity 0.25s;
}
.cp-logo:hover { filter: none; opacity: 1; }
.cp-logo img { height: 38px; max-width: 120px; object-fit: contain; }

.cp-process {
  padding: 5rem 0;
  background: #faf3e9;
}
.cp-process-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.cp-process-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0;
}
.cp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.cp-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(232,85,50,0.4) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.cp-step {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.6rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(24,21,18,0.06);
  text-align: center;
}
.cp-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: -3rem auto 1rem;
  box-shadow: 0 8px 20px rgba(232,85,50,0.3);
}
.cp-step h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.cp-step p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.cp-quote-section { padding: 4rem 0; background: #fff; }
.cp-quote-card {
  max-width: 760px;
  background: linear-gradient(135deg, rgba(232,85,50,0.06), rgba(255,179,107,0.08));
  border: 1px solid rgba(232,85,50,0.15);
  border-radius: 24px;
  padding: 3rem 3rem;
  text-align: center;
  position: relative;
}
.cp-quote-mark { width: 36px; color: var(--orange); margin-bottom: 1rem; }
.cp-quote-card blockquote {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.cp-quote-card cite { display: flex; flex-direction: column; gap: 4px; font-style: normal; }
.cp-quote-card cite strong { font-size: 0.95rem; color: var(--ink); }
.cp-quote-card cite span { font-size: 0.85rem; color: var(--muted); }

.cp-cta-section { padding: 5rem 0; text-align: center; background: #faf3e9; }
.cp-cta-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.cp-cta-title em { font-style: normal; color: var(--orange); }
.cp-cta-section p { color: var(--muted); margin: 0 auto 1rem; max-width: 480px; }

@media (max-width: 820px) {
  .cp-hero { padding: 7rem 0 3rem; }
  .cp-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cp-hero-stats { grid-template-columns: 1fr 1fr; }
  .cp-logos { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .cp-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .cp-steps::before { display: none; }
  .cp-quote-card { padding: 2rem 1.6rem; }
  .cp-quote-card blockquote { font-size: 1.15rem; }
}

/* ───────────────────────────────────────────────
   FOUNDER TRACK — dark editorial timeline
   ─────────────────────────────────────────────── */
.ft-hero {
  background: #0e0c08;
  color: #fff9ec;
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.ft-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ft-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.ft-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(14,12,8,0.96) 0%,
    rgba(14,12,8,0.92) 30%,
    rgba(14,12,8,0.55) 60%,
    rgba(14,12,8,0.1) 100%);
  pointer-events: none;
}
.ft-hero-inner { position: relative; z-index: 1; width: 100%; }
.ft-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 8px 16px;
  border: 1px solid rgba(232,85,50,0.4);
  border-radius: 4px;
  margin-bottom: 2rem;
}
.ft-display {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1.4rem;
}
.ft-display-line { display: block; }
.ft-display-line--accent { color: var(--orange); }
.ft-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,249,236,0.7);
  max-width: 600px;
  margin: 0 0 2rem;
}
.ft-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.ft-hero-link {
  color: rgba(255,249,236,0.85);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,249,236,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.ft-hero-link:hover { color: var(--orange); border-color: var(--orange); }

/* Proof bar */
.ft-proof {
  background: #faf3e9;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(24,21,18,0.06);
}
.ft-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.ft-proof-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(24,21,18,0.1);
}
.ft-proof-item:last-child { border-right: 0; }
.ft-proof-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ft-proof-item span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ft-journey-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0.6rem 0 0;
  max-width: 520px;
}

.ft-journey { padding-top: 4rem; background: #fff; }
.ft-journey-head { max-width: 720px; margin: 0 0 4rem; }
.ft-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.6rem;
}
.ft-h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.ft-h2 em { font-style: normal; color: var(--orange); }
.ft-h2--center { text-align: center; max-width: 700px; margin: 0 auto 3rem; }

.ft-timeline {
  position: relative;
  padding-left: 0;
}
.ft-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(232,85,50,0.12));
}
.ft-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.6rem;
  margin-bottom: 2rem;
  position: relative;
  align-items: start;
}
.ft-step:last-child { margin-bottom: 0; }
.ft-step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1f1b17;
  color: #fff9ec;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #fff;
}
.ft-step-body { padding-top: 0.4rem; }
.ft-step-when {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.3rem;
}
.ft-step-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.ft-step-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.ft-support { padding: 6rem 0; background: #faf3e9; }
.ft-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ft-support-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(24,21,18,0.06);
  text-align: center;
}
.ft-support-stat {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f1b17;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.ft-support-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.ft-spotlight { padding: 6rem 0; background: #fff; }
.ft-spotlight-card {
  background: linear-gradient(135deg, #1f1b17, #2d2419);
  color: #fff9ec;
  border-radius: 28px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ft-spotlight-card::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,85,50,0.18), transparent 60%);
  pointer-events: none;
}
.ft-spotlight-quote { position: relative; z-index: 1; }
.ft-spotlight-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
}
.ft-spotlight-quote blockquote {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff9ec;
  margin: 0 0 1.4rem;
  letter-spacing: -0.01em;
}
.ft-spotlight-quote cite { font-style: normal; }
.ft-spotlight-quote cite strong { display: block; color: #fff9ec; font-size: 0.95rem; }
.ft-spotlight-quote cite span { color: rgba(255,249,236,0.6); font-size: 0.85rem; }
.ft-spotlight-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}
.ft-spotlight-pillars div {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--orange);
  background: rgba(255,249,236,0.04);
  border-radius: 0 12px 12px 0;
}
.ft-spotlight-pillars strong {
  display: block;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.ft-spotlight-pillars span { color: rgba(255,249,236,0.7); font-size: 0.82rem; }

.ft-cta {
  padding: 6rem 0;
  background: #0e0c08;
  color: #fff9ec;
  text-align: center;
}
.ft-cta-inner h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.ft-cta-inner h2 em { font-style: normal; color: var(--orange); }
.ft-cta-inner p { color: rgba(255,249,236,0.7); margin: 0 0 2rem; }
.ft-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s;
}
.ft-cta-btn:hover { transform: translateY(-2px); }

@media (max-width: 820px) {
  .ft-hero { padding: 7rem 0 4rem; min-height: 460px; }
  .ft-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .ft-proof-item { padding: 0.6rem 1rem; }
  .ft-proof-item:nth-child(2) { border-right: 0; }
  .ft-timeline { padding-left: 0; }
  .ft-timeline::before { left: 23px; }
  .ft-step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .ft-spotlight-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
}

/* ───────────────────────────────────────────────
   PHILOSOPHY — typographic manifesto
   ─────────────────────────────────────────────── */
.ph-hero {
  padding: 9rem 0 5rem;
  background: #14110d;
  position: relative;
  overflow: hidden;
  color: #fff9ec;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.ph-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ph-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.ph-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(15,12,9,0.96) 0%,
    rgba(15,12,9,0.9) 30%,
    rgba(15,12,9,0.55) 60%,
    rgba(15,12,9,0.12) 100%);
  pointer-events: none;
}
.ph-hero-inner { position: relative; z-index: 1; width: 100%; }
.ph-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,249,236,0.75);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 2rem;
}
.ph-headline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff9ec;
  margin: 0 0 1.2rem;
  max-width: 880px;
}
.ph-headline span {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.ph-headline span::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 14px;
  background: rgba(232,85,50,0.2);
  z-index: -1;
  transform: skew(-4deg);
}
.ph-sub {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,249,236,0.65);
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
}
.ph-headline span::after {
  background: rgba(232,85,50,0.35);
}
.ph-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff9ec;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid var(--orange);
  transition: gap 0.25s, color 0.25s;
}
.ph-hero-cta:hover { gap: 14px; color: var(--orange); }
.ph-hero-cta svg { transition: transform 0.25s; }
.ph-hero-cta:hover svg { transform: translateY(2px); }

/* ── Manifesto: intro + grid in one cohesive block ── */
.ph-manifesto {
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #faf3e9 0%, #fff8f0 100%);
}
.ph-manifesto-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.ph-manifesto-eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  border: 1px solid rgba(232,85,50,0.25);
  border-radius: 999px;
  background: rgba(232,85,50,0.06);
  margin-bottom: 1.2rem;
}
.ph-manifesto-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.8rem;
}
.ph-manifesto-title em {
  font-style: normal;
  color: var(--orange);
}
.ph-manifesto-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.ph-belief {
  position: relative;
  background: #fff;
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 18px;
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.ph-belief::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffb36b);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ph-belief:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(53,32,13,0.08);
  border-color: rgba(232,85,50,0.3);
}
.ph-belief:hover::before { opacity: 1; }

.ph-num {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.ph-belief h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.ph-belief p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ── Pull quote ── */
.ph-pull {
  padding: 7rem 0;
  background: #14110d;
  color: #fff9ec;
  position: relative;
  overflow: hidden;
}
.ph-pull::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,85,50,0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(232,85,50,0.08), transparent 55%);
  pointer-events: none;
}
.ph-pull-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.ph-pull-mark {
  width: 40px;
  color: var(--orange);
  margin: 0 auto 1.6rem;
  display: block;
}
.ph-pull-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 1.4rem;
}
.ph-pull-text em {
  font-style: normal;
  color: var(--orange);
}
.ph-pull-attr {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,249,236,0.55);
  margin: 0;
}

/* ── CTA card ── */
.ph-cta {
  padding: 5rem 0 7rem;
  background: #fff;
}
.ph-cta-card {
  background: linear-gradient(135deg, #fff8f0 0%, #faf3e9 100%);
  border: 1px solid rgba(232,85,50,0.18);
  border-radius: 28px;
  padding: 3.4rem;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2.4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ph-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232,85,50,0.12), transparent 60%);
  pointer-events: none;
}
.ph-cta-copy { position: relative; z-index: 1; }
.ph-cta-eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.ph-cta-h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.ph-cta-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}
.ph-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
  min-width: 220px;
}
.ph-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff9ec;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 12px 28px rgba(20,17,13,0.18);
}
.ph-cta-btn:hover { background: var(--orange); transform: translateY(-2px); }
.ph-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
  transition: gap 0.2s;
}
.ph-cta-link:hover { gap: 14px; }

@media (max-width: 980px) {
  .ph-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ph-cta-card { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.4rem; }
  .ph-cta-actions { min-width: 0; }
}
@media (max-width: 640px) {
  .ph-hero { padding: 8rem 0 3rem; min-height: 440px; }
  .ph-manifesto { padding: 4rem 0 5rem; }
  .ph-manifesto-head { margin-bottom: 2rem; }
  .ph-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .ph-belief { padding: 1.6rem 1.4rem; }
  .ph-pull { padding: 4.5rem 0; }
  .ph-cta { padding: 3rem 0 4.5rem; }
  .ph-cta-card { padding: 2rem 1.6rem; }
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  max-width: 640px;
}

.about-hero .display-title {
  color: #f7f0e6;
  margin-bottom: 0.9rem;
}

.about-hero .display-title em {
  color: var(--orange);
}

.about-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 2rem;
}

.about-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-hero-stat strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-hero-stat span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.4);
}

/* Cards section */
.about-content {
  padding: 5rem 0;
  background: #fff;
}
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.about-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24,21,18,0.12);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43,28,15,0.10);
  border-color: rgba(234,90,42,0.2);
}
.about-card-num {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(234,90,42,0.1);
  letter-spacing: -0.04em;
}
.about-card-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.3rem;
}
.about-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0.3rem 0 0.7rem;
}
.about-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Quote block */
.about-quote-block {
  margin-top: 2.5rem;
  padding: 2.2rem 2.5rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234,90,42,0.18), transparent),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(129,162,239,0.08), transparent),
    linear-gradient(160deg, #12100d, #1a1510 40%, #141118 100%);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.about-quote-block::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(234,90,42,0.28), rgba(255,255,255,0.05) 40%, rgba(129,162,239,0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-quote-block blockquote {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #f7f0e6;
  letter-spacing: -0.03em;
  line-height: 1.3;
  /* max-width: 36ch; */
}

/* Team / Who's behind Labs90 */
.about-team {
  padding: 5rem 0;
  background: #fff;
}
.team-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.team-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.6rem 0 0;
}
.team-title em {
  font-style: normal;
  color: var(--orange);
}
.team-lede {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.team-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 1.4rem 0 0;
  letter-spacing: 0.02em;
}

.team-logo {
  height: 44px;
  display: flex;
  align-items: center;
  margin: 0 0 0.4rem;
}
.team-logo img {
  max-height: 100%;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.4rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.team-link:hover { gap: 12px; }
.team-card {
  background: #fff;
  border: 1px solid rgba(24, 21, 18, 0.08);
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.team-card:hover {
  border-color: rgba(234, 90, 42, 0.25);
  box-shadow: 0 14px 32px rgba(53, 32, 13, 0.08);
  transform: translateY(-3px);
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #d94716 100%);
  margin-bottom: 0.4rem;
  box-shadow: 0 8px 20px rgba(234, 90, 42, 0.22);
}
.team-role {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.team-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.team-bio {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0.3rem 0 0;
}
.team-role {
  font-size: 0.66rem;
  margin-bottom: 0;
}

.team-advisors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(234, 90, 42, 0.08) 0%, rgba(129, 162, 239, 0.06) 100%);
  border: 1px solid rgba(234, 90, 42, 0.12);
}
.team-advisors-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.team-advisors-head .eyebrow {
  margin-bottom: 0.3rem;
}
.team-advisors-head h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.team-advisors-head p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}
.team-advisors-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(234, 90, 42, 0.25);
  transition: gap 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.team-advisors-cta:hover {
  gap: 14px;
  background: var(--orange);
  color: #fff;
}

@media (max-width: 820px) {
  .about-team {
    padding: 3.5rem 0;
  }
  .team-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .team-card {
    padding: 1.6rem 1.6rem 1.4rem;
  }
  .team-advisors {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 1.6rem;
    gap: 1rem;
  }
}

/* Difference section */
.about-diff {
  padding: 5rem 0;
  background: var(--cream);
}

/* CTA section */
.about-cta {
  padding: 5rem 0;
  background: #fff;
}
.about-cta-card {
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234,90,42,0.18), transparent),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(129,162,239,0.08), transparent),
    linear-gradient(160deg, #12100d, #1a1510 40%, #141118 100%);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.about-cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(234,90,42,0.28), rgba(255,255,255,0.05) 40%, rgba(129,162,239,0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-cta-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f7f0e6;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 0.8rem;
}
.about-cta-title em { color: var(--orange); }
.about-cta-body {
  font-size: 1rem;
  color: rgba(247,240,230,0.5);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.about-cta .reg-btn {
  margin: 0 auto;
}

/* ── CONCLAVE PAGE HERO ── */
.conclave-hero {
  position: relative;
  padding: 10rem 3.5rem 5rem;
  overflow: hidden;
  min-height: 480px;
  /* display: flex;
  align-items: flex-end; */
}
.conclave-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;
  z-index: 0;
}
.conclave-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12,10,8,0.88), rgba(12,10,8,0.4) 50%, rgba(12,10,8,0.25));
  pointer-events: none;
}
.conclave-hero .container {
  position: relative;
  z-index: 1;
}
.conclave-hero-content { max-width: 600px; }
.conclave-hero .display-title {
  color: #f7f0e6;
  margin-bottom: 0.5rem;
}
.conclave-hero .display-title em { color: var(--orange); }

/* Better contextual infographics */
.av-box {
  fill: rgba(240,107,48,0.12);
  stroke: rgba(240,107,48,0.5);
  stroke-width: 1.2;
  animation: avBoxPulse 2.2s ease-in-out infinite;
}
.av-box.x2 { animation-delay: 0.15s; } .av-box.x3 { animation-delay: 0.3s; }
.av-box.x4 { animation-delay: 0.45s; } .av-box.x5 { animation-delay: 0.6s; } .av-box.x6 { animation-delay: 0.75s; }
.av-step {
  stroke: rgba(240,107,48,0.68);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 10;
  animation: avStepMove 1.8s linear infinite;
}
.av-step.s2 { animation-delay: 0.1s; } .av-step.s3 { animation-delay: 0.2s; }
.av-step.s4 { animation-delay: 0.3s; } .av-step.s5 { animation-delay: 0.4s; }
@keyframes avBoxPulse {
  0%, 100% { fill: rgba(240,107,48,0.12); }
  45% { fill: rgba(240,107,48,0.42); }
}
@keyframes avStepMove {
  from { stroke-dashoffset: 10; }
  to { stroke-dashoffset: 0; }
}

.av-pill { fill: rgba(240,107,48,0.14); stroke: rgba(240,107,48,0.5); stroke-width: 1.2; }
.av-curve {
  stroke: rgba(240,107,48,0.72);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 26;
  animation: avCurveDraw 2.4s linear infinite;
}
.av-curve.c2 { animation-delay: 0.3s; }
.av-dot { fill: rgba(240,107,48,0.84); animation: avDotBlink 1.4s ease-in-out infinite; }
.av-dot.d2 { animation-delay: 0.15s; }
.av-dot.d3 { animation-delay: 0.3s; }
@keyframes avCurveDraw {
  from { stroke-dashoffset: 26; opacity: 0.5; }
  to { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes avDotBlink {
  0%, 100% { r: 3.2; opacity: 0.45; }
  50% { r: 4.8; opacity: 1; }
}

.av-phone { fill: rgba(240,107,48,0.12); stroke: rgba(240,107,48,0.5); stroke-width: 1.2; }
.av-line { fill: rgba(240,107,48,0.62); animation: avLinePulse 2s ease-in-out infinite; }
.av-line.l2 { animation-delay: 0.2s; }
.av-user { fill: rgba(240,107,48,0.36); animation: avUserUp 2.4s ease-in-out infinite; }
.av-user.u2 { animation-delay: 0.12s; } .av-user.u3 { animation-delay: 0.24s; }
.av-user.u4 { animation-delay: 0.36s; } .av-user.u5 { animation-delay: 0.48s; } .av-user.u6 { animation-delay: 0.6s; }
@keyframes avLinePulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
@keyframes avUserUp {
  0%, 100% { cy: 22; fill: rgba(240,107,48,0.36); }
  50% { cy: 18; fill: rgba(240,107,48,0.88); }
}

.av-bar { fill: rgba(240,107,48,0.72); animation: avBarRise 2.6s ease-in-out infinite; }
.av-bar.b1 { animation-delay: 0s; } .av-bar.b2 { animation-delay: 0.15s; } .av-bar.b3 { animation-delay: 0.3s; }
.av-trace {
  stroke: rgba(240,107,48,0.82);
  stroke-width: 2.1;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 120;
  animation: avTraceDraw 2.6s ease-in-out infinite;
}
.av-tip { fill: rgba(240,107,48,0.9); animation: avTipPulse 1.5s ease-in-out infinite; }
.av-deck { fill: rgba(240,107,48,0.26); animation: avDeckGlow 2s ease-in-out infinite; }
@keyframes avBarRise {
  0%, 100% { transform: translateY(2px); opacity: 0.55; }
  50% { transform: translateY(-2px); opacity: 1; }
}
@keyframes avTraceDraw {
  0%, 100% { stroke-dashoffset: 120; opacity: 0.35; }
  45%, 70% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes avTipPulse {
  0%, 100% { r: 2.8; opacity: 0.45; }
  50% { r: 4.4; opacity: 1; }
}
@keyframes avDeckGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.85; }
}

/* ── PROGRAM PIPELINE ── */
.prog-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 3rem; margin-bottom: 0.5rem;
}
.prog-top .display-title { margin-bottom: 0; }

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  margin-top: 3rem;
  padding-top: 2rem;
}

/* Static horizontal line */
.pipe-line {
  position: absolute;
  top: 2.3rem; left: 3%; right: 3%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #d94716);
  border-radius: 3px;
  z-index: 0;
}

.pipe-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Static dot on line */
.ps-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  margin-bottom: 1rem;
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 2;
}
.pipe-stage:hover .ps-dot {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(217,84,30,0.12);
}

/* Card */
.ps-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.2rem;
  width: 100%;
  height: 100%;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pipe-stage:hover .ps-card {
  border-color: rgba(217,84,30,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.ps-week {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.4rem;
}
.ps-num {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 1.8rem; color: var(--paper); line-height: 1;
  letter-spacing: -0.02em;
}
.ps-name {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--ink); margin: 0.15rem 0 0.5rem;
  line-height: 1.2;
}
.ps-desc {
  font-size: 0.75rem; color: var(--muted); line-height: 1.55;
  margin-bottom: 0.7rem;
}
.ps-tags {
  display: flex; flex-wrap: wrap; gap: 0.3rem;
}
.ps-tags span {
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--orange); background: rgba(217,84,30,0.06);
  border: 1px solid rgba(217,84,30,0.12);
  padding: 0.15rem 0.45rem; border-radius: 100px;
}

@media (max-width:1100px) {
  .pipeline { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .pipe-line { display: none; }
}
@media (max-width:700px) {
  .pipeline { grid-template-columns: 1fr 1fr; }
  .prog-top { flex-direction: column; gap: 1rem; }
}
@media (max-width:500px) {
  .pipeline { grid-template-columns: 1fr; }
}

/* ── DIFF TABLE ── */
#difference { background: var(--paper); }
.dtable-wrap { margin-top: 2.8rem; overflow-x: auto; }
table.dtable { width: 100%; border-collapse: collapse; }
.dtable th {
  padding: 0.85rem 1.3rem; text-align: left;
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid var(--border);
}
.dtable th.hl { color: var(--orange); border-bottom-color: var(--orange); }
.dtable td {
  padding: 0.95rem 1.3rem; font-size: 0.88rem;
  border-bottom: 1px solid var(--border); color: var(--muted);
}
.dtable td:first-child { color: var(--ink); font-weight: 500; }
.dtable td.forge { color: var(--ink2); font-weight: 500; }
.dtable tr:last-child td { border-bottom: none; }
.dtable tr:hover td { background: var(--warm); }
.tag-unique {
  display: inline-block; background: rgba(217,84,30,0.08);
  color: var(--orange); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 0.12rem 0.5rem; border-radius: 3px; margin-left: 0.5rem;
}

.about-page #difference {
  background:
    radial-gradient(circle at 82% 10%, rgba(217,84,30,0.05), transparent 30%),
    var(--paper);
}
.about-page .diff-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 2.4rem;
  align-items: end;
}
.about-page .diff-head .display-title { margin-bottom: 0; }
.about-page .diff-head .body-text {
  justify-self: end;
  max-width: 420px;
  margin-bottom: 0.25rem;
}
.about-page .dtable-wrap {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.about-page .dtable th {
  background: rgba(243,240,234,0.9);
}
.about-page .dtable tr:hover td {
  background: rgba(240,107,48,0.06);
}

/* ── PHASES ── */

.phases { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 3.2rem; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; }
.phase-col { padding: 2.2rem 1.8rem; border-right: 1px solid var(--border); }
.phase-col:last-child { border-right: none; }
.phase-col.dark { background: var(--ink); }
.phase-n { font-family: "Poppins", sans-serif; font-weight:800; font-size:2.8rem; line-height:1; color:var(--border); }
.phase-col.dark .phase-n { color: rgba(240,107,48,0.22); }
.phase-wk { font-size:0.63rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--orange); margin:0.7rem 0 0.25rem; }
.phase-nm { font-family: "Poppins", sans-serif; font-weight:700; font-size:1.1rem; color:var(--ink); margin-bottom:0.9rem; }
.phase-col.dark .phase-nm { color:#FAF8F4; }
.phase-list { list-style:none; }
.phase-list li { font-size:0.8rem; color:var(--muted); padding:0.35rem 0 0.35rem 1rem; position:relative; line-height:1.5; }
.phase-col.dark .phase-list li { color:rgba(250,248,244,0.45); }
.phase-list li::before { content:'›'; position:absolute; left:0; color:var(--orange); font-weight:700; }
.phase-tag {
  display:inline-block; margin-top:1.4rem;
  background:rgba(217,84,30,0.09); color:var(--orange);
  border:1px solid rgba(217,84,30,0.2);
  font-size:0.63rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  padding:0.25rem 0.6rem; border-radius:3px;
}
.phase-col.dark .phase-tag { background:rgba(240,107,48,0.12); border-color:rgba(240,107,48,0.25); }
.wtable-wrap { margin-top: 2.5rem; overflow-x: auto; }
table.wtable { width:100%; border-collapse:collapse; }
.wtable th {
  background:var(--paper); padding:0.75rem 1.1rem;
  text-align:left; font-family: "Poppins", sans-serif; font-weight:700;
  font-size:0.63rem; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--muted); border-bottom:2px solid var(--border);
}
.wtable td { padding:0.8rem 1.1rem; font-size:0.83rem; border-bottom:1px solid var(--border); color:var(--ink2); }
.wtable td:first-child { font-family: "Poppins", sans-serif; font-weight:700; color:var(--orange); white-space:nowrap; }
.wtable tr:hover td { background:var(--warm); }
.wtable tr:last-child td { border-bottom:none; }

/* ── CONCLAVE ── */
#conclave { background: #fff; }
.conclave-2col { display:grid; grid-template-columns:1.1fr 0.9fr; gap:3rem; align-items:start; }
.conclave-p { font-size:1.05rem; color:var(--muted); line-height:1.8; max-width:600px; }

/* Old conclave styles — kept for conclave.html subpage */
/* Schedule */
.sched { margin-top:2rem; }
.sched-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(24,21,18,0.06);
}
.sched-row:last-child { border-bottom: none; }
.sched-t {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); padding-top: 0.15rem;
}
.sched-e strong {
  display: block; font-family: "Poppins", sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 0.2rem;
}
.sched-e span { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* Conclave facts */
.cfacts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.cfact {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 24px;
  padding: 1.6rem;
}
.cfact-n {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 2.4rem; color: var(--orange); line-height: 1; letter-spacing: -0.03em;
}
.cfact-l {
  font-size: 0.72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; font-weight: 700;
}

/* Audience box */
.caud-box {
  margin-top: 1rem;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 24px;
  padding: 1.4rem 1.6rem;
}
.caud-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.caud-box strong { color: var(--ink); }

/* ── CONCLAVE — INDEX PAGE LAYOUT ── */
.cv-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 3rem; margin-bottom: 3rem;
}
.cv-top .display-title { margin-bottom: 0; }
.cv-top .conclave-p, .cv-top .body-text { max-width: 420px; margin-bottom: 0; }

/* Animated icons */
.cv-ico {
  width: 44px; height: 44px; margin-bottom: 0.9rem;
}
.cv-ico svg { width: 100%; height: 100%; overflow: visible; }

/* Draw animation for outlines */
.cv-ico-anim {
  animation: icoDrawLoop 3.5s ease infinite;
}
.cv-sched-card:nth-child(1) .cv-ico-anim { --len: 44; }
.cv-sched-card:nth-child(2) .cv-ico-anim { --len: 24; }
.cv-sched-card:nth-child(4) .cv-ico-anim { --len: 52; }
@keyframes icoDrawLoop {
  0% { stroke-dashoffset: var(--len, 50); }
  35%, 65% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: var(--len, 50); }
}

/* Sound waves — keynote mic */
.cv-wave {
  opacity: 0;
  animation: wavePulse 2s ease-in-out infinite;
}
.cv-wave.w1 { animation-delay: 0s; }
.cv-wave.w2 { animation-delay: 0.3s; }
@keyframes wavePulse {
  0%, 100% { opacity: 0; transform: translateX(0); }
  30%, 60% { opacity: 0.7; transform: translateX(1px); }
}

/* Signal bars — live demo */
.cv-bar { opacity: 0; animation: barBlink 2s ease-in-out infinite; }
.cv-bar.cb1 { animation-delay: 0s; }
.cv-bar.cb2 { animation-delay: 0.25s; }
.cv-bar.cb3 { animation-delay: 0.5s; }
@keyframes barBlink {
  0%, 100% { opacity: 0.15; }
  40%, 60% { opacity: 1; }
}

/* Connection lines — networking */
.cv-conn { opacity: 0; animation: connPulse 3s ease-in-out infinite; }
.cv-conn.c1 { animation-delay: 0s; }
.cv-conn.c2 { animation-delay: 0.4s; }
.cv-conn.c3 { animation-delay: 0.8s; }
@keyframes connPulse {
  0%, 100% { opacity: 0.1; }
  30%, 70% { opacity: 0.9; }
}

/* Trophy sparkles — awards */
.cv-sparkle { opacity: 0; animation: sparklePop 2.5s ease-in-out infinite; }
.cv-sparkle.sp1 { animation-delay: 0s; }
.cv-sparkle.sp2 { animation-delay: 0.5s; }
.cv-sparkle.sp3 { animation-delay: 1s; }
@keyframes sparklePop {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  30%, 50% { opacity: 1; transform: scale(1.3); }
  70% { opacity: 0.3; transform: scale(0.8); }
}

.cv-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 24px; overflow: hidden;
  margin-bottom: 2.5rem;
}
.cv-stat {
  background: #fff;
  padding: 1.6rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.cv-stat:hover { background: var(--warm); }
.cv-stat-n {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 2rem; color: var(--orange); line-height: 1;
}
.cv-stat-l {
  font-size: 0.62rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.3rem; font-weight: 500;
}

.cv-sched {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.cv-sched-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.4rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.cv-sched-card::before {
  content: ''; position: absolute;
  top: 0; left: 1.2rem; right: 1.2rem; height: 2px;
  background: var(--orange); border-radius: 0 0 2px 2px;
  opacity: 0; transition: opacity 0.3s;
}
.cv-sched-card:hover {
  border-color: rgba(217,84,30,0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}
.cv-sched-card:hover::before { opacity: 1; }
.cv-time {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.7rem;
}
.cv-event {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--ink); line-height: 1.3;
  margin-bottom: 0.4rem;
}
.cv-detail {
  font-size: 0.78rem; color: var(--muted); line-height: 1.55;
}

.cv-audience {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.3rem 1.6rem;
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap;
}
.cv-aud-label {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.cv-aud-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cv-aud-tags span {
  font-size: 0.7rem; font-weight: 500;
  color: var(--ink2);
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 0.25rem 0.7rem; border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.cv-aud-tags span:hover {
  border-color: rgba(217,84,30,0.3);
  color: var(--orange);
}

@media (max-width:900px) {
  .cv-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cv-top .conclave-p, .cv-top .body-text { max-width: 100%; }
  .cv-stats { grid-template-columns: 1fr 1fr; }
  .cv-sched { grid-template-columns: 1fr 1fr; }
  .conclave-2col { grid-template-columns:1fr; gap:2.5rem; }
}
@media (max-width:550px) {
  .cv-stats { grid-template-columns: 1fr; }
  .cv-sched { grid-template-columns: 1fr; }
}

/* ── TRACKS ── */
#tracks { background: var(--paper); }

/* Old tcard kept for tracks.html subpage */
.tgrid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.1rem; margin-top:2.8rem; }
.tcard { background:var(--cream); border:1px solid var(--border); border-radius:5px; padding:1.7rem; transition:border-color 0.2s, box-shadow 0.2s; }
.tcard:hover { border-color:rgba(217,84,30,0.28); box-shadow:0 4px 18px rgba(0,0,0,0.055); }
.tcard.feat { background:var(--ink); border-color:var(--orange); }
.t-ico { font-size:1.5rem; margin-bottom:0.8rem; }
.t-nm { font-family: "Poppins", sans-serif; font-weight:700; font-size:0.95rem; color:var(--ink); margin-bottom:0.35rem; }
.tcard.feat .t-nm { color:#FAF8F4; }
.t-desc { font-size:0.84rem; color:var(--muted); line-height:1.65; font-weight:400; }
.tcard.feat .t-desc { color:rgba(250,248,244,0.42); }
.feat-badge {
  display:inline-block; margin-top:1rem;
  background:rgba(240,107,48,0.14); color:var(--orange2);
  border:1px solid rgba(240,107,48,0.28);
  font-size:0.62rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  padding:0.22rem 0.6rem; border-radius:3px;
}

/* ── NEW TRACK CARDS (index page) ── */
.tk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.tk-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.tk-card:hover {
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* Visual area — top illustration */
.tk-visual {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(217,84,30,0.06) 0%, rgba(240,107,48,0.03) 50%, rgba(184,135,42,0.04) 100%) !important;
  border-bottom: 1px solid var(--border);
}
.tk-visual svg { width: 100%; height: 100%; }

/* Card body — text below */
.tk-body { padding: 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.tk-nm {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--ink); margin-bottom: 0.35rem; line-height: 1.3;
}
.tk-desc {
  font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 400;
  flex: 1;
}

.tk-feat-badge {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  background: rgba(240,107,48,0.07);
  border: 1px solid rgba(240,107,48,0.18);
  padding: 0.18rem 0.55rem; border-radius: 100px;
  display: inline-block; width: fit-content;
  margin-bottom: 0.5rem;
}

/* ── Track card animations ── */

/* Connection lines pulsing (Society) */
.tk-line { animation: tkLinePulse 3s ease-in-out infinite; }
.tk-line.tl1 { animation-delay: 0s; }
.tk-line.tl2 { animation-delay: 0.4s; }
.tk-line.tl3 { animation-delay: 0.8s; }
@keyframes tkLinePulse {
  0%, 100% { opacity: 0.15; } 50% { opacity: 0.6; }
}

/* Badge fade */
.tk-badge-anim { animation: tkBadgeFade 3s ease-in-out infinite; }
@keyframes tkBadgeFade {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}

/* Horizontal bars growing (Future of Work) */
.tk-hbar { animation: tkHbarGrow 3s ease-in-out infinite; }
.tk-hbar.h1 { animation-delay: 0s; --tw: 90; }
.tk-hbar.h2 { animation-delay: 0.2s; --tw: 70; }
.tk-hbar.h3 { animation-delay: 0.4s; --tw: 50; }
.tk-hbar.h4 { animation-delay: 0.6s; --tw: 35; }
@keyframes tkHbarGrow {
  0%, 100% { width: 0; }
  40%, 60% { width: calc(var(--tw) * 1px); }
}

/* Notification dot */
.tk-notif { animation: tkNotifPulse 2s ease-in-out infinite; }
@keyframes tkNotifPulse {
  0%, 100% { opacity: 0.2; r: 3; } 50% { opacity: 0.8; r: 5; }
}

/* Chart line draw (Education) */
.tk-chart-line {
  stroke-dasharray: 200;
  animation: tkChartDraw 4s ease infinite;
}
@keyframes tkChartDraw {
  0% { stroke-dashoffset: 200; } 40%, 70% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 200; }
}
.tk-chart-area { animation: tkAreaFade 4s ease infinite; }
@keyframes tkAreaFade {
  0%, 100% { opacity: 0; } 40%, 70% { opacity: 1; }
}
.tk-endpoint { animation: tkEndpointPulse 4s ease infinite; }
@keyframes tkEndpointPulse {
  0%, 30% { opacity: 0; } 40%, 70% { opacity: 1; } 100% { opacity: 0; }
}

/* Heartbeat wave (Wellbeing) */
.tk-wave {
  stroke-dasharray: 300;
  animation: tkWaveFlow 3s linear infinite;
}
@keyframes tkWaveFlow {
  0% { stroke-dashoffset: 300; } 100% { stroke-dashoffset: 0; }
}
.tk-heart-dot { animation: tkHeartBeat 1.2s ease-in-out infinite; }
@keyframes tkHeartBeat {
  0%, 100% { r: 3; opacity: 0.3; } 30% { r: 6; opacity: 0.6; } 60% { r: 3; opacity: 0.3; }
}

/* Leaf + meters (Sustainability) */
.tk-leaf { animation: tkLeafBreathe 3s ease-in-out infinite; }
@keyframes tkLeafBreathe {
  0%, 100% { opacity: 0.5; transform: scale(1); transform-origin: 70px 60px; }
  50% { opacity: 1; transform: scale(1.06); }
}
.tk-meter { animation: tkMeterGrow 3s ease-in-out infinite; }
.tk-meter.m1 { animation-delay: 0s; --mh: 25px; }
.tk-meter.m2 { animation-delay: 0.25s; --mh: 40px; }
.tk-meter.m3 { animation-delay: 0.5s; --mh: 55px; }
@keyframes tkMeterGrow {
  0%, 100% { height: 0; y: 80; }
  40%, 60% { height: calc(var(--mh) * 1px); y: calc((80 - var(--mh)) * 1px); }
}

/* Truck moving on route (IoT) */
.tk-route {
  stroke-dasharray: 8 6;
  animation: tkRouteDash 2s linear infinite;
}
@keyframes tkRouteDash { 0% { stroke-dashoffset: 28; } 100% { stroke-dashoffset: 0; } }

.tk-truck { animation: tkTruckMove 5s ease-in-out infinite; }
@keyframes tkTruckMove {
  0% { cx: 95; cy: 65; }
  25% { cx: 155; cy: 45; }
  50% { cx: 215; cy: 65; }
  75% { cx: 275; cy: 45; }
  100% { cx: 335; cy: 65; }
}

/* Sensor signals */
.tk-signal { animation: tkSignalPing 2.5s ease-in-out infinite; }
.tk-signal.sg1 { animation-delay: 0s; }
.tk-signal.sg2 { animation-delay: 0.5s; }
.tk-signal.sg3 { animation-delay: 1s; }
@keyframes tkSignalPing {
  0%, 100% { opacity: 0.15; r: 2; } 50% { opacity: 0.7; r: 5; }
}

/* Light bulb rays (Open Innovation) */
.tk-ray { animation: tkRayGlow 2.5s ease-in-out infinite; }
.tk-ray.r1 { animation-delay: 0s; }
.tk-ray.r2 { animation-delay: 0.3s; }
.tk-ray.r3 { animation-delay: 0.6s; }
.tk-ray.r4 { animation-delay: 0.9s; }
.tk-ray.r5 { animation-delay: 1.2s; }
@keyframes tkRayGlow {
  0%, 100% { opacity: 0.1; } 50% { opacity: 0.6; }
}
.tk-bulb { animation: tkBulbGlow 3s ease-in-out infinite; }
@keyframes tkBulbGlow {
  0%, 100% { opacity: 0.5; } 50% { opacity: 1; fill: rgba(217,84,30,0.15); }
}

/* Judging row */
.judging-row {
  margin-top: 2rem; padding: 1.4rem 1.8rem;
  background: var(--cream); border: 1px solid var(--border); border-radius: 24px;
}
.judging-row .eyebrow { margin-bottom: 0.8rem; }
.cpills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cp {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.3rem 0.9rem;
  font-size: 0.76rem; color: var(--ink2); font-weight: 400;
}
.cp span { color: var(--orange); font-weight: 700; }

@media (max-width:1000px) {
  .tk-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:600px) {
  .tk-grid { grid-template-columns: 1fr; }
}

/* ── MENTORS ── */
#mentors { background: var(--cream); }

/* ── MENTOR INDEX LAYOUT ── */
/* ── Mentor Stats ── */
.mn-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.mn-stat {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 24px;
  padding: 1.5rem 1.2rem; text-align: center;
}
.mn-stat-n {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 2rem; color: var(--orange); line-height: 1; letter-spacing: -0.03em;
}
.mn-stat-l {
  font-size: 0.68rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 0.3rem; font-weight: 700;
}

/* ── Mentor Grid ── */
.mn-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem; margin-bottom: 2rem;
}
.mn-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1611;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  outline: none;
  border: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  transform: translateZ(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.mn-card:hover,
.mn-card:focus-visible {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 22px 44px rgba(0,0,0,0.18);
}

.mn-photo {
  position: absolute;
  inset: 0;
  background: rgba(24,21,18,0.04);
  overflow: hidden;
}
.mn-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: translateZ(0) scale(1);
  transform-origin: center 30%;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mn-card:hover .mn-img,
.mn-card:focus-within .mn-img {
  transform: translateZ(0) scale(1.06);
}

.mn-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 22px;
  color: #fff;
  background: linear-gradient(to top, rgba(20,15,10,0.92) 0%, rgba(20,15,10,0.7) 55%, rgba(20,15,10,0) 100%);
  transform: translateZ(0);
  will-change: opacity, transform;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mn-info .mn-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.mn-info .mn-role {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.mn-card:hover .mn-info,
.mn-card:focus-within .mn-info {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.mn-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(15,10,5,0.95) 0%, rgba(15,10,5,0.85) 50%, rgba(15,10,5,0.45) 100%);
  color: #fff;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mn-card:hover .mn-overlay,
.mn-card:focus-within .mn-overlay {
  opacity: 1;
  pointer-events: auto;
}
.mn-overlay-inner {
  transform: translate3d(0, 12px, 0);
  opacity: 0.6;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s, opacity 0.4s ease 0.05s;
}
.mn-card:hover .mn-overlay-inner,
.mn-card:focus-within .mn-overlay-inner {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.mn-overlay-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mn-overlay .mn-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
}
.mn-overlay .mn-role {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.mn-overlay .mn-bio {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.mn-overlay .mn-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.mn-overlay .mn-tags span {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(234,90,42,0.85);
  color: #fff;
  border: 0;
}
.mn-avatar { width: 56px; height: 56px; }
.mn-photo-lbl {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); font-weight: 700;
}

.mn-body { padding: 1.4rem 1.5rem; }
.mn-name {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--ink); margin-bottom: 0.15rem; letter-spacing: -0.02em;
}
.mn-role {
  font-size: 0.75rem; color: var(--orange); font-weight: 700;
  margin-bottom: 0.7rem;
}
.mn-bio {
  font-size: 0.88rem; color: var(--muted); line-height: 1.65;
  margin-bottom: 0.8rem;
}
.mn-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.mn-tags span {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  background: rgba(24,21,18,0.03);
  border: 1px solid rgba(24,21,18,0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
}

/* CTA strip */
.mn-cta {
  padding: 1.4rem 1.8rem;
  background: var(--paper); border: 1px solid var(--border); border-radius: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.mn-cta p { font-size: 0.85rem; color: var(--muted); }
.mn-cta p strong { color: var(--ink); }

@media (max-width:900px) {
  .mn-stats { grid-template-columns: 1fr 1fr; }
  .mn-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:550px) {
  .mn-stats { grid-template-columns: 1fr; }
  .mn-grid { grid-template-columns: 1fr; gap: 1rem; }

  .mn-card {
    aspect-ratio: auto;
    background: #fff;
    border: 1px solid rgba(24,21,18,0.08);
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    cursor: default;
  }
  .mn-card:hover,
  .mn-card:focus-visible {
    transform: none;
  }
  .mn-card:hover .mn-img,
  .mn-card:focus-within .mn-img {
    transform: none;
  }

  .mn-photo {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .mn-photo .mn-img {
    height: auto;
  }

  .mn-info {
    display: none;
  }

  .mn-overlay {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    background: #fff;
    color: var(--ink);
    padding: 22px 22px 24px;
    align-items: stretch;
  }
  .mn-overlay-inner {
    gap: 6px;
    opacity: 1;
    transform: none;
  }
  .mn-overlay .mn-name {
    color: var(--ink);
    font-size: 1.15rem;
    margin: 0;
  }
  .mn-overlay .mn-role {
    color: var(--orange);
    margin-bottom: 4px;
  }
  .mn-overlay .mn-bio {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .mn-overlay .mn-tags {
    margin-top: 10px;
  }
  .mn-overlay .mn-tags span {
    background: rgba(234,90,42,0.12);
    color: var(--orange);
  }
}
.mentor-intro { display:grid; grid-template-columns:1fr 1fr; gap:4.5rem; margin-bottom:3.5rem; align-items:start; }
.mstats { display:flex; flex-direction:column; gap:0.9rem; padding-top:0.6rem; }
.mstat { display:flex; align-items:baseline; gap:1rem; padding-bottom:0.9rem; border-bottom:1px solid var(--border); }
.mstat:last-child { border-bottom:none; }
.mstat-n { font-family: "Poppins", sans-serif; font-weight:800; font-size:1.9rem; color:var(--orange); line-height:1; min-width:78px; }
.mstat-l { font-size:0.8rem; color:var(--muted); }
.mgrid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:1.4rem; }
.mcard { background:var(--paper); border:1px solid var(--border); border-radius:7px; overflow:hidden; transition:border-color 0.2s, box-shadow 0.2s; }
.mcard:hover { border-color:var(--gold); box-shadow:0 5px 22px rgba(0,0,0,0.07); }
.mcard-photo {
  height:196px; background:var(--warm);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.55rem;
  border-bottom:1px solid var(--border); position:relative; overflow:hidden;
}
.mcard-photo::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(217,84,30,0.05),transparent 60%); }
.av-circle { width:68px; height:68px; border-radius:50%; background:var(--border); display:flex; align-items:center; justify-content:center; font-size:1.5rem; border:2px solid rgba(217,84,30,0.18); }
.photo-lbl { font-size:0.58rem; text-transform:uppercase; letter-spacing:0.14em; color:var(--muted); font-weight:600; }
.mcard-body { padding:1.3rem 1.4rem; }
.m-name { font-family: "Poppins", sans-serif; font-weight:700; font-size:1.05rem; color:var(--ink); margin-bottom:0.12rem; }
.m-role { font-size:0.73rem; color:var(--gold); font-weight:600; margin-bottom:0.7rem; }
.m-bio { font-size:0.79rem; color:var(--muted); line-height:1.65; }
.m-tags { display:flex; flex-wrap:wrap; gap:0.38rem; margin-top:0.9rem; }
.mtag { font-size:0.6rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); border:1px solid var(--border); padding:0.16rem 0.5rem; border-radius:3px; }
.m-cta-strip {
  margin-top:2.4rem; padding:1.4rem 1.8rem;
  background:var(--paper); border:1px solid var(--border); border-radius:5px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
}
.m-cta-strip p { font-size:0.85rem; color:var(--muted); }
.m-cta-strip p strong { color:var(--ink); }
.btn-outline {
  background:transparent; color:var(--orange);
  padding:0.6rem 1.4rem; border-radius:3px;
  text-decoration:none; font-size:0.77rem; font-weight:700;
  font-family: "Poppins", sans-serif; letter-spacing:0.06em; text-transform:uppercase;
  border:1.5px solid var(--orange); transition:background 0.2s, color 0.2s;
}
.btn-outline:hover { background:var(--orange); color:#fff; }

/* ── PRIZES ── */
#prizes { background: var(--paper); }

/* ── PRIZES INDEX LAYOUT ── */
.pz-top {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; margin-bottom: 1.5rem;
}
.pz-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 1.5rem 1.4rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pz-card:hover {
  border-color: rgba(217,84,30,0.18);
  box-shadow: 0 10px 32px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.pz-gold {
  background: rgba(217,84,30,0.04); border-color: var(--orange);
}
.pz-gold:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 32px rgba(217,84,30,0.1);
}
.pz-visual { width: 90px; height: 90px; margin: 0 auto 1rem; }
.pz-visual svg { width: 100%; height: 100%; overflow: visible; }

/* Sparkle animation for gold */
.pz-spark { opacity: 0; animation: pzSparkle 2.5s ease-in-out infinite; }
.pz-spark.s1 { animation-delay: 0s; }
.pz-spark.s2 { animation-delay: 0.5s; }
.pz-spark.s3 { animation-delay: 1s; }
@keyframes pzSparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  30%, 50% { opacity: 1; transform: scale(1.4); }
  70% { opacity: 0; }
}

.pz-rank {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem;
}
.pz-gold .pz-rank { color: var(--orange); }
.pz-amt {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 2.4rem; color: var(--ink); line-height: 1;
}
.pz-gold .pz-amt { color: var(--orange); }
.pz-perks {
  font-size: 0.78rem; color: var(--muted); line-height: 1.55;
  margin-top: 0.6rem;
}
.pz-gold .pz-perks { color: var(--muted); }
.pz-win {
  font-size: 0.6rem; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.6rem;
}
.pz-gold .pz-win { color: var(--orange); }

/* Special awards */
.pz-specials {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 1.5rem;
}
.pz-special {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pz-special:hover {
  border-color: rgba(217,84,30,0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.pz-sico { width: 32px; height: 32px; margin-bottom: 0.7rem; }
.pz-sico svg { width: 100%; height: 100%; overflow: visible; }
.pz-sname {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.88rem; color: var(--ink); line-height: 1.25;
}
.pz-samt {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--orange); margin-top: 0.1rem;
}
.pz-sdesc {
  font-size: 0.75rem; color: var(--muted); line-height: 1.5;
  margin-top: 0.4rem;
}

/* Special award icon animations */
.pz-scan-line { animation: pzScan 2s ease-in-out infinite; }
@keyframes pzScan { 0%, 100% { transform: translateX(0); opacity: 0.3; } 50% { transform: translateX(6px); opacity: 1; } }

.pz-globe-line { stroke-dasharray: 30; animation: pzGlobe 3s linear infinite; }
@keyframes pzGlobe { 0% { stroke-dashoffset: 60; } 100% { stroke-dashoffset: 0; } }

.pz-tool-draw { animation: pzToolDraw 3s ease infinite; }
@keyframes pzToolDraw { 0% { stroke-dashoffset: 16; } 35%, 65% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 16; } }

.pz-cap-draw { animation: pzCapDraw 3.5s ease infinite; }
@keyframes pzCapDraw { 0% { stroke-dashoffset: 50; } 40%, 60% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 50; } }

/* All participants box */
.pz-all {
  background: rgba(217,84,30,0.04);
  border: 1px solid rgba(217,84,30,0.12);
  border-radius: 24px; padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap;
}
.pz-all-left {
  display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0;
}
.pz-cred-ico { width: 40px; height: 40px; flex-shrink: 0; }
.pz-cred-check { animation: pzCredCheck 3s ease infinite; }
@keyframes pzCredCheck { 0% { stroke-dashoffset: 10; } 35%, 65% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 10; } }
.pz-all-n {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--orange); line-height: 1.2;
}
.pz-all-l { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.pz-all-desc {
  flex: 1; font-size: 0.85rem; color: var(--ink2); line-height: 1.7;
}
.pz-all-desc strong { color: var(--ink); }

@media (max-width:900px) {
  .pz-top { grid-template-columns: 1fr; }
  .pz-specials { grid-template-columns: 1fr 1fr; }
}
@media (max-width:550px) {
  .pz-specials { grid-template-columns: 1fr; }
}
.prizes-top { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border-radius:7px; overflow:hidden; margin-top:2.8rem; }
.pcard { background:var(--cream); padding:2.2rem 1.8rem; text-align:center; }
.pcard.gold { background:var(--ink); }
.p-rank { font-size:0.62rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--muted); margin-bottom:0.55rem; }
.pcard.gold .p-rank { color:rgba(250,248,244,0.35); }
.p-amt { font-family: "Poppins", sans-serif; font-weight:800; font-size:3rem; line-height:1; color:var(--ink); }
.pcard.gold .p-amt { color:var(--orange2); }
.p-extras { font-size:0.76rem; color:var(--muted); margin-top:0.9rem; line-height:1.7; }
.pcard.gold .p-extras { color:rgba(250,248,244,0.32); }
.prizes-special { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:1rem; margin-top:1rem; }
.scard { background:var(--cream); border:1px solid var(--border); border-radius:5px; padding:1.4rem; }
.sc-t { font-family: "Poppins", sans-serif; font-weight:700; font-size:0.82rem; color:var(--ink); margin-bottom:0.25rem; }
.sc-amt { font-family: "Poppins", sans-serif; font-weight:800; font-size:1.35rem; color:var(--orange); margin-bottom:0.25rem; }
.sc-d { font-size:0.76rem; color:var(--muted); line-height:1.5; }
.all-box {
  margin-top:1.8rem; padding:1.8rem 2rem;
  background:rgba(217,84,30,0.05); border:1px solid rgba(217,84,30,0.14); border-radius:5px;
  display:flex; align-items:center; gap:3rem; flex-wrap:wrap;
}
.ap-n { font-family: "Poppins", sans-serif; font-weight:800; font-size:1.5rem; color:var(--orange); }
.ap-l { font-size:0.68rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--muted); margin-top:0.15rem; }
.all-box p { flex:1; font-size:0.85rem; color:var(--ink2); line-height:1.7; }
.all-box p strong { color:var(--ink); }

/* ── SPONSORS ── */
#sponsors { background: var(--cream); }

/* ── SPONSORS INDEX LAYOUT ── */
.sp-why {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 2.5rem;
}
.sp-why-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 24px; padding: 1.6rem;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.sp-why-card:hover {
  border-color: rgba(234,90,42,0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.sp-why-ico { width: 52px; height: 52px; margin: 0 auto 0.8rem; }
.sp-why-ico svg { width: 100%; height: 100%; overflow: visible; }
.sp-why-n {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1.8rem; color: var(--orange); line-height: 1; letter-spacing: -0.03em;
}
.sp-why-t {
  font-size: 0.8rem; color: var(--muted); font-weight: 500;
  margin-top: 0.25rem;
}

/* Compact tiers */
.sp-tiers {
  display: flex; flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.sp-tier {
  display: grid; grid-template-columns: 260px 1fr;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sp-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: rgba(234,90,42,0.15);
}
.sp-t-title {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234,90,42,0.18), transparent),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(129,162,239,0.08), transparent),
    linear-gradient(160deg, #12100d, #1a1510 40%, #141118 100%);
  border: 1px solid rgba(255,255,255,0.07);
  color: #f7f0e6;
}
.sp-t-title:hover { border-color: rgba(234,90,42,0.25); }

.sp-tier-head {
  padding: 1.2rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  border-right: 1px solid rgba(24,21,18,0.06);
}
.sp-t-title .sp-tier-head { border-right-color: rgba(255,255,255,0.06); }

.sp-tier-badge {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 8px;
  width: fit-content;
}
.sp-tb-t { background: rgba(234,90,42,0.15); color: var(--orange); }
.sp-tb-p { background: rgba(150,150,150,0.08); color: #999; }
.sp-tb-g { background: rgba(184,135,42,0.1); color: var(--gold); }
.sp-tb-s { background: rgba(122,118,109,0.06); color: var(--muted); }
.sp-tb-tp { background: rgba(234,90,42,0.07); color: var(--orange); }

.sp-tier-price {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1.2rem; color: var(--ink); letter-spacing: -0.02em;
}
.sp-t-title .sp-tier-price { color: var(--orange); }
.sp-tier-slots {
  font-size: 0.65rem; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sp-t-title .sp-tier-slots { color: rgba(247,240,230,0.4); }
.sp-t-title .sp-tier-badge { background: rgba(234,90,42,0.2); color: var(--orange); }
.sp-t-title .sp-tier-perks span { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); color: rgba(247,240,230,0.7); }

.sp-tier-perks {
  padding: 1.2rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  align-items: center; align-content: center;
}
.sp-tier-perks span {
  background: rgba(24,21,18,0.03);
  border: 1px solid rgba(24,21,18,0.06);
  border-radius: 24px; padding: 0.28rem 0.75rem;
  font-size: 0.78rem; color: var(--ink2);
}

@media (max-width:900px) {
  .sp-why { grid-template-columns: 1fr 1fr; }
  .sp-tier { grid-template-columns: 1fr; }
  .sp-tier-head { border-right: none; border-bottom: 1px solid rgba(24,21,18,0.06); }
  .sp-t-title .sp-tier-head { border-bottom-color: rgba(255,255,255,0.06); }
}
@media (max-width:550px) {
  .sp-why { grid-template-columns: 1fr; }
}
.swhy { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1.1rem; margin-top:2.8rem; }
.wcard { padding:1.4rem; background:var(--paper); border:1px solid var(--border); border-radius:5px; }
.wc-n { font-family: "Poppins", sans-serif; font-weight:800; font-size:1.9rem; color:var(--orange); line-height:1; margin-bottom:0.35rem; }
.wc-t { font-weight:600; font-size:0.85rem; color:var(--ink); margin-bottom:0.25rem; }
.wc-d { font-size:0.78rem; color:var(--muted); line-height:1.6; }
.stiers { margin-top:3.5rem; }
.stiers h3 { font-family: "Poppins", sans-serif; font-weight:800; font-size:1.3rem; color:var(--ink); margin-bottom:0.4rem; }
.stiers .sub { font-size:0.82rem; color:var(--muted); margin-bottom:2rem; }
.tier-row { display:grid; grid-template-columns:190px 1fr; gap:2rem; padding:1.8rem 0; border-bottom:1px solid var(--border); align-items:start; }
.tier-row:last-child { border-bottom:none; }
.tier-lbl-col { text-align:right; }
.tbadge { display:inline-block; font-family: "Poppins", sans-serif; font-weight:700; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; padding:0.32rem 0.85rem; border-radius:100px; }
.tbadge.t { background:rgba(184,135,42,0.1); color:var(--gold); }
.tbadge.p { background:rgba(150,150,150,0.1); color:#888; }
.tbadge.g { background:rgba(184,135,42,0.08); color:var(--gold); }
.tbadge.s { background:rgba(122,118,109,0.08); color:var(--muted); }
.tbadge.tp { background:rgba(217,84,30,0.07); color:var(--orange); }
.tier-price { font-family: "Poppins", sans-serif; font-weight:800; font-size:1.15rem; color:var(--ink); margin-top:0.4rem; }
.tier-slots { font-size:0.65rem; color:var(--muted); font-weight:500; text-transform:uppercase; letter-spacing:0.1em; margin-top:0.18rem; }
.perks { display:flex; flex-wrap:wrap; gap:0.48rem; }
.pchip { background:var(--paper); border:1px solid var(--border); border-radius:100px; padding:0.28rem 0.8rem; font-size:0.73rem; color:var(--ink2); }
.scta {
  margin-top: 3rem; padding: 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234,90,42,0.18), transparent),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(129,162,239,0.08), transparent),
    linear-gradient(160deg, #12100d, #1a1510 40%, #141118 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  position: relative; overflow: hidden;
}
.scta::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(234,90,42,0.28), rgba(255,255,255,0.05) 40%, rgba(129,162,239,0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.scta h3 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.6rem; color: #f7f0e6; line-height: 1.15; letter-spacing: -0.03em; }
.scta p { font-size: 0.9rem; color: rgba(247,240,230,0.5); margin-top: 0.35rem; }

/* ── TIMELINE ── */
#timeline { background: var(--paper); }

/* ── TIMELINE INDEX — Vertical ── */
.tl-vertical {
  position: relative;
  margin-top: 3rem;
  padding-left: 40px;
}

/* Vertical line */
.tl-line {
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.tl-line-fill {
  width: 100%; height: 0;
  background: linear-gradient(180deg, var(--orange), rgba(217,84,30,0.1));
  border-radius: 2px;
  animation: tlLineFill 8s ease-in-out infinite;
}
@keyframes tlLineFill {
  0% { height: 0; }
  50%, 65% { height: 100%; }
  100% { height: 0; }
}

/* Each item */
.tl-item {
  position: relative;
  padding: 0 0 2.5rem 1.8rem;
  display: flex; gap: 0;
  flex-direction: column;
}
.tl-item:last-child { padding-bottom: 0; }

/* Dot */
.tl-dot-wrap {
  position: absolute;
  left: -40px; top: 4px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.tl-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(217,84,30,0.3);
  transition: all 0.3s;
}
.tl-item:hover .tl-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(217,84,30,0.3);
}

/* Active item */
.tl-active .tl-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 8px rgba(217,84,30,0.25);
}
.tl-active .tl-dot::after {
  content: ''; position: absolute;
  inset: -4px; border-radius: 50%;
  border: 1.5px solid var(--orange);
  animation: tlPing 2s ease-in-out infinite;
}
@keyframes tlPing {
  0% { transform: scale(0.8); opacity: 0.6; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Animate dots sequentially */
.tl-item:nth-child(2) .tl-dot { animation: tlDotGlow 8s ease-in-out infinite; animation-delay: 0s; }
.tl-item:nth-child(3) .tl-dot { animation: tlDotGlow 8s ease-in-out infinite; animation-delay: 1s; }
.tl-item:nth-child(4) .tl-dot { animation: tlDotGlow 8s ease-in-out infinite; animation-delay: 2s; }
.tl-item:nth-child(5) .tl-dot { animation: tlDotGlow 8s ease-in-out infinite; animation-delay: 3s; }
.tl-item:nth-child(6) .tl-dot { animation: tlDotGlow 8s ease-in-out infinite; animation-delay: 4s; }
.tl-item:nth-child(7) .tl-dot { animation: tlDotGlow 8s ease-in-out infinite; animation-delay: 5s; }
@keyframes tlDotGlow {
  0%, 10% { background: #fff; border-color: rgba(217,84,30,0.3); box-shadow: none; }
  15%, 25% { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 12px rgba(217,84,30,0.3); }
  30%, 100% { background: rgba(217,84,30,0.1); border-color: rgba(217,84,30,0.4); box-shadow: none; }
}

/* Content */
.tl-badge {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(217,84,30,0.06);
  border: 1px solid rgba(217,84,30,0.15);
  padding: 0.18rem 0.6rem; border-radius: 100px;
  display: inline-block; width: fit-content;
  margin-bottom: 0.4rem;
}
.tl-name {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--ink); line-height: 1.3;
  margin-bottom: 0.35rem;
}
.tl-detail {
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.6;
}
.tl-item:hover .tl-name { color: var(--orange); }
.tl-item:hover .tl-detail { color: var(--ink2); }

@media (max-width:600px) {
  .tl-vertical { padding-left: 30px; }
  .tl-dot-wrap { left: -30px; }
  .tl-line { left: 6px; }
}
/* ── TIMELINE PAGE ── */

/* Hero */
.tl-hero {
  position: relative;
  padding: 10rem 3.5rem 5rem;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.tl-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
  z-index: 0;
}
.tl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,10,8,0.88), rgba(12,10,8,0.4) 50%, rgba(12,10,8,0.25));
  pointer-events: none;
}
.tl-hero .container { position: relative; z-index: 1; }
.tl-hero-content { max-width: 600px; }
.tl-hero .display-title { color: #f7f0e6; margin-bottom: 0.5rem; }
.tl-hero .display-title em { color: var(--orange); }

/* Vertical timeline list */
.tl-list {
  position: relative;
  padding-left: 56px;
}
.tl-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(234,90,42,0.1));
  border-radius: 2px;
}
.tl-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(24,21,18,0.05);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-marker {
  position: absolute;
  left: -56px;
  top: 1.6rem;
}
.tl-marker span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid rgba(234,90,42,0.18);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  z-index: 1;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.tl-item:hover .tl-marker span {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.tl-date {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}
.tl-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.tl-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 600px;
}
/* Finale item */
.tl-item--finale .tl-marker span {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.tl-item--finale .tl-title {
  color: var(--orange);
}

/* ── COLLEGES PAGE ── */

/* Hero */
.col-hero {
  position: relative;
  padding: 10rem 3.5rem 5rem;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.col-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
  z-index: 0;
}
.col-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,10,8,0.88), rgba(12,10,8,0.4) 50%, rgba(12,10,8,0.25));
  pointer-events: none;
}
.col-hero .container { position: relative; z-index: 1; }
.col-hero-content { max-width: 600px; }
.col-hero .display-title { color: #f7f0e6; margin-bottom: 0.5rem; }
.col-hero .display-title em { color: var(--orange); }

/* College cards grid */
.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.col-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 24px;
  padding: 1.8rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.col-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43,28,15,0.08);
  border-color: rgba(234,90,42,0.18);
}
.col-card-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(234,90,42,0.1);
  letter-spacing: -0.04em;
  display: block;
}
.col-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0.3rem 0 0.6rem;
  line-height: 1.2;
}
.col-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}
.col-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width:900px) {
  .tl-hero, .col-hero { padding: 7rem 1.4rem 3rem; min-height: 380px; }
  .col-grid { grid-template-columns: 1fr; }
  .tl-list { padding-left: 46px; }
  .tl-marker { left: -46px; }
  .tl-marker span { width: 36px; height: 36px; font-size: 0.85rem; border-radius: 24px; }
  .col-cta-row { flex-direction: column; gap: 1rem; }
}
@media (max-width:550px) {
  .tl-hero, .col-hero { padding: 6rem 1rem 2.5rem; min-height: 340px; }
  .col-grid { grid-template-columns: 1fr; }
}

#colleges { background: var(--cream); }

/* ── COLLEGES INDEX LAYOUT ── */
.cl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; margin-bottom: 2rem;
}
.cl-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 1.5rem 1.4rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cl-card:hover {
  border-color: rgba(217,84,30,0.18);
  box-shadow: 0 10px 32px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.cl-title {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--ink); margin-bottom: 0.45rem; line-height: 1.3;
}
.cl-visual {
  height: 108px;
  border: 1px solid rgba(217,84,30,0.14);
  background: linear-gradient(145deg, rgba(217,84,30,0.06), rgba(240,107,48,0.02));
  border-radius: 24px;
  padding: 0.3rem 0.4rem;
  margin-bottom: 0.6rem;
}
.cl-visual svg { width: 100%; height: 100%; display: block; }

/* New colleges infographic animations */
.clv-cell {
  fill: rgba(217,84,30,0.16);
  animation: clCellPulse 2.4s ease-in-out infinite;
}
.clv-cell.a1 { animation-delay: 0s; } .clv-cell.a2 { animation-delay: 0.12s; } .clv-cell.a3 { animation-delay: 0.24s; } .clv-cell.a4 { animation-delay: 0.36s; } .clv-cell.a5 { animation-delay: 0.48s; }
.clv-cell.b1 { animation-delay: 0.6s; } .clv-cell.b2 { animation-delay: 0.72s; } .clv-cell.b3 { animation-delay: 0.84s; } .clv-cell.b4 { animation-delay: 0.96s; } .clv-cell.b5 { animation-delay: 1.08s; }
.clv-cell.c1 { animation-delay: 1.2s; } .clv-cell.c2 { animation-delay: 1.32s; } .clv-cell.c3 { animation-delay: 1.44s; } .clv-cell.c4 { animation-delay: 1.56s; } .clv-cell.c5 { animation-delay: 1.68s; }
@keyframes clCellPulse {
  0%, 100% { fill: rgba(217,84,30,0.12); }
  45% { fill: rgba(217,84,30,0.78); }
}
.clv-enroll-pulse {
  fill: var(--orange);
  animation: clEnrollBadge 1.8s ease-in-out infinite;
}
@keyframes clEnrollBadge {
  0%, 100% { r: 6; opacity: 0.75; }
  50% { r: 8; opacity: 1; }
}

.clv-brand-loop {
  stroke-dasharray: 120;
  animation: clBrandLoop 4s linear infinite;
}
@keyframes clBrandLoop {
  0% { stroke-dashoffset: 120; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -120; opacity: 0.3; }
}
.clv-brand-scan {
  fill: rgba(217,84,30,0.35);
  animation: clBrandScan 2.4s ease-in-out infinite;
}
.clv-brand-scan:last-child { animation-delay: 1.2s; }
@keyframes clBrandScan {
  0%, 100% { opacity: 0; }
  35%, 60% { opacity: 1; }
}

.clv-ambassador-beacon {
  fill: var(--orange);
  animation: clBeaconWalk 4.8s ease-in-out infinite;
}
.clv-ambassador-ping {
  fill: none;
  stroke: rgba(217,84,30,0.5);
  stroke-width: 2;
  animation: clBeaconPing 1.6s ease-out infinite;
}
@keyframes clBeaconWalk {
  0%, 10% { cx: 48; }
  30%, 40% { cx: 94; }
  55%, 65% { cx: 140; }
  80%, 100% { cx: 186; }
}
@keyframes clBeaconPing {
  0% { r: 6; opacity: 0.75; }
  100% { r: 13; opacity: 0; }
}

.clv-bridge {
  stroke-dasharray: 120;
  animation: clBridgeFlow 3.2s linear infinite;
}
@keyframes clBridgeFlow {
  0% { stroke-dashoffset: 120; }
  100% { stroke-dashoffset: 0; }
}
.clv-token {
  fill: var(--orange);
  animation: clTokenMove 3.8s ease-in-out infinite;
}
@keyframes clTokenMove {
  0% { cx: 74; cy: 48; }
  50% { cx: 110; cy: 41; }
  100% { cx: 146; cy: 48; }
}
.clv-hire-ping {
  fill: none;
  stroke: rgba(217,84,30,0.6);
  stroke-width: 2;
  animation: clHirePing 2s ease-out infinite;
}
@keyframes clHirePing {
  0% { r: 6; opacity: 0.8; }
  100% { r: 14; opacity: 0; }
}

.clv-credential-ring {
  transform-origin: 110px 50px;
  animation: clCredentialSpin 8s linear infinite;
}
.clv-credential-check {
  stroke-dasharray: 40;
  animation: clCredentialTick 3.2s ease-in-out infinite;
}
@keyframes clCredentialSpin {
  to { transform: rotate(360deg); }
}
@keyframes clCredentialTick {
  0%, 100% { stroke-dashoffset: 40; opacity: 0.3; }
  40%, 70% { stroke-dashoffset: 0; opacity: 1; }
}

.clv-pin {
  fill: var(--orange);
  animation: clPinGlow 2.2s ease-in-out infinite;
}
.clv-pin.p1 { animation-delay: 0s; }
.clv-pin.p2 { animation-delay: 0.3s; }
.clv-pin.p3 { animation-delay: 0.6s; }
.clv-pin.p4 { animation-delay: 0.9s; }
.clv-pin-ping {
  fill: none;
  stroke: rgba(217,84,30,0.45);
  stroke-width: 2;
  animation: clPinPing 2.2s ease-out infinite;
}
.clv-pin-ping.q1 { animation-delay: 0s; }
.clv-pin-ping.q2 { animation-delay: 0.55s; }
.clv-pin-ping.q3 { animation-delay: 1.1s; }
@keyframes clPinGlow {
  0%, 100% { opacity: 0.45; r: 4; }
  50% { opacity: 1; r: 6; }
}
@keyframes clPinPing {
  0% { opacity: 0.8; r: 6; }
  100% { opacity: 0; r: 13; }
}
.cl-desc {
  font-size: 0.8rem; color: var(--muted); line-height: 1.6;
}

/* CTA */
.cl-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

@media (max-width:900px) {
  .cl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:550px) {
  .cl-grid { grid-template-columns: 1fr; }
}
.cgrid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1.1rem; margin-top:2.8rem; }
.ccard { padding:1.4rem; background:var(--paper); border:1px solid var(--border); border-radius:5px; border-top:3px solid var(--orange); }
.cc-t { font-weight:600; font-size:0.88rem; color:var(--ink); margin-bottom:0.35rem; }
.cc-d { font-size:0.8rem; color:var(--muted); line-height:1.65; }

/* ── FAQ ── */
#faq { background: var(--paper); }
#faq .container > .eyebrow,
#faq .container > .display-title {
  text-align: center;
  justify-content: center;
}
#faq .container > .learn-more {
  display: block;
  width: fit-content;
  margin: 1.4rem auto 0;
}
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border); margin-top:2.8rem; border-radius:7px; overflow:hidden; }
.faq-item { background:var(--cream); padding:1.9rem; }
.faq-q { font-family: "Poppins", sans-serif; font-weight:700; font-size:0.88rem; color:var(--ink); margin-bottom:0.65rem; }
.faq-a { font-size:0.86rem; color:var(--muted); line-height:1.75; font-weight:400; }

/* Index accordion FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-accordion .faq-item {
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-accordion .faq-item:hover {
  border-color: rgba(24,21,18,0.14);
}
.faq-accordion .faq-item[open] {
  border-color: rgba(234,90,42,0.18);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.faq-accordion .faq-q {
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-accordion .faq-q::-webkit-details-marker { display: none; }
.faq-accordion .faq-chevron {
  width: 16px;
  height: 16px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-accordion .faq-chevron svg {
  width: 16px;
  height: 16px;
  display: block;
}
.faq-accordion .faq-chevron .bi-chevron-up { display: none; }
.faq-accordion .faq-chevron .bi-chevron-down { display: block; }
.faq-accordion .faq-item[open] .faq-chevron .bi-chevron-down { display: none; }
.faq-accordion .faq-item[open] .faq-chevron .bi-chevron-up { display: block; }
.faq-accordion .faq-q:hover .faq-chevron { color: var(--rust); }
.faq-accordion .faq-q:focus-visible {
  outline: 2px solid rgba(217,84,30,0.35);
  outline-offset: -2px;
  border-radius: 8px;
}
.faq-accordion .faq-item[open] .faq-q {
  color: var(--orange);
}
.faq-accordion .faq-a {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  transform-origin: top;
  animation: faqHide 0.22s ease both;
}
.faq-accordion .faq-item[open] .faq-a {
  animation: faqReveal 0.28s ease both;
}
@keyframes faqReveal {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes faqHide {
  0% { opacity: 1; }
  100% { opacity: 1; }
}

/* ── REGISTER ── */
#register { background: #fff; padding: 6.5rem 3.5rem; }
/* ── Register CTA Section ── */
.reg-section {
  padding: 5rem 0;
  background: #fff;
}

.reg-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234, 90, 42, 0.18), transparent),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(129, 162, 239, 0.08), transparent),
    linear-gradient(160deg, #12100d, #1a1510 40%, #141118 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 20px 56px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
}

.reg-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(234, 90, 42, 0.28), rgba(255, 255, 255, 0.05) 40%, rgba(129, 162, 239, 0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reg-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f7f0e6;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 0.8rem;
}
.reg-title em {
  font-style: normal;
  color: var(--orange);
}

.reg-body {
  font-size: 1rem;
  color: rgba(247, 240, 230, 0.5);
  line-height: 1.65;
  max-width: 400px;
}

.reg-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.reg-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reg-stat strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.reg-stat span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.35);
}

.reg-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.reg-price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 1.1rem 1.3rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.reg-price-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.reg-price-featured {
  border-color: rgba(234, 90, 42, 0.3);
  background: rgba(234, 90, 42, 0.06);
}

.reg-price-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.4);
  margin-bottom: 0.15rem;
}
.reg-price-featured .reg-price-label { color: var(--orange); }

.reg-price-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f7f0e6;
}

.reg-price-amount {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f7f0e6;
  line-height: 1;
  margin-top: 0.3rem;
}
.reg-price-featured .reg-price-amount { color: var(--orange); }

.reg-price-note {
  font-size: 0.78rem;
  color: rgba(247, 240, 230, 0.35);
  margin-top: 0.2rem;
}

.reg-btn {
  display: block;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--orange), #d94716);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 32px rgba(234, 90, 42, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(234, 90, 42, 0.38);
}

.reg-btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: none;
}
.reg-btn--outline:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 32px rgba(234, 90, 42, 0.25);
}

/* ── FOOTER ── */
/* footer { background:#fff; border-top:1px solid var(--border); padding:3.8rem 3.5rem 2rem; display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:2.5rem; } */


.f-logo { font-family: "Poppins", sans-serif; font-weight:800; font-size:1.45rem; color:var(--ink); margin-bottom:0.6rem; }
.f-logo span { color:var(--orange); }
.f-tag { font-size:0.78rem; color:var(--muted); max-width:210px; line-height:1.6; }
.fcol h4 { font-family: "Poppins", sans-serif; font-weight:700; font-size:0.65rem; text-transform:uppercase; letter-spacing:0.14em; color:var(--muted); margin-bottom:1.1rem; }
.fcol ul { list-style:none; }
.fcol li { margin-bottom:0.55rem; }
.fcol a { font-size:0.8rem; color:var(--ink2); text-decoration:none; transition:color 0.2s; }
.fcol a:hover { color:var(--orange); }
.f-bottom { background:var(--cream); border-top:1px solid var(--border); padding:1.1rem 3.5rem; display:flex; justify-content:space-between; font-size:0.7rem; color:var(--muted); }

/* ── STAGES (6-stage program) ── */
.stages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.stage-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(24, 21, 18, 0.06);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(43, 28, 15, 0.10);
}

/* top row: number + week badge side by side */
.stage-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.6rem;
}

.stage-num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(234, 90, 42, 0.12);
  letter-spacing: -0.04em;
}

.stage-wk {
  display: inline-flex;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(234, 90, 42, 0.08);
  border: 1px solid rgba(234, 90, 42, 0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
}

.stage-nm {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.stage-section-lbl { font-size:0.58rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--muted); margin-bottom:0.5rem; }
.stage-section-lbl,
.stage-del-lbl {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(24, 21, 18, 0.32);
  margin-bottom: 0.55rem;
}

.stage-list {
  list-style: none;
  margin-bottom: 1.2rem;
}

.stage-list li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.45rem 0 0.45rem 1.4rem;
  border-bottom: 1px solid rgba(24, 21, 18, 0.05);
  position: relative;
  line-height: 1.6;
}
.stage-list li:last-child { border-bottom: none; }
.stage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
}

.stage-dels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}
.stage-dels span {
  background: rgba(234, 90, 42, 0.06);
  border: 1px solid rgba(234, 90, 42, 0.12);
  border-radius: 24px;
  padding: 0.32rem 0.8rem;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
}

.stage-success {
  background: rgba(24, 21, 18, 0.025);
  border: 1px solid rgba(24, 21, 18, 0.05);
  border-radius: 24px;
  padding: 1rem 1.1rem;
  margin-top: auto;
}

.ss-lbl {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.ss-item {
  font-size: 0.88rem;
  color: var(--ink2);
  padding: 0.22rem 0;
  line-height: 1.55;
}

/* BMC box */
/* ── Business Model Canvas ── */
.bmc-box {
  margin-top: 2.5rem;
  padding: 2.2rem;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234, 90, 42, 0.18), transparent),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(129, 162, 239, 0.08), transparent),
    linear-gradient(160deg, #12100d, #1a1510 40%, #141118 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #f7f0e6;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.22);
  position: relative;
}
.bmc-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(234, 90, 42, 0.28), rgba(255, 255, 255, 0.05) 40%, rgba(129, 162, 239, 0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.bmc-head { margin-bottom: 1.6rem; }
.bmc-lbl {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.bmc-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f7f0e6;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.bmc-desc {
  font-size: 1rem;
  color: rgba(247, 240, 230, 0.55);
  line-height: 1.65;
  max-width: 540px;
}
.bmc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.bmc-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.bmc-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(234, 90, 42, 0.2);
}
.bmc-item span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(234, 90, 42, 0.15);
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
}
.bmc-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f7f0e6;
  line-height: 1.2;
}
.bmc-item small {
  display: block;
  font-size: 0.8rem;
  color: rgba(247, 240, 230, 0.4);
  margin-top: 0.15rem;
  font-weight: 400;
}

/* ── PAGE HEADER (for sub-pages) ── */
.page-header {
  background: #fff;
  padding: 7rem 3.5rem 4rem;
  position: relative; overflow: hidden;
}
.page-header .hero-glow { position: absolute; top: -10%; right: -5%; width: 55%; height: 80%; background: radial-gradient(ellipse, rgba(217,84,30,0.06) 0%, transparent 70%); pointer-events: none; }
.page-header .hero-grid-bg { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 56px 56px; }
.page-header .container { position: relative; z-index: 1; }
.page-header .body-text { color: var(--muted); max-width: 620px; }

/* ── PROGRAM PAGE HERO ── */
.program-hero {
  padding: 7rem 3.5rem 4rem;
  background: radial-gradient(circle at 8% 8%, rgba(217,84,30,0.05), transparent 28%),    var(--cream);
  position: relative;
  overflow: hidden;
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.program-head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.program-head-copy .display-title { margin-bottom: 0.9rem; }
.program-head-copy .body-text { max-width: 540px; }

.program-hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 2rem;
}

.program-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.program-hero-stat strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.program-hero-stat span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.program-hero-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(43, 28, 15, 0.12);
}

.program-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 21, 18, 0.12), transparent 40%);
  pointer-events: none;
}

.program-page #program {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
/* Program page stage card refinements */
.program-page .stages-grid {
  margin-top: 2rem;
}

/* Program page refinements */

/* ── Weekly Program Flow (horizontal carousel, bleeds right) ── */
.weekflow-section {
  padding: 5rem 0;
  background: var(--cream);
  overflow: hidden;
}

.weekflow-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.8rem;
}

.weekflow-kicker {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.weekflow-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.weekflow-scroll-hint {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}

.weekflow-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.2rem;
  /* Bleed to the right edge */
  margin-right: calc(-50vw + 50%);
  padding-right: calc(50vw - 50%);
}

.weekflow-track::-webkit-scrollbar { height: 3px; }
.weekflow-track::-webkit-scrollbar-track { background: transparent; }
.weekflow-track::-webkit-scrollbar-thumb { background: rgba(234, 90, 42, 0.18); border-radius: 3px; }

.wf-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(24, 21, 18, 0.06);
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.wf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43, 28, 15, 0.08);
}

.wf-card-num {
  font-family: "Poppins", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(234, 90, 42, 0.08);
}

.wf-card-week {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.2rem;
}

.wf-card-stage {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 0.2rem;
}

.wf-card-sep {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(234, 90, 42, 0.15));
  margin: 1rem 0;
}

.wf-card-act {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

.wf-card-del {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  background: rgba(24, 21, 18, 0.025);
  border-radius: 24px;
}

/* Finale card — dark */
.wf-card--finale {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(234, 90, 42, 0.18), transparent),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(129, 162, 239, 0.08), transparent),
    linear-gradient(160deg, #12100d, #1a1510 40%, #141118 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.wf-card--finale::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(234, 90, 42, 0.28), rgba(255, 255, 255, 0.05) 40%, rgba(129, 162, 239, 0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.wf-card--finale .wf-card-num { color: rgba(234, 90, 42, 0.2); }
.wf-card--finale .wf-card-week { color: var(--orange); }
.wf-card--finale .wf-card-stage { color: #f7f0e6; }
.wf-card--finale .wf-card-sep { background: linear-gradient(90deg, var(--orange), rgba(234, 90, 42, 0.4)); }
.wf-card--finale .wf-card-act { color: rgba(247, 240, 230, 0.5); }
.wf-card--finale .wf-card-del { background: rgba(255, 255, 255, 0.05); color: #f7f0e6; }
@keyframes weekflowEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wfScan {
  0% { background-position: center, center, -90% 72%, center; }
  100% { background-position: center, center, 190% 72%, center; }
}
@keyframes wfBars {
  0% { background-position: center, -50% 56%, center; }
  100% { background-position: center, 140% 56%, center; }
}
@keyframes wfPulse {
  0%, 100% {
    transform: scale(1);
    filter: saturate(0.95);
  }
  50% {
    transform: scale(1.02);
    filter: saturate(1.25);
  }
}

/* ── HOME SECTION SUMMARIES ── */
.section-summary { padding: 4.5rem 3.5rem; }
.section-summary .container { max-width: 1180px; margin: 0 auto; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; align-items: start; }
.summary-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 2rem; }
.learn-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--orange); text-decoration: none;
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 1.5rem; transition: gap 0.2s;
}
.learn-more:hover { gap: 0.8rem; }
.learn-more::after { content: '→'; }

/* ── DECORATIVE PATTERNS ── */
.deco-wrap {
  position: relative;
  height: 0; overflow: visible;
  pointer-events: none; z-index: 0;
}
.deco-shape { position: absolute; }
.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

/* Pattern 1 — after ticker */
.deco-1 .deco-circle-lg {
  width: 180px; height: 180px;
  top: -90px; right: 8%;
  animation: decoSpin 30s linear infinite;
}
.deco-1 .deco-dots {
  width: 100px; height: 100px;
  top: -50px; left: 5%;
  animation: decoFloat 8s ease-in-out infinite;
}
.deco-1 .deco-blob-1 {
  width: 300px; height: 300px;
  top: -150px; right: -50px;
  background: rgba(217,84,30,0.04);
}

/* Pattern 2 — after about */
.deco-2 .deco-cross {
  width: 50px; height: 50px;
  top: -25px; left: 12%;
  animation: decoSpin 20s linear infinite reverse;
}
.deco-2 .deco-ring-sm {
  width: 70px; height: 70px;
  top: -35px; right: 15%;
  animation: decoFloat 6s ease-in-out 1s infinite;
}
.deco-2 .deco-blob-2 {
  width: 250px; height: 250px;
  top: -125px; left: -80px;
  background: rgba(184,135,42,0.03);
}

/* Pattern 3 — after program */
.deco-3 .deco-triangle {
  width: 90px; height: 90px;
  top: -45px; right: 10%;
  animation: decoSpin 25s linear infinite;
}
.deco-3 .deco-dots-2 {
  width: 80px; height: 80px;
  top: -40px; left: 20%;
  animation: decoFloat 7s ease-in-out 0.5s infinite;
}
.deco-3 .deco-blob-3 {
  width: 280px; height: 280px;
  top: -140px; right: -100px;
  background: rgba(217,84,30,0.03);
}

/* Pattern 4 — before register */
.deco-4 .deco-hex {
  width: 120px; height: 120px;
  top: -60px; left: 8%;
  animation: decoSpin 35s linear infinite;
}
.deco-4 .deco-circle-sm {
  width: 60px; height: 60px;
  top: -30px; right: 12%;
  animation: decoFloat 5s ease-in-out infinite;
}

@keyframes decoSpin { to { transform: rotate(360deg); } }
@keyframes decoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hide old dividers on white bg */
hr.divider { display: none; }

@media (max-width:900px) {
  .deco-wrap { display: none; }
}

/* ── EXPLORE GRID ── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2.5rem;
}
.explore-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.explore-card:hover {
  border-color: rgba(217,84,30,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.ex-ico { width: 40px; height: 40px; flex-shrink: 0; }
.ex-ico svg { width: 100%; height: 100%; }
.ex-body { flex: 1; min-width: 0; }
.ex-title {
  font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--ink); line-height: 1.25;
}
.ex-desc {
  font-size: 0.7rem; color: var(--muted); line-height: 1.45;
  margin-top: 0.15rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ex-arrow {
  font-size: 1rem; color: var(--border); flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.explore-card:hover .ex-arrow { color: var(--orange); transform: translateX(3px); }
.explore-card:hover .ex-title { color: var(--orange); }

@media (max-width:1000px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:550px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  nav {
    padding:0 1.4rem;
    position: sticky;
  }
  .nav-reg { display:none; }
  .nav-toggle { display:inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 1.4rem 1rem;
    flex-direction: column;
    gap: 0.45rem;
    z-index: 120;
  }
  body.nav-open .nav-links { display:flex; }
  .nav-links a {
    display:block;
    padding: 0.6rem 0.2rem;
    font-size: 0.9rem;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .section { padding:4rem 0rem; }
  .section-summary { padding:3rem 0rem; }
  #hero { min-height: auto; grid-template-rows: auto auto auto; }
  .hero-split { grid-template-columns:1fr !important; gap:1.4rem; padding:3.8rem 1.4rem 1.3rem !important; }
  .hero-pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    letter-spacing: 0.12em;
    font-size: 0.58rem;
    margin-bottom: 1.2rem;
  }
  .hero-sub { max-width: 100%; margin-top: 1rem; }
  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
    margin-top: 1.2rem;
  }
  .hero-actions .btn-fill,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 0.82rem 1rem;
  }
  .hero-visual { min-height:320px; }
  .orbit-system { width:340px; height:340px; }
  .ring-1 { width:180px; height:180px; margin:-90px 0 0 -90px; }
  .ring-2 { width:260px; height:260px; margin:-130px 0 0 -130px; }
  .ring-3 { width:340px; height:340px; margin:-170px 0 0 -170px; }
  .so-card { min-width:85px; padding:0.45rem 0.6rem; }
  .so-name { font-size:0.72rem; }
  .hero-terminal { width:300px; }
  .so-card { min-width:85px; padding:0.45rem 0.6rem; }
  .so-name { font-size:0.72rem; }
  .hero-h1 { font-size:clamp(2.5rem, 8vw, 4rem); }
  .hero-stats-bar { padding:0 1.4rem; }
  .hero-org-bar {
    padding: 0.8rem 1.4rem;
    gap: 0.65rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
  .about-2col,.conclave-2col,.reg-grid,.mentor-intro { grid-template-columns:1fr; gap:2.5rem; }
  .about-hero { padding: 7rem 1.4rem 3rem; min-height: 420px; }
  .about-cards-grid { grid-template-columns: 1fr; }
  .about-head-copy .display-title {
    max-width: 11ch;
    font-size: clamp(2.8rem, 9vw, 4.6rem);
  }
  .about-head-visual {
    max-width: none;
    width: 100%;
    min-height: 420px;
  }
  .site-nav {
    width: calc(100vw - 24px);
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 16px;
    border-radius: 24px;
    align-items: center;
    flex-wrap: wrap;
    height: unset;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-nav .nav-links { display: none; }
  .nav-actions { display: none !important; }
  .site-nav.is-open .nav-actions { display: none !important; }
  .site-nav.is-open .nav-links {
    display: flex !important;
    width: 100% !important;
    flex-basis: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }
  .nav-brochure-mobile { display: block; }
  .site-nav.is-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-nav.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.is-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .program-hero { padding: 5rem 1.4rem 2.5rem; }
  .program-head-grid { grid-template-columns: 1fr; gap: 2rem; }
  .program-hero-img { max-width: 100%; aspect-ratio: 16 / 9; }
  .program-hero-stats { gap: 18px; }
  .program-page #program { padding-top: 2.4rem; }
  .program-page .stages-grid { margin-top: 1.5rem; }
  .stage-card { padding: 1.6rem 1.4rem; }
  .bmc-box { padding: 1.5rem; }
  .bmc-grid { grid-template-columns: repeat(2, 1fr); }
  .wf-card { flex: 0 0 260px; }
  .reg-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .about-page .about-prose { padding: 1.4rem 1.35rem; }
  .about-hero { padding: 6rem 1rem 2.5rem; min-height: 380px; }
  .about-hero-stats { gap: 18px; }
  .about-head-overlay {
    inset: auto 14px 14px 14px;
    padding: 0.95rem;
    max-width: none;
  }
  .about-page .diff-head { grid-template-columns: 1fr; gap: 0.85rem; }
  .about-page .diff-head .body-text { justify-self: start; max-width: none; margin-bottom: 0; }
  .about-page .dtable th,
  .about-page .dtable td { padding-left: 0.85rem; padding-right: 0.85rem; }
  #register.register-modern { padding:4.6rem 1.4rem; }
  .reg-aurora { width:320px; height:320px; filter: blur(44px); }
  .reg-panel { padding:0.95rem; border-radius:24px; }
  .reg-kpis { gap:0.45rem; }
  .reg-kpi { font-size:0.62rem; }
  .rcard { padding:1rem; }
  .r-price { font-size:1.55rem; }
  .phases { grid-template-columns:1fr; }
  .stages-grid { grid-template-columns:1fr; }
  .bmc-grid { grid-template-columns: 1fr; }
  .stages-grid { grid-template-columns: 1fr; }
  .wf-card { flex: 0 0 240px; }
  .weekflow-head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .faq-grid { grid-template-columns:1fr; }
  .summary-grid { grid-template-columns:1fr; }
  footer { grid-template-columns:1fr 1fr; }
  .prizes-top { grid-template-columns:1fr; }
  .tier-row { grid-template-columns:1fr; }
  .tier-lbl-col { text-align:left; }
  .float-tab { display:none; }
  .float-tab-pulse { display:none; }
  .float-register { right: 14px; bottom: 14px; }
  .site-page-offset { padding-top: 92px; }
  .page-header { padding:8rem 0rem 3rem; }

  /* Subpage heroes with bg images */
  .about-hero,
  .conclave-hero,
  .tl-hero,
  .col-hero { padding: 7rem 1.4rem 3rem; min-height: 380px; }

  .about-hero-stats,
  .program-hero-stats { flex-wrap: wrap; gap: 16px; }

  /* About page cards */
  .about-cards-grid { grid-template-columns: 1fr; }
  .about-card { padding: 1.5rem; }
  .about-quote-block { padding: 1.5rem; }
  .about-quote-block blockquote { font-size: 1.2rem; }

  /* Conclave */
  .conclave-2col { grid-template-columns: 1fr; gap: 2rem; }
  .cfacts { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .cfact { padding: 1.2rem; }

  /* College cards */
  .col-grid { grid-template-columns: 1fr; }
  .col-card { padding: 1.4rem; }
  .col-cta-row { flex-direction: column; gap: 1rem; }

  /* Timeline vertical list */
  .tl-list { padding-left: 44px; }
  .tl-marker { left: -44px; }
  .tl-marker span { width: 36px; height: 36px; font-size: 0.85rem; border-radius: 24px; }
  .tl-title { font-size: 1.1rem; }

  /* Stage cards */
  .stages-grid { grid-template-columns: 1fr !important; }
  .stage-card { padding: 1.5rem 1.3rem; }
  .wf-card-stage { font-size: 1.15rem; }

  /* Register page */
  .reg-card { grid-template-columns: 1fr; gap: 2rem; padding: 1.8rem; }
  .reg-stats { flex-wrap: wrap; }

  /* BMC */
  .bmc-box { padding: 1.4rem; }
  .bmc-title { font-size: 1.5rem; }
  .bmc-grid { grid-template-columns: 1fr !important; }

  /* FAQ accordion */
  .faq-accordion .faq-q { padding: 1rem 1.1rem; font-size: 0.92rem; }
  .faq-accordion .faq-a { padding: 0 1.1rem 1rem; font-size: 0.88rem; }

  /* Display title global mobile */
  .display-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  /* Footer */
  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .footer-links { justify-content: center; }

  /* Float register */
  .float-register { right: 14px; bottom: 14px; left: 14px; text-align: center; }

  /* Sponsor tiers */
  .sp-why { grid-template-columns: 1fr 1fr; }
  .sp-tier { grid-template-columns: 1fr; }
  .sp-tier-head { border-right: none; border-bottom: 1px solid rgba(24,21,18,0.06); }

  /* Mentor grid */
  .mn-grid { grid-template-columns: 1fr; }
  .mn-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width:550px) {
  .hero-h1 { font-size: clamp(2.15rem, 11vw, 2.8rem); }
  .hero-sub { font-size: 0.86rem; line-height: 1.65; }
  .hero-visual { min-height: 250px; }
  .stage-orbit,
  .hero-particles { display: none; }
  .hero-terminal {
    display: block;
    width: min(92vw, 320px);
    top: 54%;
  }
  .term-body { padding: 0.85rem 0.95rem; }
  .term-line { font-size: 0.72rem; line-height: 1.6; }
  .orbit-system { width:250px; height:250px; }
  .ring-1 { width:130px; height:130px; margin:-65px 0 0 -65px; }
  .ring-2 { width:190px; height:190px; margin:-95px 0 0 -95px; }
  .ring-3 { width:250px; height:250px; margin:-125px 0 0 -125px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hstat {
    min-width: 0;
    padding: 0.9rem 0;
    padding-right: 0.7rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hstat-n { font-size: 1.35rem; }
  .hstat-l { font-size: 0.58rem; }
  .hero-org-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.22rem;
    padding: 0.7rem 1.1rem 0.8rem;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }
  .hero-org-bar span { display: none; }

  /* New elements small mobile */
  .about-hero,
  .conclave-hero,
  .tl-hero,
  .col-hero { padding: 8rem 1rem 2.5rem; min-height: 320px; }

  .display-title { font-size: clamp(2rem, 9vw, 2.8rem); }

  .reg-card { padding: 1.4rem; }
  .reg-title { font-size: 1.6rem; }
  .reg-price-amount { font-size: 1.4rem; }
  .reg-btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; border-radius: 24px; }

  .sp-why { grid-template-columns: 1fr; }
  .mn-stats { grid-template-columns: 1fr; }
  .cfacts { grid-template-columns: 1fr; }

  .tl-list { padding-left: 38px; }
  .tl-marker { left: -38px; }
  .tl-marker span { width: 30px; height: 30px; font-size: 0.75rem; border-radius: 8px; }
  .tl-title { font-size: 1rem; }
  .tl-desc { font-size: 0.88rem; }

  .col-card-num { font-size: 2rem; }
  .col-card-title { font-size: 1rem; }

  .about-card-num { font-size: 2.2rem; }
  .about-card-title { font-size: 1.1rem; }

  .bmc-title { font-size: 1.3rem; }
  .bmc-item { padding: 0.7rem 0.8rem; font-size: 0.82rem; }

  .scta { padding: 1.8rem; flex-direction: column; text-align: center; }
  .scta h3 { font-size: 1.3rem; }
}
