    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #FFFFFF;
      --bg2: #F8F9FC;
      --card: #FFFFFF;
      --border: rgba(0,0,0,0.08);
      --blue: #0066FF;
      --blue-dim: rgba(0,102,255,0.06);
      --gold: #D4AF37;
      --text: #0B0B0B;
      --muted: #5B6B79;
      --white: #0B0B0B;
      --green: #00A86B;
      --radius: 20px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.65;
    }

    /* Light noise texture overlay — soft grain */
    body::before {
      content: '';
      position: fixed;
      inset: 0;

      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* Navbar - light glass */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 5%;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .logo span {
      color: var(--blue);
    }

    nav .cta-btn {
      padding: 10px 24px;
      font-size: 0.88rem;
      background: var(--blue);
      color: white;
    }

    /* Sticky apply button - upgraded modern blue glow */
.sticky-apply {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), #0047ff);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 
    0 0 20px rgba(0,102,255,0.35),
    0 0 40px rgba(0,102,255,0.15),
    0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  animation: pulse-glow 2.5s infinite;
  backdrop-filter: blur(8px);
}

/* Rocket icon styling */
.sticky-apply i {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rocket-bounce 1.5s infinite ease-in-out;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Hover effect */
.sticky-apply:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 0 25px rgba(0,102,255,0.45),
    0 0 50px rgba(0,102,255,0.25),
    0 8px 18px rgba(0,0,0,0.18);
}

/* Glow pulse */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 
      0 0 18px rgba(0,102,255,0.25),
      0 4px 12px rgba(0,0,0,0.08);
  }
  50% {
    box-shadow: 
      0 0 28px rgba(0,102,255,0.5),
      0 0 50px rgba(0,102,255,0.25),
      0 6px 16px rgba(0,0,0,0.15);
  }
}

/* Rocket movement */
@keyframes rocket-bounce {
  0%, 100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-4px) rotate(8deg);
  }
}

    /* Buttons */
    .cta-btn {
      display: inline-block;
      background: var(--blue);
      color: white;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 38px;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.3px;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,102,255,0.25);
    }

    .cta-btn-outline {
      display: inline-block;
      border: 1.5px solid rgba(0,102,255,0.4);
      color: var(--blue);
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      padding: 15px 36px;
      border-radius: 50px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .cta-btn-outline:hover {
      background: var(--blue-dim);
    }

    /* Sections */
    section {
      position: relative;
      z-index: 1;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .section-pad {
      padding: 100px 0;
    }

    .section-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
      display: block;
    }

    h2.section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .section-body {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 620px;
      line-height: 1.75;
    }

    /* Hero */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,102,255,0.05) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      pointer-events: none;
    }

    .hero-glow2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
      bottom: 0;
      left: 10%;
      pointer-events: none;
    }

    .cohort-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-dim);
      border: 1px solid var(--border);
      color: var(--blue);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
    }

    .cohort-badge .dot {
      width: 7px;
      height: 7px;
      background: var(--green);
      border-radius: 50%;
      animation: blink 1.4s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 800;
      color: var(--text);
      line-height: 1.1;
      letter-spacing: -1.5px;
      max-width: 760px;
      margin-bottom: 24px;
    }

    h1 .accent {
      color: var(--blue);
    }

    h1 .accent-gold {
      color: var(--gold);
    }

    .hero-sub {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 42px;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 64px;
    }

    /* ── Scrollable container ── */
.highlight-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop */
  gap: 12px;
  padding: 4px 2px 12px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.highlight-card i {
  font-size: 1.5rem;
  color: var(--accent, #4f8ef7);
  line-height: 1;
}

.highlight-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}

    /* Countdown */
    #countdown-section {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 40px 5%;
    }

    .countdown-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

.countdown-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-label i {
  color: var(--blue);
  font-size: 1.2rem;
}

    .countdown-units {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .cd-unit {
      text-align: center;
    }

    .cd-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      display: block;
      min-width: 64px;
    }

    .cd-label {
      font-size: 0.7rem;
      color: var(--muted);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 4px;
      display: block;
    }

    .cd-sep {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: rgba(0,0,0,0.12);
      margin-bottom: 20px;
    }

    .countdown-btn {
        font-size:.85rem;
        padding:12px 24px;
        display: inline-block;
        background: var(--blue);
        color: white;
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        border-radius: 50px;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
        letter-spacing: 0.3px;
    }

    .countdown-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,102,255,0.25);
    }

    /* Problem cards */
    #problem {
      background: var(--bg);
    }

    .problems-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }

    .problem-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: border-color .2s, transform .2s;
    }

    .problem-card:hover {
      border-color: rgba(0,102,255,0.25);
      transform: translateY(-3px);
    }

    .problem-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--accent, #4f8ef7);
}

    .problem-card h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 6px;
    }

    .problem-card p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.55;
    }

    .problem-close {
      margin-top: 48px;
      background: rgba(0,102,255,0.03);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 36px;
      font-size: 1.05rem;
      color: var(--text);
      font-weight: 500;
    }

    .problem-close span {
      color: var(--blue);
      font-weight: 700;
    }

    /* random icon  */

    .bi-lightbulb-fill,
    .bi-stopwatch-fill {
      color: var(--blue);
      font-size: 1.2rem;
    }

    /* overview */
    #overview {
      background: var(--bg2);
    }

    .overview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-top: 48px;
    }

    .overview-stat {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .stat-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      min-width: 80px;
    }

    .stat-info h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 4px;
    }

    .stat-info p {
      font-size: 0.88rem;
      color: var(--muted);
    }

    .overview-details {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .detail-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      font-size: 0.9rem;
    }

    .detail-row .dk {
      color: var(--muted);
      font-weight: 500;
    }

    .detail-row .dv {
      color: var(--text);
      font-weight: 600;
      font-family: 'Syne', sans-serif;
    }

    .detail-row .dv.lang {
      color: var(--gold);
    }

    /* phases */
    #phases {
      background: var(--bg);
    }

    .phases-timeline {
      position: relative;
      margin-top: 64px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .phases-timeline::before {
      content: '';
      position: absolute;
      left: 36px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--blue), var(--gold), var(--green), rgba(0,102,255,0.1));
      border-radius: 2px;
    }

    .phase-card {
      display: flex;
      gap: 32px;
      align-items: flex-start;
      position: relative;
      padding-bottom: 40px;
    }

    .phase-card:last-child {
      padding-bottom: 0;
    }

    .phase-number {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      flex-shrink: 0;
      z-index: 1;
      border: 2px solid;
      background: white;
    }

    .phase-card:nth-child(1) .phase-number {
      background: rgba(0,102,255,0.08);
      border-color: var(--blue);
      color: var(--blue);
    }

    .phase-card:nth-child(2) .phase-number {
      background: rgba(212,175,55,0.08);
      border-color: var(--gold);
      color: var(--gold);
    }

    .phase-card:nth-child(3) .phase-number {
      background: rgba(0,168,107,0.08);
      border-color: var(--green);
      color: var(--green);
    }

    .phase-card:nth-child(4) .phase-number {
      background: rgba(130,70,230,0.08);
      border-color: #7B3FE4;
      color: #7B3FE4;
    }

    .phase-content {
      flex: 1;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 32px;
      transition: border-color .2s, transform .2s;
    }

    .phase-content:hover {
      transform: translateX(4px);
      border-color: rgba(0,102,255,0.2);
    }

    .phase-tag {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 12px;
      display: inline-block;
    }

    .phase-card:nth-child(1) .phase-tag {
      background: rgba(0,102,255,0.1);
      color: var(--blue);
    }

    .phase-card:nth-child(2) .phase-tag {
      background: rgba(212,175,55,0.1);
      color: var(--gold);
    }

    .phase-card:nth-child(3) .phase-tag {
      background: rgba(0,168,107,0.1);
      color: var(--green);
    }

    .phase-card:nth-child(4) .phase-tag {
      background: rgba(123,63,228,0.08);
      color: #7B3FE4;
    }

    .phase-content h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--text);
      margin-bottom: 8px;
    }

    .phase-content p {
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.65;
    }

    .phase-duration {
      margin-top: 12px;
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* gains */
    #gains {
      background: var(--bg2);
    }

    .gains-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }

    .gain-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px 24px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: border-color .2s;
    }

    .gain-item:hover {
      border-color: rgba(0,102,255,0.25);
    }

    .gain-check {
      width: 28px;
      height: 28px;
      background: rgba(0,168,107,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 0.85rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .gain-item span {
      font-size: 0.95rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.5;
    }

    /* who grid */
    #who {
      background: var(--bg);
    }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }

    .who-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
      transition: border-color .2s, transform .2s;
    }

    .who-card:hover {
      border-color: rgba(0,102,255,0.2);
      transform: translateY(-4px);
    }

    .who-icon {
      color: var(--blue);
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .who-card h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.4;
    }

    /* Outcomes */
    #outcomes {
      background: var(--bg2);
    }

    .outcomes-box {
      margin-top: 48px;
      background: rgba(0,102,255,0.02);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .outcome-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .outcome-bullet {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--blue), var(--green));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
      margin-top: 2px;
      color: white;
    }

    .outcome-bullet .Icons {
      font-size: 1.5rem;
      color: var(--bg2);
    }

    .outcome-item span {
      font-size: 0.98rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.5;
    }

    /* FAQ */
    #faq {
      background: var(--bg);
    }

    .faq-list {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 780px;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.97rem;
      color: var(--text);
      gap: 16px;
    }

    .faq-arrow {
      width: 28px;
      height: 28px;
      background: rgba(0,102,255,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 0.75rem;
      flex-shrink: 0;
      transition: transform .3s;
    }

    .faq-item.open .faq-arrow {
      transform: rotate(180deg);
    }

    .faq-a {
      display: none;
      padding: 0 24px 20px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    /* Apply CTA */
    #apply {
      background: var(--bg2);
      text-align: center;
      padding: 120px 5%;
      position: relative;
      overflow: hidden;
    }

    .apply-glow {
      position: absolute;
      width: 600px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,102,255,0.05) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    #apply h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      color: var(--text);
      margin-bottom: 20px;
      letter-spacing: -1px;
      position: relative;
    }

    #apply p {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 520px;
      margin: 0 auto 40px;
      position: relative;
    }

    .apply-meta {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
      position: relative;
    }

    .apply-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--muted);
    }

    .apply-meta-item .dot-red {
      width: 7px;
      height: 7px;
      background: #FF4D4D;
      border-radius: 50%;
    }

    .apply-meta-item .dot-green {
      width: 7px;
      height: 7px;
      background: var(--green);
      border-radius: 50%;
    }

    /* cta-btn-apply  */

    .cta-btn-apply {
      display: inline-block;
      background: var(--blue);
      color: white;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 38px;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.3px;
    }

    
    .cta-btn-apply:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,102,255,0.25);
    }

    /* Footer */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      text-align: center;
      padding: 32px 5%;
      font-size: 0.82rem;
      color: var(--muted);
    }

    footer .logo-f {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
      font-size: 1rem;
    }

    footer .logo-f span {
      color: var(--blue);
    }

    /* Animations */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {

    }
