/* =============================================================
   PRARAMBHAM 2026 — iCreate Landing Page
   Brand: iCreate (blue + green palette pulled from the logo)
   ============================================================= */

:root {
  /* iCreate brand palette */
  --ic-blue: #1e5ba8;
  --ic-blue-600: #1a4f93;
  --ic-blue-700: #143f78;
  --ic-blue-300: #4a82c7;
  --ic-blue-100: #dbe7f5;
  --ic-blue-50: #eff4fb;

  --ic-green: #5cb940;
  --ic-green-600: #4ea235;
  --ic-green-300: #8ed074;
  --ic-green-100: #e1f2d9;
  --ic-green-50: #f1f9ec;

  --navy: #0a2540;
  --navy-700: #0f2f50;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white: #ffffff;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, .08), 0 2px 6px -1px rgba(15, 23, 42, .04);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, .14), 0 8px 16px -4px rgba(15, 23, 42, .06);
  --shadow-blue: 0 16px 40px -12px rgba(30, 91, 168, .35);

  --container: 1200px;
  --section-y: clamp(64px, 9vw, 120px);

  --ff-display: 'Sora', system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-body: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
}
  @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Serif+Display&display=swap');
/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

::selection { background: var(--ic-blue); color: #fff; }

/* ---------- layout helpers ---------- */
/* .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; } */
.section { padding: var(--section-y) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ic-blue);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ic-blue), var(--ic-green));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  max-width: 780px;
}
.section-title .accent {
  background: linear-gradient(90deg, var(--ic-blue) 0%, var(--ic-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead {
  max-width: 720px;
  font-size: 17px;
  color: var(--slate-600);
  margin: 0;
}
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .section-eyebrow,
.section-head--center .section-title,
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }
.section-head--center .section-eyebrow::before { display: none; }
.section-head--center .section-eyebrow {
  padding: 6px 14px;
  background: var(--ic-blue-50);
  border-radius: 999px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ic-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--ic-blue-600); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--slate-200);
}
.btn-ghost:hover { background: var(--slate-50); border-color: var(--slate-300); }
.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* =============================================================
   NAVIGATION
   ============================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
  min-height: 102px;
}
.topbar.scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
    height: 100%;
    width: 120px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  /* margin-left: auto; */
  margin: auto;
}
.nav-links a {
  position: relative;
  font-family: var(--ff-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-700);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color .2s ease, background-color .2s ease;
}
.nav-links a:hover { color: var(--ic-blue); background: var(--ic-blue-50); }
.nav-cta {
  margin-left: 12px;
  padding: 11px 22px;
  font-size: 14px;
}
.nav-toggle { display: none; }

@media (max-width: 960px) {
  .nav { gap: 12px; height: 64px; }
  .nav-links {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    margin-left: 0;
    margin-right: auto;
    padding-bottom: 4px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    padding: 8px 11px;
    font-size: 13.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-cta {
    margin-left: 8px;
    padding: 9px 16px;
    font-size: 13px;
    flex-shrink: 0;
  }
  .nav-cta .arrow { display: none; }
}

@media (max-width: 560px) {
  .nav-cta {
    padding: 9px 14px;
    font-size: 12.5px;
  }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(92, 185, 64, .18), transparent 60%),
    radial-gradient(1100px 600px at -10% 110%, rgba(30, 91, 168, .35), transparent 60%),
    linear-gradient(160deg, #0a2540 0%, #143f78 55%, #1a4f93 100%);
  color: #fff;
  isolation: isolate;
}
.hero::before {
  /* dot grid pattern */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(80px, 11vw, 140px) 0 clamp(72px, 10vw, 120px);
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 80px 3% 64px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp .8s ease both;
}
.hero-badge .pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--ic-green);
  border-radius: 50%;
  position: relative;
}
.hero-badge .pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--ic-green);
  border-radius: 50%;
  opacity: .5;
  animation: pulseRing 1.8s ease-out infinite;
}
.hero-badge .pulse::after {
  content: "";
  width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
}
@keyframes pulseRing {
  0% { transform: scale(.8); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero h1 {
  font-family: var(--ff-display);
  color: #fff;
  font-size: clamp(48px, 9vw, 104px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 18px;
  animation: fadeUp .9s ease .1s both;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #cfe5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ic-green-300);
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  animation: fadeUp .9s ease .2s both;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 36px;
  animation: fadeUp .9s ease .3s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  animation: fadeUp .9s ease .4s both;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.hero-meta-item .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ic-blue-300), var(--ic-blue));
}
.hero-meta-item .ic.green { background: linear-gradient(135deg, var(--ic-green-300), var(--ic-green-600)); }
.hero-meta-item .lab { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,.6); display: block; }
.hero-meta-item .val { font-family: var(--ff-display); font-weight: 600; color: #fff; font-size: 15px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .9s ease .5s both;
}
.underline img {
    width: 68%;
}
/* hero visual — abstract illustrative scene */
.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeUp 1s ease .35s both;
}
@media (max-width: 900px) { .hero-visual { height: 380px; } }
@media (max-width: 600px) { .hero-visual { height: 320px; } }

.hero-visual-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); font-weight: 600; font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.4);
}
.hero-visual-card .dot {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hvc-1 { top: 6%;  left: 4%;  animation: float 7s ease-in-out infinite; }
.hvc-2 { top: 12%; right: 6%; animation: float 6s ease-in-out -2s infinite; }
.hvc-3 { top: 50%; left: -2%; animation: float 8s ease-in-out -1s infinite; }
.hvc-4 { bottom: 14%; right: 0%; animation: float 7s ease-in-out -3s infinite; }
.hvc-5 { bottom: 4%; left: 22%; animation: float 9s ease-in-out -4s infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(380px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 50%),
    conic-gradient(from 200deg, rgba(92,185,64,.25), rgba(30,91,168,.55), rgba(92,185,64,.25));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5), inset 0 0 80px rgba(255,255,255,.05);
  animation: rotateOrb 28s linear infinite;
}
.hero-orb::before {
  content: "";
  position: absolute; inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.18);
  animation: rotateOrbReverse 22s linear infinite;
}
.hero-orb::after {
  content: "";
  position: absolute; inset: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: radial-gradient(circle, rgba(30,91,168,.4), rgba(10,37,64,.6));
  box-shadow: inset 0 0 40px rgba(255,255,255,.06);
}
@keyframes rotateOrb { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes rotateOrbReverse { to { transform: rotate(-360deg); } }

.hero-rocket {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  filter: drop-shadow(0 20px 30px rgba(92,185,64,.45));
  animation: bobRocket 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes bobRocket {
  0%,100% { transform: translate(-50%,-50%) translateY(0) rotate(-8deg); }
  50%     { transform: translate(-50%,-50%) translateY(-14px) rotate(-6deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero bottom strip */
.hero-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
}
.hero-strip-tag {
  letter-spacing: 0.22em;
  font-weight: 600;
  font-family: var(--ff-display);
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
}
.hero-strip-pillars {
  display: flex; flex-wrap: wrap; gap: 28px 36px;
}
.hero-strip-pillars span {
  position: relative;
  padding-left: 16px;
}
.hero-strip-pillars span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--ic-green);
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  background: var(--white);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

/* visual collage on the left */
.about-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
}
.about-tile {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-tile-1 {
  top: 0; left: 0;
  width: 56%; aspect-ratio: 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.6), transparent 50%),
    linear-gradient(160deg, #cde6ff 0%, #6fb4f0 60%, #1e5ba8 100%);
}
.about-tile-2 {
  top: 8%; right: 0;
  width: 42%; aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.6), transparent 50%),
    linear-gradient(160deg, #d8f1c9 0%, #8ed074 60%, #4ea235 100%);
}
.about-tile-3 {
    bottom: 6% !important;
    left: 9% !important;
    width: 50%;
    aspect-ratio: 1.4;
    background: radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .5), transparent 50%), linear-gradient(180deg, #f0f7ff 0%, #cfe2f7 100%);
    border: 1px solid var(--slate-200);
}
.about-tile-4 {
  bottom: 12%; right: 4%;
  width: 38%; aspect-ratio: 1;
  background: linear-gradient(160deg, #1e5ba8 0%, #0a2540 100%);
}
.about-tile svg {
  position: absolute; inset: 0; margin: auto;
  width: 50%; height: 50%; opacity: .85;
}
.about-tile-3 .num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--navy);
    font-size: 200%;
    letter-spacing: -0.04em;
    gap: 20px;
}
.about-tile-3 .num span {
  font-size: 22px;
  color: var(--slate-500);
  font-weight: 500;
  letter-spacing: 0.18em;
  /* text-transform: uppercase; */
  display: block;
  margin-top: 4px;
}

/* right copy */
.about-copy h2 { font-size: clamp(28px, 4vw, 42px); }
.about-copy p { color: var(--slate-600); font-size: 16.5px; }

.objectives {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}
.objective {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.objective:hover { border-color: var(--ic-blue-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.objective .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ic-green-100);
  color: var(--ic-green-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.objective .check svg { width: 16px; height: 16px; }
.objective p {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
}

/* =============================================================
   KEY HIGHLIGHTS
   ============================================================= */
.highlights {
  background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
  position: relative;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .highlights-grid { grid-template-columns: 1fr; } }

.highlight {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.highlight::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ic-blue), var(--ic-green));
  opacity: 0;
  transition: opacity .25s ease;
}
.highlight:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ic-blue-100);
}
.highlight:hover::before { opacity: 1; }
.highlight .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ic-blue);
  margin-bottom: 16px;
}
.highlight .ic-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ic-blue-50), var(--ic-blue-100));
  color: var(--ic-blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform .3s ease;
}
.highlight:hover .ic-wrap { transform: scale(1.06) rotate(-4deg); }
.highlight:nth-child(2) .ic-wrap { background: linear-gradient(135deg, var(--ic-green-50), var(--ic-green-100)); color: var(--ic-green-600); }
.highlight:nth-child(3) .ic-wrap { background: linear-gradient(135deg, var(--ic-blue-50), var(--ic-blue-100)); color: var(--ic-blue); }
.highlight:nth-child(4) .ic-wrap { background: linear-gradient(135deg, var(--ic-green-50), var(--ic-green-100)); color: var(--ic-green-600); }
.highlight .ic-wrap svg { width: 28px; height: 28px; }
.highlight h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.highlight p { font-size: 14.5px; color: var(--slate-600); margin: 0; line-height: 1.6; }

/* =============================================================
   EVENT FLOW (placeholder agenda — content TBD)
   ============================================================= */
.eventflow { background: #fff; }
.eventflow-note {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: #fef9c3;
  border: 1px solid #fde68a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #854d0e;
  margin-bottom: 16px;
  font-family: var(--ff-display);
}
.eventflow-note svg { width: 14px; height: 14px; }

.flow-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.flow-tab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: all .25s ease;
  font-family: var(--ff-display);
}
.flow-tab .day-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--slate-500);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.flow-tab .day-date {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.flow-tab.active {
  background: var(--ic-blue);
  border-color: var(--ic-blue);
}
.flow-tab.active .day-num { color: rgba(255,255,255,.75); }
.flow-tab.active .day-date { color: #fff; }
.flow-tab:not(.active):hover { border-color: var(--ic-blue-300); }

.flow-panels { position: relative; }
.flow-panel { display: none; animation: fadeUp .4s ease both; }
.flow-panel.active { display: block; }

.flow-timeline {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  position: relative;
}
.flow-timeline::before {
  content: "";
  position: absolute;
  left: 159px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ic-blue) 0%, var(--ic-green) 100%);
  opacity: .25;
}
.flow-row {
  display: contents;
}
.flow-time {
  padding: 24px 24px 24px 0;
  text-align: right;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ic-blue);
  font-size: 14px;
  border-right: none;
  position: relative;
}
.flow-content {
  padding: 22px 0 22px 32px;
  position: relative;
}
.flow-content::before {
  content: "";
  position: absolute;
  left: -7px; top: 30px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ic-blue);
  box-shadow: 0 0 0 4px rgba(30,91,168,.1);
}
.flow-row:nth-child(even) .flow-content::before { border-color: var(--ic-green); box-shadow: 0 0 0 4px rgba(92,185,64,.12); }

.flow-content h4 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--navy);
}
.flow-content p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14.5px;
}
.flow-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--ic-blue-50);
  color: var(--ic-blue);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--ff-display);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.flow-row:nth-child(even) .flow-tag { background: var(--ic-green-50); color: var(--ic-green-600); }

@media (max-width: 700px) {
  .flow-timeline { grid-template-columns: 90px 1fr; }
  .flow-timeline::before { left: 89px; }
  .flow-time { font-size: 12.5px; padding: 22px 18px 22px 0; }
  .flow-content { padding: 20px 0 20px 26px; }
  .flow-content h4 { font-size: 16px; }
}

/* =============================================================
   SPEAKERS — grid (no slider) with refined cards
   ============================================================= */
.speakers { background: linear-gradient(180deg, #fff 0%, var(--slate-50) 100%); }

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
#sliderDots.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
}

@media (max-width: 560px) {
  #sliderDots.slider-dots {
    display: flex;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-300, #cbd5e1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--ic-blue, #1e5ba8);
  transform: scale(1.3);
}
@media (max-width: 900px) { .speakers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .speakers-grid {
    display: flex;             /* Switch grid to flex for horizontal layout */
    overflow-x: auto;          /* Enable horizontal scroll */
    scroll-snap-type: x mandatory; /* Enable snapping */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth momentum on iOS */
    gap: 20px;
    padding: 20px 20px 40px;   /* Add padding so cards don't touch edges */
    margin: 0 -20px;           /* Negative margin to allow cards to bleed to edges */
  }

  .speaker {
    flex: 0 0 85%;             /* Card width: 85% of screen width */
    scroll-snap-align: center; /* Snap card to center when scrolling */
    min-width: 280px;
  }

  /* Hide scrollbar for a cleaner look (optional) */
  .speakers-grid::-webkit-scrollbar {
    display: none;
  }
  .speakers-grid {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }
}

.speaker {
  position: relative;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--slate-200);
  padding: 28px 24px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.speaker::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,91,168,.08), transparent 70%);
  pointer-events: none;
  transition: transform .4s ease;
}
.speaker:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ic-blue-100);
}
.speaker:hover::after { transform: scale(1.4); }
.speaker:nth-child(2n)::after { background: radial-gradient(circle, rgba(92,185,64,.1), transparent 70%); }

.speaker-photo {
  position: relative;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ic-blue-100), var(--ic-blue-50));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ic-blue);
  font-size: 32px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px -8px rgba(30,91,168,.4);
}
.speaker:nth-child(2n) .speaker-photo {
  background: linear-gradient(135deg, var(--ic-green-100), var(--ic-green-50));
  color: var(--ic-green-600);
  box-shadow: 0 6px 20px -8px rgba(92,185,64,.4);
}
.speaker-photo::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1.5px dashed var(--slate-200);
  border-radius: 50%;
}
.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps aspect ratio while filling */
    border-radius: 50%; /* optional but safe */
}
.speaker h3 {
  font-size: 18px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.speaker .role {
  font-size: 13.5px;
  color: var(--ic-blue);
  font-weight: 600;
  font-family: var(--ff-display);
  margin: 0 0 4px;
}
.speaker:nth-child(2n) .role { color: var(--ic-green-600); }
.speaker .org {
  font-size: 13px;
  color: var(--slate-500);
  margin: 0 0 16px;
}
.speaker-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--slate-200);
}
.speaker-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-family: var(--ff-display);
}
.speaker .li {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--slate-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--slate-500);
  transition: background-color .2s ease, color .2s ease;
}
.speaker .li:hover { background: #0a66c2; color: #fff; }

/* =============================================================
   STARTUP SHOWCASE — grid of all
   ============================================================= */
.startups { background: #fff; }
.startups-info {
  background: var(--ic-blue-50);
  border: 1px solid var(--ic-blue-100);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
  font-size: 14.5px;
  color: var(--navy);
}
.startups-info svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--ic-blue); }
.startups-info strong { color: var(--ic-blue); font-family: var(--ff-display); }

.startups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .startups-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .startups-grid { grid-template-columns: 1fr; } }

.startup {
  position: relative;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.startup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ic-blue-50) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.startup:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ic-blue-100); }
.startup:hover::before { opacity: 1; }

.startup-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
  position: relative;
  align-items: center;
}
.startup-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-600));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 16px -6px rgba(30,91,168,.5);
}
.startup:nth-child(3n+2) .startup-logo { background: linear-gradient(135deg, var(--ic-green), var(--ic-green-600)); box-shadow: 0 6px 16px -6px rgba(92,185,64,.5); }
.startup:nth-child(3n+3) .startup-logo { background: linear-gradient(135deg, var(--navy), var(--ic-blue)); }
.startup h3 {
  font-size: 17px;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.startup-head .sector {
  font-size: 12px;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ic-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.startup:nth-child(3n+2) .startup-head .sector { color: var(--ic-green-600); }
.startup-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
}
.startup-meta .lab {
  font-size: 11px;
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 2px;
}
.startup-meta .val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--ff-display);
}
.startup p {
  font-size: 14px;
  color: var(--slate-600);
  margin: 0 0 14px;
  line-height: 1.55;
  position: relative;
}
.startup-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  position: relative;
}
.startup-tags span {
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-weight: 500;
  font-family: var(--ff-display);
}
/* ================= IMAGE SUPPORT ================= */

.startup-image {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

/* Image */
.startup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Replace old logo style with overlay badge */
.startup-image .startup-logo {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: auto;
  height: auto;
  padding: 4px 7px;
  font-size: 11px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-600));
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Keep color variations */
.startup:nth-child(3n+2) .startup-image .startup-logo {
  background: linear-gradient(135deg, var(--ic-green), var(--ic-green-600));
}
.startup:nth-child(3n+3) .startup-image .startup-logo {
  background: linear-gradient(135deg, var(--navy), var(--ic-blue));
}
/* =============================================================
   COHORTS
   ============================================================= */
.cohorts { background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%); }
.cohorts-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .cohorts-grid { grid-template-columns: 1fr; gap: 48px; } }

.cohorts-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.stat {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.stat:hover { border-color: var(--ic-blue-300); box-shadow: var(--shadow-md); }
.stat .num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--ic-blue), var(--ic-green));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .lab {
  font-size: 13px;
  color: var(--slate-600);
  font-family: var(--ff-display);
  font-weight: 500;
}

/* cohort visual */
.cohort-visual {
  position: relative;
  aspect-ratio: 1.1 / 1;
}
.cohort-tile {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cohort-tile-1 { top: 0; left: 0; width: 60%; height: 50%;
  background: linear-gradient(160deg, #1e5ba8, #143f78); }
.cohort-tile-2 { top: 0; right: 0; width: 38%; height: 30%;
  background: linear-gradient(160deg, #d8f1c9, #5cb940); }
.cohort-tile-3 { top: 32%; right: 0; width: 38%; height: 38%;
  background: linear-gradient(160deg, #cfe2f7, #1e5ba8 90%); }
.cohort-tile-4 { bottom: 0; left: 0; width: 56%; height: 46%;
  background: linear-gradient(160deg, #f1f5f9, #cbd5e1);
  border: 1px solid var(--slate-200); }
.cohort-tile-5 { bottom: 0; right: 0; width: 40%; height: 26%;
  background: linear-gradient(160deg, #4ea235, #143f78); }
.cohort-tile svg { position: absolute; inset: 0; margin: auto; width: 40%; height: 40%; opacity: .85; }

.cohort-pill {
  position: absolute;
  bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cohort-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ic-green);
  box-shadow: 0 0 0 4px rgba(92,185,64,.2);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { background: #fff; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; } }

.t-card {
  position: relative;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ic-blue-100);
}
.t-quote {
  font-size: 50px;
  line-height: 0.6;
  font-family: var(--ff-display);
  color: var(--ic-blue-100);
  margin-bottom: 6px;
}
.t-stars {
  display: flex; gap: 3px;
  margin-bottom: 14px;
  color: #f59e0b;
}
.t-stars svg { width: 16px; height: 16px; fill: currentColor; }
.t-card p {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.6;
  margin: 0 0 22px;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-100);
}
.t-author .ava {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ic-blue-100), var(--ic-blue-300));
  color: var(--ic-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
}
.t-card:nth-child(2) .t-author .ava {
  background: linear-gradient(135deg, var(--ic-green-100), var(--ic-green-300));
  color: var(--ic-green-600);
}
.t-author .nm {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 14.5px;
  margin: 0;
}
.t-author .rl {
  font-size: 12.5px;
  color: var(--slate-500);
  margin: 0;
}

/* =============================================================
   CTA BANNER
   ============================================================= */
.cta {
  padding: 0;
  background: #fff;
}
.cta-card {
  position: relative;
  margin: 0 24px;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 80px);
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(92,185,64,.22), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(30,91,168,.6), transparent 60%),
    linear-gradient(135deg, #0a2540 0%, #143f78 60%, #1a4f93 100%);
  border-radius: 32px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 14px;
}
.cta-card p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto 32px;
}
.cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 72px 0 36px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-w {
  display: inline-block;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.footer-brand .logo-w img { height: 38px; }
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-tag {
  font-family: var(--ff-display);
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.footer-tagline { color: var(--ic-green-300); font-weight: 600; }

.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  font-family: var(--ff-display);
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,.78);
  font-size: 14.5px;
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--ic-green-300); }

.contact-block {
  display: grid; gap: 14px;
}
.contact-item {
  font-size: 14px;
}
.contact-item .nm {
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 14px;
}
.contact-item a { color: rgba(255,255,255,.7); }
.contact-item a:hover { color: var(--ic-green-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom strong {
  font-family: var(--ff-display);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .2s ease;
}
.footer-social a:hover {
  background: var(--ic-green);
  border-color: var(--ic-green);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; }

/* =============================================================
   ANIMATIONS — reveal on scroll
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-orb, .hero-rocket, .hero-visual-card { animation: none !important; }
}

/* =============================================================
   PROGRAM FLOW (Tracks) — replaces the old 3-day tab timeline
   ============================================================= */
.tracks {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  position: relative;
}
/* subtle connecting line behind the badges */
.tracks::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--ic-blue-100), var(--ic-green-100));
  opacity: .8;
  z-index: 0;
}
.track {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.track-badge {
  background: linear-gradient(135deg, var(--ic-blue), var(--ic-blue-700));
  color: #fff;
  border-radius: 999px 14px 14px 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 16px 22px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  height: 56px;
  align-self: center;
  box-shadow: 0 8px 22px -10px rgba(30,91,168,.55);
  position: relative;
}
.track-badge::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--ic-blue);
  z-index: -1;
}
.track-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.track-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ic-blue), var(--ic-green));
  opacity: 0;
  transition: opacity .3s;
}
.track-card:hover {
  border-color: var(--ic-blue-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.track-card:hover::before { opacity: 1; }
.track-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ic-blue-50), var(--ic-green-50));
  border: 1px solid var(--ic-blue-100);
  display: grid; place-items: center;
  color: var(--ic-blue);
  flex-shrink: 0;
}
.track-icon svg { width: 26px; height: 26px; }
.track-text h4 {
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.track-text p {
  font-size: 14px;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.55;
}
/* --- Original Slider Styles --- */
.video-card {
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* 🔥 maintains consistent height */
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.video-wrapper:hover .video-play-btn { background: rgba(0,0,0,0.8); }

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}


.testimonial-slider .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial-slider .swiper-slide-prev,
.testimonial-slider .swiper-slide-next {
  transform: none !important;
  opacity: 1 !important;
}

.testimonial-slider { overflow: visible; }

/* --- Lightbox Specific Styles --- */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
}

.video-lightbox.active { display: flex; }

.lightbox-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 10000;
}

.lightbox-content video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
@media (max-width: 720px) {
  .tracks::before { left: 26px; }
  .track {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .track-badge {
    border-radius: 999px;
    padding: 10px 16px;
    height: auto;
    width: max-content;
    margin-left: 4px;
    font-size: 13px;
  }
  .track-card {
    grid-template-columns: 44px 1fr;
    padding: 18px;
    gap: 14px;
  }
  .track-icon { width: 44px; height: 44px; border-radius: 11px; }
  .track-icon svg { width: 20px; height: 20px; }
  .track-text h4 { font-size: 16px; }
  .track-text p { font-size: 13.5px; }
}

/* =============================================================
   STARTUP SLIDER (replaces the static grid)
   ============================================================= */
.slider-wrap {
  position: relative;
  margin-top: 28px;
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform .55s cubic-bezier(.22,.7,.15,1);
  will-change: transform;
}
.slider-track .startup {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
@media (max-width: 960px) {
  .slider-track .startup { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
  .slider-track .startup { flex: 0 0 100%; }
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 16px;
}
.slider-arrows { display: flex; gap: 10px; }
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--navy);
  transition: all .25s ease;
}
.slider-btn:hover:not(:disabled) {
  border-color: var(--ic-blue);
  background: var(--ic-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.slider-btn:disabled { opacity: .35; cursor: not-allowed; }
.slider-btn svg { width: 18px; height: 18px; }
.slider-counter {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-500);
  letter-spacing: .04em;
}
.slider-counter strong { color: var(--ic-blue); font-weight: 700; }
.slider-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 280px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--slate-200);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.slider-dot.active {
  width: 28px;
  background: linear-gradient(90deg, var(--ic-blue), var(--ic-green));
}
.slider-dot:hover:not(.active) { background: var(--slate-300); }

/* =============================================================
   ALIGNMENT FIXES
   ============================================================= */
/* Make sure section-head--center actually centers everything */
.section-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head--center .section-eyebrow,
.section-head--center .section-title,
.section-head--center .section-lead { text-align: center; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* Speakers — keep cards same height regardless of role-line wrapping */
.speakers-grid .speaker { display: flex; flex-direction: column; }
.speakers-grid .speaker .speaker-bottom { margin-top: auto; }

/* Highlights — equalise card heights */
.highlights-grid .highlight { display: flex; flex-direction: column; }
.highlights-grid .highlight p { margin-top: auto; }


@media (max-width: 960px) {
  .hero-strip {
    padding: 2% 4%;
  }
}
@media (min-width: 1400px) {
  .hero-inner {
    gap: 80px;
  }

  .section {
    padding: 120px 0;
  }

  .section-title {
    font-size: 48px;
  }
}

@media (max-width: 1200px) {
  .about-grid,
  .cohorts-grid {
    gap: 48px;
  }

  .hero-inner {
    gap: 40px;
  }

  .highlights-grid {
    gap: 18px;
  }
}

@media (max-width: 992px) {

  /* NAV */
  .nav {
    height: 64px;
  }

  /* HERO */
  .hero h1 {
    font-size: clamp(40px, 8vw, 72px);
  }

  .hero-desc {
    font-size: 15.5px;
  }

  .hero-meta {
    gap: 10px;
  }

  /* GRID FIXES */
  .highlights-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .speakers-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .startups-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  /* CTA */
  .cta-card {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {

  /* GLOBAL */
  body {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  /* HERO */
  .hero-inner {
    padding: 70px 20px 50px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 54px);
    line-height: 1.05;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 14.5px;
  }

  .hero-meta-item {
    padding: 10px 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* ABOUT */
  .about-copy h2 {
    font-size: 26px;
  }

  /* FLOW */
  .flow-timeline {
    grid-template-columns: 70px 1fr;
  }

  /* TRACKS */
  .tracks::before {
    left: 20px;
  }
}

/* =========================
   MOBILE MENU
========================= */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* MOBILE STYLES */
@media (max-width: 960px) {

  .nav {
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;

    border-top: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
  }

  /* ACTIVE STATE */
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* =========================
   HAMBURGER ANIMATION
========================= */

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ag-wrap { font-family: 'DM Sans', sans-serif; padding: 2rem 1rem; }
.ag-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.5rem; }
.ag-title { font-family: 'DM Serif Display', serif; font-size: 38px; color: #0B1F4E; letter-spacing: -1px; line-height: 1; }
.ag-subtitle { font-size: 12px; color: #6B7AA1; letter-spacing: 2px; margin-top: 4px; }
.ag-brand { font-size: 11px; font-weight: 600; color: #0B1F4E; text-align: right; letter-spacing: 1px; text-transform: uppercase; }
.ag-brand span { display: block; font-size: 18px; font-weight: 700; color: #C85A00; letter-spacing: -0.5px; }
.ag-divider { height: 3px; background: linear-gradient(90deg, #C85A00 0%, #E8A24A 40%, #E8ECF5 100%); border-radius: 2px; margin-bottom: 1.5rem; }
.ag-grid { display: grid; grid-template-columns: 90px 1fr 1fr 1fr 90px; gap: 4px; }
.ag-col-head { background: #0B1F4E; color: #fff; text-align: center; font-size: 11px; font-weight: 600; padding: 10px 6px; border-radius: 6px; letter-spacing: 0.3px; }
.ag-time { background: #EDF0F8; color: #3A4A6B; text-align: center; font-size: 10px; font-weight: 500; padding: 6px 4px; border-radius: 5px; display: flex; align-items: center; justify-content: center; line-height: 1.3; }
.ag-cell { border-radius: 6px; padding: 8px 10px; font-size: 11px; font-weight: 500; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.4; position: relative; overflow: hidden; flex-direction: column; }
.ag-cell::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.ag-empty { background: transparent; }
.ag-lunch { background: #F5F5F0; color: #888; font-size: 10px; font-style: italic; border: 1px dashed #ddd; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.ag-special { background: #FFF5E8; color: #7A3500; }
.ag-special::before { background: #C85A00; }
.ag-session { background: #EEF2FF; color: #1E2C6E; }
.ag-session::before { background: #4055C8; }
.ag-session2 { background: #E8F5F0; color: #0A3D2A; }
.ag-session2::before { background: #1A8A5A; }
.ag-culture { background: #F0EEF8; color: #2A1D5E; }
.ag-culture::before { background: #6B55B8; }
.ag-gala { background: #FFF0F0; color: #6E1E1E; }
.ag-gala::before { background: #C84040; }
.ag-pitch { background: #E8F0FE; color: #0D2B80; }
.ag-pitch::before { background: #2A5CE8; }
.ag-closing { background: #F0FAF0; color: #0D3E1A; }
.ag-closing::before { background: #2A8A40; }
.ag-label { font-size: 9px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; opacity: 0.65; display: block; margin-bottom: 2px; }
.ag-main { font-size: 11.5px; display: block; }
.ag-footer { text-align: center; margin-top: 1.5rem; font-size: 11px; color: #8A94AA; letter-spacing: 1px; }
.ag-day { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }


@media (max-width: 992px) {
  .ag-title {
    font-size: 28px;
  }

  .ag-grid {
    grid-template-columns: 70px 1fr 1fr;
  }

  .ag-col-head {
    font-size: 10px;
    padding: 8px 4px;
  }

  .ag-cell {
    font-size: 10px;
    padding: 6px 8px;
  }

  .ag-time {
    font-size: 9px;
  }

  .ag-brand span {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .ag-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ag-title {
    font-size: 22px;
  }

  .ag-grid {
    display: block;
  }

  .ag-col-head {
    display: none; /* hide column headers */
  }

  .ag-time {
    width: 100%;
    margin-top: 10px;
    font-size: 10px;
  }

  .ag-cell {
    width: 100%;
    margin-bottom: 8px;
    font-size: 10px;
    padding: 10px;
    align-items: flex-start;
    text-align: left;
  }

  .ag-label {
    font-size: 8px;
  }

  .ag-main {
    font-size: 11px;
  }
}


.carousel-indicators {
  top: 95%;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--slate-300);
  border: none;
  transition: all .3s ease;
}