/* ============================================================
   NIC LAHORE – Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --primary:       #1B3564;
  --primary-dark:  #0F1E3A;
  --primary-mid:   #1E4080;
  --red:           #BC0005;
  --red-dark:      #9F1D26;
  --red-light:     #E94855;
  --gold:          #FBAF17;
  --gold-dark:     #F6BC16;
  --peach:         #FCEDE7;
  --peach-edge:    #F8DCD2;
  --grad-warm:     linear-gradient(135deg, #9F1D26 0%, #BC0005 45%, #1B3564 100%);
  --grad-warm-cta: linear-gradient(135deg, #BC0005 0%, #E94855 50%, #FBAF17 100%);
  --blue:          #1D62DC;
  --blue-hover:    #1751C4;
  --white:         #FFFFFF;
  --off-white:     #F8FAFB;
  --gray-50:       #F9FAFB;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-300:      #D1D5DB;
  --gray-500:      #6B7280;
  --gray-600:      #4B5563;
  --gray-700:      #374151;
  --gray-900:      #111827;
  --text:          #1A202C;
  --text-muted:    #64748B;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow:        0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.12);
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-full:   999px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:         1400px;
  --nav-h:         80px;
  --mono:          'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
/* overflow-x: clip (not hidden) prevents horizontal scroll WITHOUT creating a
   scroll container — so position:sticky (pillar scroll, etc.) keeps working. */
html { scroll-behavior:smooth; overflow-x: clip; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight:800; line-height:1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight:700; line-height:1.25; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight:600; line-height:1.3; }
h4 { font-size: 1.1rem; font-weight:600; }
p  { font-size: 1rem; color: var(--text-muted); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(188,0,5,0.30);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(188,0,5,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo .nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .nic { font-size:1.4rem; font-weight:800; color:var(--primary); line-height:1; }
.nav-logo-text .lahore { font-size:0.75rem; font-weight:500; color:var(--text-muted); letter-spacing:0.05em; text-transform:uppercase; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex:1;
  justify-content: center;
}
.nav-item { position:relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--gray-50);
}
.nav-link svg { transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown a:hover {
  background: var(--gray-50);
  color: var(--primary);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink:0;
}
.nav-partners {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-partners img {
  height: 28px;
  width: auto;
  opacity: 0.8;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://placehold.co/1920x1080/1B3564/1B3564');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,58,0.85) 0%, rgba(27,53,100,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width:20px; height:20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ============================================================
   METRICS BAR
   ============================================================ */
.metrics-bar {
  background: var(--grad-warm);
  padding: 0;
}
.metrics-inner {
  display: flex;
  align-items: stretch;
}
.metric-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.metric-item:last-child { border-right: none; }
.metric-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 56px 0; background-color: var(--white); isolation: isolate; }
.section-sm { padding: 28px 0; }
.section-lg { padding: 80px 0; }
.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}
.section-dark p, .section-dark h2, .section-dark h3 { color: inherit; }
.section-light { background: var(--peach); }
.section-primary { background: var(--grad-warm); color: var(--white); }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}
.section-header h2 { color: var(--primary); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  background: rgba(188,0,5,0.1);
  color: var(--red);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission-section {
  background: var(--off-white);
  padding: 96px 0;
}
.mission-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.mission-text { flex:1; }
.mission-text h2 { color:var(--primary); margin-bottom:16px; }
.mission-text p { font-size:1.05rem; margin-bottom:24px; }
.mission-image {
  flex:1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
.mission-image img { width:100%; height:100%; object-fit:cover; }

/* ============================================================
   HIGHLIGHTS GRID
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.highlight-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  overflow: hidden;
}
.program-card-img img { width:100%; height:100%; object-fit:cover; }
.program-card-img-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size: 3rem;
}
.program-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-icon {
  width: 48px; height: 48px;
  background: rgba(188,0,5,0.1);
  border-radius: var(--radius);
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
  color: var(--red);
}
.program-card-body h3 { color:var(--primary); margin-bottom:10px; }
.program-card-body p { flex:1; margin-bottom:20px; font-size:0.93rem; }

/* ============================================================
   STARTUPS CAROUSEL
   ============================================================ */
.startups-carousel {
  position: relative;
  overflow: hidden;
}
.startups-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.startup-card {
  flex-shrink: 0;
  width: calc((100% - 72px) / 4);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.startup-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.startup-card-img {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  overflow: hidden;
}
.startup-card-img img { width:100%; height:100%; object-fit:cover; }
.startup-card-body { padding: 20px; }
.startup-card-body h4 { color:var(--primary); margin-bottom:6px; }
.startup-card-body p { font-size:0.85rem; margin-bottom:10px; }
.startup-founder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.founder-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  display:flex; align-items:center; justify-content:center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink:0;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex; align-items:center; justify-content:center;
  color: var(--primary);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================================
   GLOBAL / PLUG & PLAY SECTION
   ============================================================ */
.global-section {
  background: var(--grad-warm);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.global-section::before {
  content:'';
  position:absolute;
  top:-40%; right:-10%;
  width:600px; height:600px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(251,175,23,0.22), transparent 70%);
}
.global-section::after {
  content:'';
  position:absolute;
  bottom:-40%; left:-10%;
  width:500px; height:500px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(231,72,85,0.25), transparent 70%);
}
.global-section > .container { position: relative; z-index: 1; }
.global-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.global-text { flex:1; }
.global-text .section-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.global-text h2 { color: var(--white); margin-bottom:16px; }
.global-text p { color:rgba(255,255,255,0.75); font-size:1.05rem; margin-bottom:32px; }
.global-image {
  flex:1;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
}
.global-image img { width:100%; height:100%; object-fit:cover; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(188,0,5,0.1);
  border-radius: var(--radius);
  display: flex; align-items:center; justify-content:center;
  color: var(--red);
  flex-shrink: 0;
}
.benefit-text h4 { color:var(--primary); margin-bottom:6px; }
.benefit-text p { font-size:0.9rem; }

/* ============================================================
   MARQUEE / LOGO CAROUSEL
   ============================================================ */
.marquee-section { padding: 28px 0; overflow:hidden; background: var(--peach); }
.marquee-label {
  text-align:center;
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:24px;
}
.marquee-wrapper { overflow:hidden; position:relative; }
.marquee-wrapper::before,
.marquee-wrapper::after {
  content:'';
  position:absolute;
  top:0; bottom:0;
  width:80px;
  z-index:1;
}
.marquee-wrapper::before { left:0; background:linear-gradient(to right, var(--peach), transparent); }
.marquee-wrapper::after  { right:0; background:linear-gradient(to left, var(--peach), transparent); }
.marquee-track {
  display:flex;
  gap:40px;
  width:max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state:paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  display:flex;
  align-items:center;
  justify-content:center;
  height:52px;
  padding: 0 16px;
  background: var(--white);
  border:1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size:0.82rem;
  font-weight:700;
  color:var(--gray-600);
  white-space:nowrap;
  flex-shrink:0;
  transition:var(--transition);
  min-width:120px;
}
.partner-logo:hover { border-color:var(--red); color:var(--red); }
.partner-logo img { height:28px; width:auto; }

/* ============================================================
   ABOUT SECTION (homepage snippet)
   ============================================================ */
.about-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { color:var(--primary); margin-bottom:16px; }
.about-text p { font-size:1.05rem; margin-bottom:24px; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.about-stat { text-align:center; }
.about-stat .num { font-size:2rem; font-weight:800; color:var(--primary); }
.about-stat .lbl { font-size:0.8rem; color:var(--text-muted); }
.about-image {
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.about-image img { width:100%; height:100%; object-fit:cover; }

/* Govt partner logos row */
.govt-partners {
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:24px;
  flex-wrap:wrap;
}
.govt-badge {
  display:flex; align-items:center; gap:8px;
  padding:8px 14px;
  background:var(--gray-50);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-sm);
  font-size:0.8rem;
  font-weight:600;
  color:var(--gray-700);
}
.govt-badge img { height:20px; }

/* ============================================================
   REGISTER EVENT CTA SECTION
   ============================================================ */
.register-cta {
  background: var(--grad-warm);
  padding: 48px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.register-cta::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(251,175,23,0.25), transparent 70%);
  border-radius: 50%;
}
.register-cta > .container { position: relative; z-index: 1; }
.register-cta h2 { color:var(--white); margin-bottom:14px; }
.register-cta p { color:rgba(255,255,255,0.75); font-size:1.05rem; margin-bottom:32px; max-width:500px; margin-left:auto; margin-right:auto; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section { background: var(--peach); padding:48px 0; }
.testimonial-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:48px;
  max-width:720px;
  margin:0 auto;
  text-align:center;
  box-shadow:var(--shadow);
  position:relative;
}
.testimonial-card::before {
  content:'"';
  position:absolute;
  top:-10px; left:40px;
  font-size:6rem;
  color:var(--red);
  opacity:0.15;
  line-height:1;
  font-family:Georgia,serif;
}
.testimonial-text {
  font-size:1.15rem;
  font-style:italic;
  color:var(--text);
  line-height:1.7;
  margin-bottom:24px;
}
.testimonial-author {
  display:flex; align-items:center; justify-content:center; gap:12px;
}
.testimonial-avatar {
  width:44px; height:44px;
  border-radius:50%;
  background: var(--red);
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-weight:700;
}
.testimonial-info .name { font-weight:700; color:var(--primary); font-size:0.95rem; }
.testimonial-info .role { font-size:0.82rem; color:var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-text { font-size:1.5rem; font-weight:800; color:var(--white); margin-bottom:12px; }
.footer-brand p { font-size:0.88rem; line-height:1.7; max-width:260px; color:rgba(255,255,255,0.6); margin-bottom:20px; }
.footer-social {
  display:flex; gap:10px; margin-bottom:16px;
}
.social-icon {
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.7);
  transition:var(--transition);
}
.social-icon:hover {
  background:var(--red);
  border-color:var(--red);
  color:var(--white);
}
.footer-heading {
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:20px;
}
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a {
  font-size:0.88rem;
  color:rgba(255,255,255,0.6);
  transition:var(--transition);
}
.footer-links a:hover { color:var(--white); }
.footer-contact { display:flex; flex-direction:column; gap:14px; }
.footer-contact-item {
  display:flex; gap:12px; align-items:flex-start;
}
.footer-contact-item svg { flex-shrink:0; margin-top:2px; color:rgba(255,255,255,0.5); }
.footer-contact-item a,
.footer-contact-item span {
  font-size:0.88rem;
  color:rgba(255,255,255,0.65);
  line-height:1.5;
  transition:var(--transition);
}
.footer-contact-item a:hover { color:var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom p { font-size:0.82rem; color:rgba(255,255,255,0.4); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { font-size:0.82rem; color:rgba(255,255,255,0.4); transition:var(--transition); }
.footer-bottom-links a:hover { color:rgba(255,255,255,0.8); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
/* ---- Editorial page hero (shared by all sub-pages) ---- */
.page-hero {
  background: #fff;
  padding: calc(var(--nav-h) + 88px) 0 88px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(188,0,5,0.12) 0%, rgba(188,0,5,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -220px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(251,175,23,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--text);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 22px;
  max-width: 20ch;
  animation: heroRise 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: 0.15s;
}
.page-hero h1::after {
  content: '';
  display: block;
  width: 64px; height: 3px;
  background: var(--grad-warm-cta);
  border-radius: var(--radius-full);
  margin-top: 24px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  max-width: 60ch;
  margin: 0;
  animation: heroRise 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: 0.42s;
}

/* Breadcrumb → editorial mono eyebrow on the page hero */
.page-hero .breadcrumb {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 28px;
  animation: heroFade 0.6s ease both;
}
.page-hero .breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero .breadcrumb span { color: var(--gray-300); }
.page-hero .breadcrumb span:last-child { color: var(--red); font-weight: 600; }

/* legacy fallback (unused elsewhere; kept safe) */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }

/* Centered variant of the editorial page hero (e.g. Investment Summit) */
.page-hero--center { text-align: center; }
.page-hero--center .breadcrumb { display: flex; justify-content: center; margin-bottom: 18px; }
.page-hero--center h1 { margin-left: auto; margin-right: auto; }
.page-hero--center h1::after { margin-left: auto; margin-right: auto; }
.page-hero--center p { margin-left: auto; margin-right: auto; }
.page-hero-meta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  background: rgba(188,0,5,0.08);
  border: 1px solid rgba(188,0,5,0.18);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  animation: heroFade 0.6s ease both;
}
.page-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: heroRise 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: 0.5s;
}
.page-hero--center .countdown-bar { margin: 40px auto 0; }

@media (prefers-reduced-motion: reduce) {
  .page-hero .breadcrumb,
  .page-hero h1,
  .page-hero p { animation: none !important; opacity: 1 !important; transform: none !important; }
}
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 56px; }
  .page-hero h1 { max-width: 100%; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-overview {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.about-overview img {
  width:100%; border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
}
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--red-dark);
  transform: scale(1.06);
}
.why-card-body { min-width: 0; }
.why-card h4 { color: var(--primary); margin-bottom: 6px; font-size: 1rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.partner-cards {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.partner-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:var(--shadow-sm);
}
.partner-card-logo {
  height:48px; margin-bottom:20px;
  display:flex; align-items:center;
}
.partner-card-logo img { height:100%; width:auto; }
.partner-card-name {
  font-size:1.1rem; font-weight:700; color:var(--primary); margin-bottom:10px;
}

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
.journey-section { background: var(--peach); padding:72px 0; }
.journey-steps {
  position:relative;
  max-width:800px;
  margin:0 auto;
}
.journey-steps::before {
  content:'';
  position:absolute;
  left:40px; top:0; bottom:0;
  width:2px;
  background:var(--gray-200);
}
.journey-step {
  display:flex;
  gap:24px;
  margin-bottom:36px;
  position:relative;
}
.journey-step-num {
  width:52px; height:52px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; font-weight:700;
  flex-shrink:0;
  position:relative; z-index:1;
  box-shadow:0 0 0 4px var(--white);
}
.journey-step-content {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:20px 24px;
  flex:1;
  box-shadow:var(--shadow-sm);
}
.journey-step-content h4 { color:var(--primary); margin-bottom:4px; }
.journey-step-content p { font-size:0.88rem; }
.journey-step-tag {
  display:inline-block;
  background:rgba(188,0,5,0.1);
  color:var(--red);
  padding:2px 10px;
  border-radius:var(--radius-full);
  font-size:0.75rem;
  font-weight:600;
  margin-bottom:6px;
}
.alumni-section { padding:56px 0; }
.alumni-benefits-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.alumni-benefit {
  background:var(--gray-50);
  border-radius:var(--radius);
  padding:24px;
  text-align:center;
  border:1px solid var(--gray-100);
}
.alumni-benefit .icon {
  font-size:2rem; margin-bottom:12px;
}
.alumni-benefit h4 { color:var(--primary); font-size:0.95rem; margin-bottom:6px; }
.alumni-benefit p { font-size:0.82rem; }

/* ============================================================
   DIRECTORY PAGE
   ============================================================ */
.startups-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.startup-dir-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.startup-dir-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.startup-dir-card-img {
  aspect-ratio:16/9;
  background:var(--gray-100);
  overflow:hidden;
}
.startup-dir-card-img img { width:100%; height:100%; object-fit:cover; }
.startup-dir-card-body { padding:20px; }
.startup-dir-card-body h4 { color:var(--primary); margin-bottom:6px; }
.startup-dir-card-body p { font-size:0.85rem; }
.startup-tag {
  display:inline-block;
  background:rgba(188,0,5,0.08);
  color:var(--red);
  padding:3px 10px;
  border-radius:var(--radius-full);
  font-size:0.75rem;
  font-weight:600;
  margin-bottom:8px;
}
/* Team section */
.team-section { background: var(--peach); padding:56px 0; }
.team-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.team-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--gray-100);
  transition:var(--transition);
  text-align:center;
}
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.team-card-img {
  aspect-ratio:1;
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 50%, var(--red-dark) 100%);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.team-card-img img { width:100%; height:100%; object-fit:cover; }
.team-card-avatar {
  width:80px; height:80px;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--white);
  font-size:2rem;
  font-weight:800;
}
.team-card-body { padding:20px; }
.team-card-body h4 { color:var(--primary); font-size:0.95rem; margin-bottom:4px; }
.team-card-body .role { font-size:0.8rem; color:var(--text-muted); margin-bottom:12px; }
.team-linkedin {
  display:inline-flex; align-items:center; gap:4px;
  font-size:0.78rem; color:var(--red); font-weight:500;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.resource-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:24px;
  display:flex; gap:16px;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.resource-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.resource-icon {
  width:52px; height:52px;
  background:rgba(188,0,5,0.1);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  flex-shrink:0;
}
.resource-body h4 { color:var(--primary); margin-bottom:4px; font-size:0.95rem; }
.resource-body p { font-size:0.82rem; }
.resource-duration {
  display:inline-flex; align-items:center; gap:4px;
  font-size:0.75rem; color:var(--text-muted); font-weight:500; margin-top:6px;
}
.news-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.news-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.news-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.news-card-img {
  aspect-ratio:16/9;
  background:var(--gray-100);
  overflow:hidden;
}
.news-card-img img { width:100%; height:100%; object-fit:cover; }
.news-card-body { padding:20px; }
.news-date { font-size:0.78rem; color:var(--text-muted); margin-bottom:8px; }
.news-card-body h4 { color:var(--primary); font-size:0.95rem; line-height:1.4; }

/* ============================================================
   INVESTOR SUMMIT
   ============================================================ */
/* ---- Event countdown — premium dark card on the editorial hero ---- */
.countdown-bar {
  display: inline-flex;
  gap: 0;
  background: linear-gradient(135deg, #0F1E3A 0%, #1B3564 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0 0;
  box-shadow: 0 24px 50px rgba(15,30,58,0.22);
  position: relative;
  isolation: isolate;
}
/* brand-warm accent strip at the top of the card */
.countdown-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-warm-cta);
  z-index: 1;
}
/* soft red glow behind the card for a touch of energy */
.countdown-bar::after {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(188,0,5,0.35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.countdown-item {
  position: relative;
  z-index: 1;
  padding: 22px 30px;
  text-align: center;
  min-width: 96px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.countdown-item:last-child { border-right: none; }
.countdown-item:hover { background: rgba(255,255,255,0.04); }
.countdown-num {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.expect-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.expect-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:32px 24px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.expect-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.expect-icon {
  width:60px; height:60px;
  background:rgba(188,0,5,0.1);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  margin:0 auto 16px;
}
.expect-card h4 { color:var(--primary); margin-bottom:8px; }
.market-stats-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.market-stat-card {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:28px 20px;
  text-align:center;
}
.market-stat-num {
  font-size:2rem; font-weight:800; color:var(--white);
  margin-bottom:8px;
}
.market-stat-label { font-size:0.85rem; color:rgba(255,255,255,0.65); }
.schedule-days {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.schedule-day {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.schedule-day-header {
  background: var(--grad-warm);
  color:var(--white);
  padding:20px 24px;
}
.schedule-day-header h4 { color:var(--white); font-size:1rem; margin-bottom:2px; }
.schedule-day-header .day-time { font-size:0.78rem; color:rgba(255,255,255,0.7); }
.schedule-sessions { padding:16px; }
.session-item {
  display:flex; gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--gray-100);
}
.session-item:last-child { border-bottom:none; }
.session-time { font-size:0.75rem; color:var(--text-muted); font-weight:600; min-width:80px; padding-top:2px; }
.session-name { font-size:0.88rem; color:var(--text); font-weight:500; }

/* ============================================================
   CORPORATE INNOVATION
   ============================================================ */
.services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.service-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:36px 28px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.service-icon {
  width:64px; height:64px;
  background:rgba(188,0,5,0.1);
  border-radius:var(--radius-lg);
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  margin:0 auto 20px;
}
.service-card h3 { color:var(--primary); margin-bottom:12px; }
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.gallery-item {
  aspect-ratio:4/3;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--gray-200);
  cursor:pointer;
  transition:var(--transition);
}
.gallery-item:hover { transform:scale(1.02); }
.gallery-item.large { grid-column:span 2; aspect-ratio:16/9; }
.gallery-item img { width:100%; height:100%; object-fit:cover; }

/* ============================================================
   EVENT REGISTER FORM
   ============================================================ */
.register-form-section {
  background: var(--peach);
  padding:96px 0;
}
.register-form-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:56px;
  max-width:680px;
  margin:0 auto;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--gray-100);
}
.register-form-card h2 { color:var(--primary); margin-bottom:8px; }
.register-form-card > p { margin-bottom:36px; }
.form-group { margin-bottom:24px; }
.form-label {
  display:block;
  font-size:0.9rem;
  font-weight:600;
  color:var(--gray-700);
  margin-bottom:8px;
}
.form-options {
  display:flex; gap:12px; flex-wrap:wrap;
}
.form-option-btn {
  padding:10px 20px;
  border:2px solid var(--gray-200);
  border-radius:var(--radius-full);
  font-size:0.9rem;
  font-weight:500;
  color:var(--gray-700);
  cursor:pointer;
  transition:var(--transition);
  background:var(--white);
}
.form-option-btn.active,
.form-option-btn:hover {
  border-color:var(--red);
  color:var(--red);
  background:rgba(188,0,5,0.06);
}
.form-success, .form-error {
  padding:16px 20px;
  border-radius:var(--radius);
  font-size:0.92rem;
  font-weight:500;
  margin-top:16px;
  display:none;
}
.form-success { background:#D1FAE5; color:#065F46; }
.form-error   { background:#FEE2E2; color:#991B1B; }

/* ============================================================
   PROGRAM DETAIL PAGES
   ============================================================ */
.program-stats-row {
  display:flex;
  background: var(--grad-warm);
  border-radius:var(--radius-lg);
  overflow:hidden;
  margin-bottom:64px;
}
.prog-stat {
  flex:1;
  padding:28px 16px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,0.12);
}
.prog-stat:last-child { border-right:none; }
.prog-stat .num { font-size:2rem; font-weight:800; color:var(--white); }
.prog-stat .lbl { font-size:0.8rem; color:rgba(255,255,255,0.65); }
.pillar-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.pillar-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.pillar-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.pillar-card .num {
  font-size:2.5rem;
  font-weight:900;
  color:rgba(188,0,5,0.12);
  line-height:1;
  margin-bottom:8px;
}
.pillar-card h4 { color:var(--primary); margin-bottom:8px; }
.phases-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.phase-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-sm);
}
.phase-badge {
  display:inline-block;
  background: var(--red);
  color:var(--white);
  padding:4px 14px;
  border-radius:var(--radius-full);
  font-size:0.78rem;
  font-weight:600;
  margin-bottom:14px;
}
.phase-card h4 { color:var(--primary); margin-bottom:10px; }
.phase-list { display:flex; flex-direction:column; gap:8px; margin-top:12px; }
.phase-list li {
  display:flex; gap:8px; align-items:flex-start;
  font-size:0.88rem; color:var(--text-muted);
}
.phase-list li::before {
  content:'✓';
  color:var(--red);
  font-weight:700;
  flex-shrink:0;
  margin-top:1px;
}

/* ============================================================
   INTERNATIONAL ACCELERATION
   ============================================================ */
.intl-pillars {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.intl-pillar {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.intl-pillar:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.intl-pillar .icon {
  width:52px; height:52px;
  background:rgba(188,0,5,0.1);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  margin-bottom:16px;
}
.intl-pillar h4 { color:var(--primary); margin-bottom:8px; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align:center; }
.text-white  { color:var(--white) !important; }
.text-primary { color:var(--primary) !important; }
.mb-8  { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-32 { margin-bottom:32px; }
.mt-32 { margin-top:32px; }
.mt-48 { margin-top:48px; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.gap-16 { gap:16px; }
.img-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:2.5rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  color:var(--gray-300);
}

/* ============================================================
   HOMEPAGE V2 – Components matching official Webflow design
   ============================================================ */

/* ---- Nav logo mark + partner badges ---- */
.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.nav-partner-badge {
  height: 30px;
  padding: 2px 4px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.nav-partner-badge img { height: 100%; width: auto; display: block; }
.nav-partner-badge:hover { opacity: 0.7; }
.btn-lg { font-size: 1rem; padding: 14px 36px; }

/* ============================================================
   HERO – split 2-col
   ============================================================ */
/* ---- Bold editorial hero ---- */
.hero-editorial {
  position: relative;
  padding: calc(var(--nav-h) + 36px) 0 48px;
  background: #fff;
  overflow: hidden;
}
/* faint warm glow, top-right — restrained, not "aurora" */
.hero-editorial::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(188,0,5,0.10) 0%, rgba(188,0,5,0) 70%);
  pointer-events: none;
}
.hero-editorial-inner { position: relative; z-index: 1; }

/* Two-column hero: text left, image fills the right */
.hero-editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-editorial-text { min-width: 0; }
.hero-editorial-media { min-width: 0; }

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: heroFade 0.6s ease both;
}

.hero-headline {
  color: var(--text);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.hl-line { display: block; }
.hl-word {
  display: inline-block;
  animation: heroRise 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: calc(0.15s + var(--i, 0) * 0.07s);
}
.hl-accent { color: var(--red); }

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 36px;
  animation: heroRise 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: 0.62s;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: heroRise 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: 0.74s;
}
.hero-cta-secondary {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.hero-cta-secondary:hover { color: var(--red); gap: 11px; }

.hero-stats {
  display: flex;
  background: var(--grad-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
  animation: heroRise 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: 0.86s;
}
.hero-stat {
  flex: 1;
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat .lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* Hero image — fills the right column */
.hero-banner-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
  animation: heroBanner 0.9s cubic-bezier(0.2,0.7,0.2,1) both;
  animation-delay: 0.5s;
}
.hero-banner-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-banner-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15,30,58,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.18);
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-banner-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-warm-cta);
  z-index: 2;
}

@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBanner {
  from { opacity: 0; transform: translateY(40px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hl-word, .hero-sub, .hero-cta, .hero-stats, .hero-banner-frame {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-banner-frame img { animation: none !important; }
}

/* ============================================================
   IGNITE / COMMUNITY BANNER
   ============================================================ */
.ignite-section {
  background: var(--primary-dark);
  padding: 56px 0;
  color: var(--white);
}
.ignite-heading {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin: 0 auto 48px;
  max-width: 720px;
  line-height: 1.25;
}
.text-accent { color: #E94855; }
.community-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
}
.community-text h3 {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  margin: 0;
}

/* ============================================================
   FUNDING / CONSORTIUM PARTNER LOGO TILES
   ============================================================ */
.funding-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.consortium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  height: 100px;
  transition: var(--transition);
}
.partner-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gray-300);
}
.partner-tile img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.funding-row .partner-tile {
  min-width: 220px;
  height: 110px;
}
.funding-row .partner-tile img { max-height: 70px; }

/* ============================================================
   HIGHLIGHTS + WHAT WE DO  split
   ============================================================ */
.highlights-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.highlights-card {
  background: linear-gradient(135deg, #1E4080 0%, #1B3564 60%, #0F1E3A 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.highlights-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(231,72,85,0.18), transparent 70%);
  border-radius: 50%;
}
.highlights-card h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  position: relative;
}
.highlights-card .highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
  position: relative;
}
.hl-item .hl-num {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.hl-item .hl-lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  line-height: 1.4;
}
.whatwedo-card {
  background: #111827;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
}
.whatwedo-card h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.whatwedo-card p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.whatwedo-card p:last-child { margin-bottom: 0; }

/* ============================================================
   PROGRAMS V2 – colored cards with origami icons
   ============================================================ */
.programs-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-tile {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.program-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-tile-yellow {
  background: linear-gradient(135deg, #FFF4D1 0%, #FCE48A 100%);
  color: #5B3D00;
}
.program-tile-blue {
  background: linear-gradient(135deg, #2B85C3 0%, #1D62DC 100%);
  color: var(--white);
}
.program-tile-white {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.program-tile-red {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 60%, var(--red-dark) 100%);
  color: var(--white);
}
.program-tile-red p { color: rgba(255,255,255,0.92); opacity: 1; }
.program-tile-red .text-link { color: var(--white); }
.program-tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.program-tile h4 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 700;
  margin: 0;
  color: inherit;
}
.program-tile p {
  font-size: 1rem;
  line-height: 1.55;
  color: inherit;
  opacity: 0.88;
  flex: 1;
}
.program-tile-blue p { opacity: 0.92; color: rgba(255,255,255,0.92); }
.origami-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.origami-icon svg { width: 100%; height: auto; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}
.text-link:hover { gap: 10px; color: var(--red-dark); }
.text-link-dark { color: #5B3D00; }
.text-link-dark:hover { color: #3F2A00; }
.text-link-light { color: var(--white); }
.text-link-light:hover { color: var(--white); }

/* ============================================================
   FEATURED STARTUPS V2 – 2-col video tiles
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-tile {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-tile-body {
  padding: 32px;
  flex: 1;
}
.testimonial-logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.testimonial-logo-relife { color: #2D7C40; letter-spacing: 0.1em; }
.testimonial-logo-paymo { color: #1D62DC; text-transform: lowercase; font-size: 1.4rem; letter-spacing: -0.02em; }
.testimonial-tile h4 {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  min-height: calc(2 * 1.15rem * 1.4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-author .name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.testimonial-author .role {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.testimonial-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  flex-shrink: 0;
}
.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   ALUMNI MARQUEE – dual scrolling rows
   ============================================================ */
.section-peach { background: var(--peach); }
.portfolio-section {
  padding: 56px 0;
  background: #FBF7F2;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.portfolio-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 16px;
}
.portfolio-center {
  text-align: center;
  padding: 0 28px;
  min-width: 220px;
}
.portfolio-stat {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.portfolio-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 14px;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  transition: var(--transition);
}
.portfolio-link:hover { color: var(--red); gap: 11px; }

/* logo cells (CMS renders .alumni-logo) */
.alumni-logo {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  transition: var(--transition);
}
.alumni-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.4s ease;
}
@media (hover: hover) {
  .alumni-logo img { filter: grayscale(1); opacity: 0.78; }
  .alumni-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.08); }
}
@media (max-width: 900px) {
  .portfolio-section { padding: 40px 0; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 36px; }
  .portfolio-center { order: -1; padding: 0; }
}
@media (max-width: 600px) {
  .portfolio-logos { grid-template-columns: repeat(3, 1fr); }
  .alumni-logo { height: 80px; padding: 5px 8px; }
}

/* ============================================================
   PLUG AND PLAY – 2x2 collage
   ============================================================ */
.pnp-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pnp-bg-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform, opacity;
}
.pnp-bg-glow-red  { top: -180px; left: -160px;  background: radial-gradient(circle, rgba(188,0,5,0.45) 0%, rgba(188,0,5,0) 70%); animation: pnpGlowDrift 14s ease-in-out infinite; }
.pnp-bg-glow-gold { bottom: -200px; right: -140px; background: radial-gradient(circle, rgba(251,175,23,0.42) 0%, rgba(251,175,23,0) 70%); animation: pnpGlowDrift 18s ease-in-out -6s infinite reverse; }
@keyframes pnpGlowDrift {
  0%,100% { transform: translate3d(0,0,0) scale(1); opacity: 0.50; }
  50%     { transform: translate3d(40px,-30px,0) scale(1.08); opacity: 0.70; }
}
.pnp-section .container { position: relative; z-index: 1; }

.pnp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pnp-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  perspective: 1200px;
}
.pnp-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 18px 40px -22px rgba(15,30,58,0.30);
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s ease;
  animation: pnpFloat 9s ease-in-out infinite;
  will-change: transform;
}
.pnp-image:nth-child(1) { animation-delay: 0s;    animation-duration: 9s;  }
.pnp-image:nth-child(2) { animation-delay: -2.5s; animation-duration: 10s; }
.pnp-image:nth-child(3) { animation-delay: -1.2s; animation-duration: 11s; }
.pnp-image:nth-child(4) { animation-delay: -4s;   animation-duration: 9.5s;}
@keyframes pnpFloat {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg); }
  50%     { transform: translate3d(0,-10px,0) rotate(-0.4deg); }
}
.pnp-image:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 30px 60px -22px rgba(159,29,38,0.40), 0 0 0 1px rgba(251,175,23,0.35);
  z-index: 2;
}
.pnp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pnp-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,30,58,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.pnp-image:hover::before { opacity: 1; }
.pnp-image-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(15,30,58,0.30);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.pnp-image:hover .pnp-image-caption { opacity: 1; transform: translateY(0); }
.pnp-image-caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(188,0,5,0.18);
  animation: pnpDotPulse 2s ease-in-out infinite;
}
@keyframes pnpDotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(188,0,5,0.18); }
  50%     { box-shadow: 0 0 0 6px rgba(188,0,5,0.06); }
}

.pnp-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 84px; height: 84px;
  margin: -42px 0 0 -42px;
  border-radius: 50%;
  border: 1px dashed rgba(159,29,38,0.35);
  background: radial-gradient(circle, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 60%, rgba(255,255,255,0) 100%);
  display: grid;
  place-items: center;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 10px 30px -10px rgba(15,30,58,0.28);
  animation: pnpOrbitSpin 22s linear infinite;
}
.pnp-orbit::before {
  content: 'PnP';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  animation: pnpOrbitSpin 22s linear infinite reverse;
}
.pnp-orbit-dot {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px; margin-left: -4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(251,175,23,0.25);
}
@keyframes pnpOrbitSpin { to { transform: rotate(360deg); } }

.pnp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(188,0,5,0.10), rgba(251,175,23,0.14));
  color: var(--red-dark);
  border: 1px solid rgba(188,0,5,0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pnp-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(188,0,5,0.18);
  animation: pnpDotPulse 2s ease-in-out infinite;
}

.pnp-text h2 {
  color: var(--primary);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}
.pnp-highlight {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  white-space: nowrap;
}
.pnp-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.pnp-section.in-view .pnp-highlight::after { transform: scaleX(1); }

.pnp-subhead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 18px;
}
.pnp-text p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.pnp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0 28px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #fff 0%, #fff7f3 100%);
  border: 1px solid rgba(188,0,5,0.10);
  border-radius: 14px;
  box-shadow: 0 14px 36px -22px rgba(15,30,58,0.25);
}
.pnp-stat { text-align: left; position: relative; }
.pnp-stat + .pnp-stat::before {
  content: '';
  position: absolute;
  left: -9px; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(188,0,5,0.18), transparent);
}
.pnp-stat-num {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.pnp-stat-label {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pnp-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.pnp-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.2,0.7,0.2,1);
  pointer-events: none;
}
.pnp-cta:hover::after { left: 130%; }
.pnp-cta-arrow {
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1);
}
.pnp-cta:hover .pnp-cta-arrow { transform: translateX(4px); }

/* ============================================================
   YOUR JOURNEY – diamond bullets + image strip
   ============================================================ */
.journey-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  max-width: 920px;
  margin: 0 auto 64px;
}
.journey-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.journey-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.55;
}
.journey-bullet .diamond {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #BC0005;
  transform: rotate(45deg);
  margin-top: 4px;
  border-radius: 2px;
}
.journey-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.journey-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   EVENT CTA – gradient banner with arrow
   ============================================================ */
.event-cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #BC0005 0%, #9F1D26 50%, #1B3564 100%);
}
.event-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  transition: var(--transition);
}
.event-cta:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.event-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}
.event-cta-arrow {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.event-cta:hover .event-cta-arrow {
  background: rgba(255,255,255,0.22);
  transform: translateX(8px);
}
.event-cta-arrow svg { width: 36px; height: 36px; }

/* ============================================================
   EVENT REGISTRATION PAGE
   ============================================================ */
.reg-hero {
  background: linear-gradient(135deg, #9F1D26 0%, #BC0005 50%, #1B3564 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}
.reg-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(231,72,85,0.25), transparent 70%);
  border-radius: 50%;
}
.reg-hero::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,53,100,0.4), transparent 70%);
  border-radius: 50%;
}
.reg-hero .container { position: relative; z-index: 1; }
.reg-hero .breadcrumb { color: rgba(255,255,255,0.7); margin-bottom: 16px; justify-content: flex-start; }
.reg-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.reg-hero .breadcrumb span:last-child { color: var(--red); font-weight: 600; }
.reg-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 800px;
}
.reg-hero h1 .text-accent { color: #FBAF17; }
.reg-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 28px;
}
.reg-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.reg-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.reg-pill::before {
  content: '✓';
  font-weight: 700;
  color: #FBAF17;
}

/* ---- Form section ---- */
.reg-form-section {
  background: var(--peach);
  padding: 64px 0 96px;
  min-height: 50vh;
}

/* ---- Stepper ---- */
.reg-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 24px;
  position: relative;
  margin-top: -32px;
  z-index: 2;
}
.reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.reg-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-500);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.reg-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.reg-step.is-active .reg-step-circle {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(188,0,5,0.35);
}
.reg-step.is-active .reg-step-label {
  color: var(--red);
}
.reg-step.is-complete .reg-step-circle {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}
.reg-step.is-complete .reg-step-circle::before {
  content: '✓';
  font-size: 1rem;
}
.reg-step.is-complete .reg-step-circle > * { display: none; }
.reg-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 12px;
  margin-bottom: 22px;
  transition: var(--transition);
  min-width: 30px;
}

/* ---- Form card ---- */
.reg-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

/* ---- Form steps ---- */
.form-step {
  display: none;
  animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-step.is-active { display: block; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-step-head {
  margin-bottom: 36px;
}
.form-step-tag {
  display: inline-block;
  background: rgba(188,0,5,0.08);
  color: var(--red);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.form-step-head h2 {
  color: var(--primary);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 6px;
}
.form-step-head p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ---- Form grid ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group-full { grid-column: 1 / -1; }
.form-group { margin-bottom: 0; }

/* ---- Inputs ---- */
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--gray-300); }
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(188,0,5,0.1);
}
.form-input.is-invalid {
  border-color: var(--red);
  background: rgba(188,0,5,0.02);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  appearance: none;
  -webkit-appearance: none;
}
.form-label-hint {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}
.form-help {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: right;
}

/* ---- Option buttons (override existing) ---- */
.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
  border-radius: var(--radius);
  transition: var(--transition);
}
.form-options.is-invalid {
  background: rgba(188,0,5,0.05);
  padding: 10px;
  margin: -6px -10px;
}
.form-option-btn {
  padding: 11px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.form-option-btn:hover {
  border-color: var(--red-light);
  color: var(--red);
  transform: translateY(-1px);
}
.form-option-btn.active {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 4px 12px rgba(188,0,5,0.25);
}

/* ---- Checkbox ---- */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 12px;
  user-select: none;
  line-height: 1.5;
}
.form-checkbox input { display: none; }
.form-checkbox-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  margin-top: 1px;
}
.form-checkbox input:checked + .form-checkbox-mark {
  background: var(--red);
  border-color: var(--red);
}
.form-checkbox input:checked + .form-checkbox-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ---- Form nav ---- */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}
.form-nav .btn-outline {
  border-color: var(--gray-200);
  color: var(--gray-700);
}
.form-nav .btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

/* ---- Error ---- */
.form-error {
  display: none;
  padding: 14px 18px;
  background: rgba(188,0,5,0.06);
  border: 1px solid rgba(188,0,5,0.2);
  border-radius: var(--radius);
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

/* ---- Summary ---- */
.reg-summary {
  background: linear-gradient(135deg, var(--peach) 0%, #FFF6F2 100%);
  border: 1px solid var(--peach-edge);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.reg-summary-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(188,0,5,0.15);
  font-size: 0.92rem;
}
.reg-summary-row:last-child { border-bottom: none; }
.reg-summary-row .lbl {
  flex-shrink: 0;
  width: 120px;
  font-weight: 600;
  color: var(--red-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.reg-summary-row .val {
  flex: 1;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}

/* ---- Success state ---- */
.reg-success {
  text-align: center;
  padding: 24px 0;
}
.reg-success-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(16,185,129,0.35);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.reg-success h2 {
  color: var(--primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.reg-success > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.reg-next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}
.reg-next-step {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--gray-100);
}
.reg-next-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.reg-next-step h4 {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.reg-next-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.reg-success-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.reg-contact-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.reg-contact-note a {
  color: var(--red);
  font-weight: 600;
}
.reg-contact-note a:hover { text-decoration: underline; }

/* ---- Ticketly integration ---- */
.ticketly-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: linear-gradient(135deg, #0EA5A4 0%, #0891B2 100%);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(14,165,164,0.25);
}
.ticketly-badge .powered-by {
  opacity: 0.78;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}
.ticketly-badge .ticketly-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 0.85rem;
}
.ticketing-panel {
  margin-top: 24px;
  animation: fadeSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ticketly-card {
  background: linear-gradient(135deg, #F0FDFC 0%, #ECFEFF 100%);
  border: 1px solid #A5F3FC;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
}
.ticketly-card-head { margin-bottom: 18px; }
.ticketly-card-head h4 {
  color: #0E7490;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.ticketly-card-head p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Ticket tier rows */
.tier-list { margin-bottom: 14px; }
.tier-row {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 0.8fr auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  background: var(--white);
  border: 1px solid #CFFAFE;
  border-radius: var(--radius);
  margin-bottom: 10px;
  animation: fadeSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tier-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tier-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tier-field .form-input {
  padding: 9px 12px;
  font-size: 0.9rem;
}
.tier-price {
  position: relative;
  display: flex;
  align-items: stretch;
}
.tier-currency {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #ECFEFF;
  border: 1.5px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  color: #0E7490;
}
.tier-price .form-input {
  border-radius: 0 var(--radius) var(--radius) 0;
  flex: 1;
}
.tier-remove {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.tier-remove:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(188,0,5,0.04);
}
.tier-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--white);
  border: 1.5px dashed #06B6D4;
  border-radius: var(--radius);
  color: #0E7490;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.tier-add:hover {
  background: #ECFEFF;
  border-style: solid;
}
.tier-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0EA5A4 0%, #0891B2 100%);
  border-radius: var(--radius);
  color: #fff;
}
.tier-summary .ts-label {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tier-summary .ts-value {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Ticketly connect row */
.ticketly-connect-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.ticketly-connect-row .form-input { flex: 1; }
.ticketly-connect-row .btn {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* Highlight ticketing line in summary */
.reg-summary-ticket .lbl { color: #0E7490 !important; }
.reg-summary-ticket {
  background: linear-gradient(135deg, rgba(14,165,164,0.06) 0%, rgba(8,145,178,0.04) 100%);
  margin: 8px -28px -24px;
  padding: 14px 28px !important;
  border-bottom: none !important;
  border-top: 1px dashed rgba(14,165,164,0.3);
}

/* ---- Submit spinner ---- */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 4px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns:repeat(2,1fr); }
  .programs-grid   { grid-template-columns:repeat(2,1fr); }
  .footer-grid     { grid-template-columns:1fr 1fr; gap:36px; }
  .about-section-inner { grid-template-columns:1fr; gap:40px; }
  .mission-inner   { flex-direction:column; gap:40px; }
  .global-inner    { flex-direction:column; gap:40px; }
  .team-grid       { grid-template-columns:repeat(3,1fr); }
  .schedule-days   { grid-template-columns:1fr; }
  .phases-grid     { grid-template-columns:1fr; }
  .pillar-grid     { grid-template-columns:repeat(2,1fr); }

  /* V2 layouts */
  .hero-editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 40px; }
  .hero-banner-frame { aspect-ratio: 16 / 9; }
  .highlights-split { grid-template-columns: 1fr; }
  .programs-grid-v2 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pnp-grid { grid-template-columns: 1fr; gap: 40px; }
  .consortium-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h:64px; }
  .nav-links  { display:none; }
  .hamburger  { display:flex; }
  .nav-partners { display:none; }
  .nav-links.mobile-open {
    display:flex;
    flex-direction:column;
    position:fixed;
    top:var(--nav-h); left:0; right:0;
    background:var(--white);
    padding:16px;
    box-shadow:var(--shadow-lg);
    gap:4px;
    z-index:999;
    max-height:calc(100vh - var(--nav-h));
    overflow-y:auto;
  }
  .nav-dropdown {
    position:static;
    box-shadow:none;
    border:none;
    opacity:1;
    visibility:visible;
    transform:none;
    background:var(--gray-50);
    padding:4px 8px;
    margin-top:4px;
    display:none;
  }
  .nav-item.open .nav-dropdown { display:block; }
  h1 { font-size:2rem; }
  h2 { font-size:1.5rem; }
  .section { padding:36px 0; }
  .section-lg { padding:56px 0; }
  .metrics-inner { flex-direction:column; }
  .metric-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.12); }
  .highlights-grid  { grid-template-columns:repeat(2,1fr); }
  .programs-grid    { grid-template-columns:1fr; }
  .benefits-grid    { grid-template-columns:1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .partner-cards    { grid-template-columns:1fr; }
  .alumni-benefits-grid { grid-template-columns:repeat(2,1fr); }
  .startups-grid    { grid-template-columns:1fr; }
  .team-grid        { grid-template-columns:repeat(2,1fr); }
  .resources-grid   { grid-template-columns:1fr; }
  .news-grid        { grid-template-columns:1fr; }
  .expect-grid      { grid-template-columns:1fr; }
  .market-stats-grid{ grid-template-columns:1fr; }
  .intl-pillars     { grid-template-columns:1fr; }
  .services-grid    { grid-template-columns:1fr; }
  .gallery-grid     { grid-template-columns:1fr; }
  .gallery-item.large { grid-column:span 1; }
  .footer-grid      { grid-template-columns:1fr; }
  .footer-bottom    { flex-direction:column; text-align:center; }
  .hero-actions     { flex-direction:column; align-items:center; }
  .register-form-card { padding:32px 20px; }
  .about-overview   { grid-template-columns:1fr; }
  .startup-card     { width:calc(100% - 0px); }
  .pillar-grid      { grid-template-columns:1fr; }
  .about-stats      { flex-wrap:wrap; justify-content:center; }

  /* V2 mobile */
  .hero-editorial { padding: calc(var(--nav-h) + 36px) 0 0; }
  .hero-editorial-grid { gap: 32px; }
  .hero-headline { font-size: clamp(2.1rem, 9vw, 3rem); max-width: 100%; }
  .hero-cta { gap: 18px; margin-bottom: 0; }
  .hero-stats { flex-wrap: wrap; margin-top: 32px; }
  .hero-stat { flex: 1 1 calc(50% - 1px); padding: 24px 12px; }
  .hero-banner-frame { aspect-ratio: 16 / 10; }
  .ignite-section { padding: 40px 0; }
  .community-banner { flex-direction: column; padding: 28px 24px; text-align: center; }
  .highlights-card, .whatwedo-card { padding: 40px 28px; }
  .highlights-card .highlights-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .program-tile { padding: 28px 24px; min-height: auto; }
  .testimonial-tile-body { padding: 24px; }
  .pnp-image { animation: none; }
  .pnp-orbit { width: 64px; height: 64px; margin: -32px 0 0 -32px; }
  .pnp-stats { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .pnp-stat + .pnp-stat::before { display: none; }
  .journey-bullets { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .journey-images { grid-template-columns: 1fr; }
  .event-cta { flex-direction: column; padding: 36px 24px; text-align: center; }
  .event-cta h2 { font-size: 1.6rem; }
  .consortium-grid { grid-template-columns: repeat(2,1fr); }
  .funding-row { flex-direction: column; align-items: stretch; }
  .funding-row .partner-tile { min-width: auto; }

  /* Registration page mobile */
  .reg-hero { padding: calc(var(--nav-h) + 32px) 0 56px; }
  .reg-form-card { padding: 32px 22px; border-radius: var(--radius); }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .reg-stepper { padding: 0 12px; margin-bottom: 32px; }
  .reg-step-circle { width: 36px; height: 36px; font-size: 0.85rem; }
  .reg-step-label { display: none; }
  .reg-step-line { margin: 0 6px; margin-bottom: 0; min-width: 16px; }
  .form-step-head h2 { font-size: 1.4rem; }
  .form-nav { flex-wrap: wrap; }
  .form-nav .btn { flex: 1; justify-content: center; }
  .reg-next-steps { grid-template-columns: 1fr; }
  .reg-summary-row { flex-direction: column; gap: 4px; }
  .reg-summary-row .lbl { width: auto; }

  /* Ticketly mobile */
  .tier-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    padding-right: 14px;
  }
  .tier-row > .tier-field:first-child { grid-column: 1 / -1; }
  .tier-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }
  .ticketly-connect-row { flex-direction: column; }
  .ticketly-connect-row .btn { justify-content: center; }
  .ticketly-card { padding: 20px; }
  .reg-summary-ticket {
    margin: 8px -20px -20px;
    padding: 14px 20px !important;
  }
}
@media (max-width: 480px) {
  .highlights-grid  { grid-template-columns:1fr; }
  .team-grid        { grid-template-columns:1fr; }
  .alumni-benefits-grid { grid-template-columns:1fr; }
  .countdown-bar    { flex-wrap:wrap; }
  .program-stats-row { flex-direction:column; }
  .hero-stats       { flex-direction: column; }
  .hero-stat        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:last-child { border-bottom: none; }
}

/* ============================================================
   HOMEPAGE POLISH v2 — section motion & hover interactions
   (hover effects gated to pointer devices via @media (hover:hover))
   ============================================================ */

/* Scroll-reveal base state for newly-revealed elements is handled in
   js/main.js (initScrollAnimations). These add transitions for hover. */

/* ---- Ignite statement section ---- */
.ignite-sub {
  text-align: center;
  max-width: 680px;
  margin: -24px auto 0;
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ---- Funding + Consortium partner logos ---- */
.partner-tile img {
  transition: transform 0.4s ease, filter 0.4s ease;
}
@media (hover: hover) {
  .partner-tile img { filter: grayscale(1); opacity: 0.7; }
  .partner-tile:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.06); }
}
.partner-tile {
  position: relative;
  overflow: hidden;
}
/* subtle red sweep that grows from the bottom on hover */
.partner-tile::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad-warm-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2,0.7,0.2,1);
}
.partner-tile:hover::after { transform: scaleX(1); }

/* ---- Highlights / What We Do ---- */
.hl-item {
  padding: 4px 0;
  transition: transform 0.3s ease;
}
.highlights-card .highlights-grid .hl-item:hover { transform: translateY(-3px); }
.hl-item .hl-num {
  letter-spacing: -0.01em;
}
/* mono kicker feel on the labels to match the hero */
.hl-item .hl-lbl,
.whatwedo-card p { letter-spacing: 0.005em; }
.whatwedo-card {
  position: relative;
  overflow: hidden;
}
.whatwedo-card::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(188,0,5,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Programs: hover image reveal ---- */
.program-tile { position: relative; overflow: hidden; }
.program-tile > *:not(.program-tile-media) { position: relative; z-index: 1; }
.program-tile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  filter: blur(3px);
  transition: opacity 0.5s ease, transform 6s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .program-tile:hover .program-tile-media { opacity: 0.28; transform: scale(1); }
  .program-tile:hover h4 { letter-spacing: 0.01em; }
}
/* keep yellow card text readable when its (darker) image shows */
.program-tile-yellow .program-tile-media { mix-blend-mode: multiply; }

/* ---- Featured startup videos: spotlight on hover ---- */
.testimonial-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.4s ease, opacity 0.4s ease;
}
@media (hover: hover) {
  .testimonial-grid:hover .testimonial-tile:not(:hover) {
    filter: grayscale(1) saturate(0.4);
    opacity: 0.62;
  }
  .testimonial-grid:hover .testimonial-tile:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: var(--shadow-lg);
  }
}

/* ---- Plug & Play collage — extras (overlay/zoom are in the main block above) ---- */
.pnp-image img { transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
@media (hover: hover) {
  .pnp-image:hover img { transform: scale(1.08); }
}
.pnp-text .btn { position: relative; overflow: hidden; }

/* ---- Your Journey: hover image swap ---- */
.journey-img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.journey-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.6s ease, transform 1.2s ease;
}
.journey-img .ji-alt { opacity: 0; }
@media (hover: hover) {
  .journey-img:hover .ji-base { opacity: 0; transform: scale(1.06); }
  .journey-img:hover .ji-alt  { opacity: 1; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .pnp-image img, .journey-img img, .program-tile-media { transition: none !important; }
  .pnp-image, .pnp-bg-glow, .pnp-orbit, .pnp-orbit::before,
  .pnp-eyebrow-dot, .pnp-image-caption-dot { animation: none !important; }
  .pnp-highlight::after { transition: none !important; transform: scaleX(1) !important; }
}

/* ============================================================
   PILLAR SCROLL — sticky tabs + scroll-driven active pillar
   Used on programs/incubation.html and programs/acceleration.html
   ============================================================ */
.pillar-scroll {
  background: #fff;
  color: var(--text);
  position: relative;
  --pillar-count: 5;
  min-height: calc(var(--pillar-count) * 40vh + 100vh);
  isolation: isolate;
}
.pillar-scroll::before {
  /* faint warm glow accent */
  content: '';
  position: absolute;
  top: 12%; left: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(188,0,5,0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.pillar-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: var(--nav-h) 40px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1;
}
.pillar-stage-head {
  margin: 0;
}
.pillar-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin: 0 0 10px;
}
.pillar-stage-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

/* Pill tabs row — light theme. Hidden by default (scroll drives the pillars);
   the tab nav is still present in the DOM so the JS that updates aria
   state and click jumps can work if you ever flip this back to `flex`. */
.pillar-tabs {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}
.pillar-tab {
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.2,0.7,0.2,1), border-color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.pillar-tab:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}
.pillar-tab.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  box-shadow: 0 6px 22px rgba(15,30,58,0.20);
  transform: translateY(-1px);
}

/* Panel stack (stacked absolutely, only the active one is visible) */
.pillar-panels {
  position: relative;
  flex: 1;
  min-height: 480px;
}
.pillar-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 0;
}
.pillar-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
.pillar-panel.was-active {
  opacity: 0;
  transform: translateY(-18px);
  z-index: 1;
}

/* LEFT — pillar illustration (column SVG) on the white side */
.pillar-panel-illust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  height: 100%;
}
.pillar-illust-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 22px;
  max-width: 18ch;
}
.pillar-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 60vh;
  color: var(--text);
  filter: drop-shadow(0 12px 24px rgba(15,30,58,0.08));
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.pillar-panel.is-active .pillar-svg,
.pillar-panel-illust.is-active .pillar-svg {
  animation: pillarRise 0.8s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
@keyframes pillarRise {
  from { transform: translateY(18px) scale(0.96); opacity: 0.4; }
  to   { transform: translateY(0)    scale(1);     opacity: 1; }
}
/* the small red base accent under the column */
.pillar-svg-base {
  fill: var(--red);
  stroke: none;
}

/* RIGHT — dark navy card with image + heading + bullets + button */
.pillar-panel-card {
  background: #0A1428;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 30px 60px rgba(15,30,58,0.18);
}
.pillar-panel-card .pillar-panel-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.05);
}
.pillar-panel-card .pillar-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.pillar-panel.is-active .pillar-panel-card .pillar-panel-image img,
.pillar-panel-card.is-active .pillar-panel-image img {
  transform: scale(1.02);
}

.pillar-panel-card .pillar-panel-body { padding: 4px 8px 8px; }
.pillar-panel-card .pillar-panel-body h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 18px;
}
.pillar-bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.pillar-bullets li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.96rem;
  line-height: 1.55;
}
.pillar-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  margin-top: 9px;
}
.pillar-panel-card .btn-primary { margin-top: 4px; align-self: flex-start; }

/* Mobile: keep the sticky scroll-drive — single-column layout
   (small SVG in a row with title, dark card below), one pillar at a time. */
@media (max-width: 900px) {
  .pillar-scroll {
    /* slightly shorter scroll-runway on small screens */
    min-height: calc(var(--pillar-count) * 40vh + 80vh);
  }
  .pillar-scroll::before { width: 320px; height: 320px; top: 6%; left: -120px; }
  .pillar-stage {
    padding: var(--nav-h) 16px 18px;
    gap: 14px;
  }
  .pillar-stage-head h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .pillar-eyebrow { font-size: 0.72rem; }
  .pillar-panels { min-height: auto; }
  .pillar-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    align-content: start;
  }
  .pillar-panel-illust {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
    padding: 4px 0;
    height: auto;
  }
  .pillar-illust-title {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin: 0;
    flex: 1;
  }
  .pillar-svg {
    max-width: 60px;
    max-height: 160px;
    flex-shrink: 0;
  }
  .pillar-panel-card {
    padding: 14px;
    gap: 14px;
    border-radius: var(--radius);
  }
  .pillar-panel-card .pillar-panel-image { aspect-ratio: 16 / 9; }
  .pillar-panel-card .pillar-panel-body { padding: 0 4px 4px; }
  .pillar-panel-card .pillar-panel-body h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  .pillar-bullets { margin-bottom: 16px; }
  .pillar-bullets li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .pillar-bullets li::before { margin-top: 8px; }
  .pillar-panel-card .btn-primary { padding: 10px 22px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .pillar-svg { max-width: 48px; }
  .pillar-illust-title { font-size: 1rem; }
  .pillar-stage-head h2 { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pillar-panel,
  .pillar-panel-illust,
  .pillar-panel-card { transition: opacity 0.2s; transform: none !important; }
  .pillar-panel.is-active,
  .pillar-panel.was-active,
  .pillar-panel-illust.is-active,
  .pillar-panel-card.is-active { transform: none !important; }
  .pillar-panel-card .pillar-panel-image img { transition: none; transform: none !important; }
  .pillar-panel.is-active .pillar-svg,
  .pillar-panel-illust.is-active .pillar-svg { animation: none; }
}

/* ============================================================
   STARTUP DETAIL PAGE (startup.html)
   ============================================================ */
.sd-breadcrumb {
  padding: calc(var(--nav-h) + 24px) 0 0;
  background: #fff;
}
.sd-breadcrumb .container {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.sd-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.sd-breadcrumb a:hover { color: var(--red); }
.sd-breadcrumb span:not(#sd-crumb-name) { color: var(--gray-300); }
#sd-crumb-name { color: var(--red); font-weight: 600; }

/* loading spinner */
.sd-loading { min-height: 40vh; display: flex; align-items: center; justify-content: center; }
.sd-spinner {
  width: 38px; height: 38px;
  border: 3px solid var(--peach-edge);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* MAROON banner (name + one-liner) */
.sd-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, #7d0a12 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.sd-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sd-banner .container { position: relative; z-index: 1; }
.sd-banner-name {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
}
.sd-banner-tagline {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 400;
  margin: 16px 0 0;
  max-width: 60ch;
}
.sd-banner-empty { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* OVERVIEW: media + sidebar */
.sd-overview { padding: 56px 0; background: var(--off-white); }
.sd-overview-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.sd-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16 / 10;
}
.sd-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sd-media-video { position: relative; aspect-ratio: 16 / 9; }
.sd-media-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.sd-media-emoji {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--peach), var(--peach-edge));
  font-size: 5rem;
}

.sd-sidebar {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.sd-sidebar-logo { max-height: 48px; width: auto; align-self: flex-start; }
.sd-meta { display: flex; flex-direction: column; gap: 4px; }
.sd-meta-label {
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.sd-meta-value { font-size: 0.98rem; color: var(--text); font-weight: 600; }
.sd-founder-line { font-weight: 500; }
.sd-founder-line strong { color: var(--red); }
.sd-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sd-tag {
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
}
.sd-website-btn { align-self: flex-start; margin-top: 4px; }

/* reference chips */
.sd-refs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.sd-refs-label {
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.sd-ref-chip {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  transition: var(--transition);
}
.sd-ref-chip:hover { border-color: var(--red); color: var(--red); }

/* maroon section headings */
.sd-heading {
  color: var(--red);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

/* ABOUT */
.sd-about { padding: 64px 0; }
.sd-about-body p {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-muted);
  margin-bottom: 18px; max-width: 72ch;
}
.sd-about-body p:last-child { margin-bottom: 0; }

/* FOUNDERS */
.sd-founders { padding: 64px 0; background: var(--peach); }
.sd-founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.sd-founder-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sd-founder-photo { flex-shrink: 0; }
.sd-founder-photo img,
.sd-founder-avatar {
  width: 88px; height: 88px;
  border-radius: var(--radius);
  object-fit: cover;
}
.sd-founder-avatar {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 800; font-size: 1.6rem;
}
.sd-founder-body h3 { color: var(--red); font-size: 1.2rem; margin: 0 0 2px; }
.sd-founder-role {
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin: 0 0 12px;
}
.sd-founder-bio { font-size: 0.92rem; line-height: 1.6; color: var(--text-muted); margin: 0 0 12px; }
.sd-founder-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
}
.sd-founder-linkedin:hover { color: var(--red); }

@media (max-width: 900px) {
  .sd-overview-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .sd-founder-card { flex-direction: column; }
}

/* ============================================================
   INTERACTIVE ROADMAP (programs.html "Journey")
   Built by initRoadmap() from the .journey-steps fallback.
   ============================================================ */
.journey-section.roadmap-ready .journey-steps { display: none; }   /* hidden only once JS builds the roadmap */
.roadmap[hidden] { display: none; }

.roadmap {
  max-width: 920px;
  margin: 8px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(15,30,58,0.28);
  overflow: hidden;
}
.roadmap-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 520;
  background: linear-gradient(135deg, #0F1E3A 0%, #1B3564 60%, #0A1428 100%);
  overflow: hidden;
}
.roadmap-stage::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(188,0,5,0.25), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
/* per-step background images that crossfade with the active node */
.roadmap-bgs { position: absolute; inset: 0; z-index: 0; }
.roadmap-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease, transform 6s ease;
  transform: scale(1.04);
}
.roadmap-bg.is-active { opacity: 0.32; transform: scale(1); }
/* darken toward the bottom-left so nodes/path stay legible over photos */
.roadmap-bgs::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,20,40,0.55) 0%, rgba(10,20,40,0.2) 55%, rgba(10,20,40,0.55) 100%);
  z-index: 1;
}
.roadmap-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.roadmap-track {
  fill: none;
  stroke: rgba(255,255,255,0.25);
  stroke-width: 3;
  stroke-dasharray: 2 14;
  stroke-linecap: round;
}
.roadmap-progress {
  fill: none;
  stroke: url(#roadmapGrad);
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* nodes */
.roadmap-node {
  position: absolute;
  width: 54px; height: 54px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gray-300);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
  z-index: 2;
}
.roadmap.is-in .roadmap-node { transform: translate(-50%, -50%) scale(1); }
.roadmap-node:hover { border-color: var(--red); }
.roadmap-node svg { width: 24px; height: 24px; }
.roadmap-node .roadmap-node-num { font-size: 1rem; font-weight: 800; }
.roadmap-node.is-active {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 6px rgba(188,0,5,0.25), 0 8px 24px rgba(188,0,5,0.4);
  transform: translate(-50%, -50%) scale(1.12);
}
.roadmap-node.is-done { border-color: var(--red-light); color: var(--red); }

/* detail card */
.roadmap-card {
  margin: 0;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 28px 32px;
  text-align: left;
}
.roadmap-card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 8px;
}
.roadmap-card-num {
  font-family: var(--mono);
  font-size: 0.8rem; font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
}
.roadmap-card-tag {
  display: inline-block;
  background: rgba(188,0,5,0.1);
  color: var(--red);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600;
}
.roadmap-card-tag[hidden] { display: none; }
.roadmap-card-title {
  color: var(--primary);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 10px;
}
.roadmap-card-desc {
  color: var(--text-muted);
  font-size: 1rem; line-height: 1.6;
  margin: 0;
  min-height: 3em;
}
.roadmap-card.is-switching .roadmap-card-title,
.roadmap-card.is-switching .roadmap-card-desc { opacity: 0; transform: translateY(8px); }
.roadmap-card-title, .roadmap-card-desc { transition: opacity 0.3s ease, transform 0.3s ease; }

.roadmap-nav {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px;
}
.roadmap-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.roadmap-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.roadmap-counter {
  font-family: var(--mono);
  font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-left: auto;
}

/* mobile: stack nodes into a horizontal scroll rail, card below */
@media (max-width: 700px) {
  .roadmap {
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .roadmap-stage {
    aspect-ratio: auto;
    min-height: 0;
    background: none;
    overflow: visible;
  }
  .roadmap-svg { display: none; }
  .roadmap-stage {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
  }
  .roadmap-node {
    position: static;
    transform: scale(1) !important;
    width: 46px; height: 46px;
    font-size: 0.9rem;
  }
  .roadmap-card { border-top: 1px solid var(--gray-200); margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-node { transition: background 0.2s, color 0.2s; transform: translate(-50%,-50%) scale(1) !important; }
  .roadmap-progress { transition: none; }
}
