@font-face {
  font-family: 'LEMONMILK';
  src: url('LEMONMILK-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: 'LEMONMILK', sans-serif !important;
}

  :root {
    --navy:    #080E24;
    --navy2:   #0D1530;
    --slate:   #131E3D;
    --electric:#00D4FF;
    --lime:    #7EFF6E;
    --gold:    #FFD166;
    --coral:   #FF5F57;
    --ghost:   #6B7FA8;
    --muted:   #9BA8C4;
    --white:   #EEF4FF;
    --glow:    rgba(0,212,255,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
  }
  .webinar-poster{
width:100%;
max-width:600px;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.hero{
display:flex;
align-items:center;
gap:40px;
}


  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ── TOP SCAN LINE ── */
  .scan-line {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric), var(--lime), var(--electric));
    background-size: 200%;
    animation: scanMove 3s linear infinite;
    z-index: 1000;
  }
  @keyframes scanMove { to { background-position: 200%; } }

  /* ── GRID BG ── */
  .grid-bg {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }
  
  .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 65px;   /* adjust size here */
  width: auto;
}


  /* ── MAIN LAYOUT ── */
  .page-wrap {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── NAV ── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,212,255,0.1);
    margin-bottom: 0;
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--electric);
    box-shadow: 0 0 10px var(--electric);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.5); } }

  .nav-badge {
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    color: var(--electric);
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
  }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding: 60px 0 50px;
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { order: -1; }
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--electric);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0,212,255,0.07);
    border: 1px solid rgba(0,212,255,0.2);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 22px;
  }
  .eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--electric);
    box-shadow: 0 0 8px var(--electric);
    animation: pulse 1.5s ease-in-out infinite;
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .h1-accent { color: var(--electric); display: block; }
  .h1-sub {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--lime);
    margin-bottom: 20px;
    display: block;
  }

  .hero-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
  }

  .what-inside {
    background: rgba(19,30,61,0.8);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 32px;
  }
  .what-inside h3 {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--ghost);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .inside-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.4;
  }
  .inside-item:last-child { margin-bottom: 0; }
  .inside-check {
    width: 18px; height: 18px; flex-shrink: 0;
    background: rgba(126,255,110,0.1);
    border: 1px solid var(--lime);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    color: var(--lime);
    font-size: 10px;
    margin-top: 1px;
  }

  /* ── FORM CARD ── */
  .form-card {
    background: var(--slate);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
  }
  .form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--lime));
  }
  .form-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .form-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .form-sub {
    font-size: 0.8rem;
    color: var(--ghost);
    margin-bottom: 24px;
    font-family: 'Space Mono', monospace;
  }

  .form-group {
    margin-bottom: 16px;
  }
  label {
    display: block;
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    color: var(--ghost);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 7px;
  }
  input, select {
    width: 100%;
    background: rgba(8,14,36,0.8);
    border: 1px solid rgba(107,127,168,0.3);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
  }
  input::placeholder { color: rgba(107,127,168,0.5); }
  input:focus, select:focus {
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
  }

  .cta-btn {
    width: 100%;
    background: var(--electric);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
  }
  .cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 60%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .cta-btn:hover::after { transform: translateX(100%); }
  .cta-btn:hover {
    background: #1ADEFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,212,255,0.35);
  }
  .cta-btn:active { transform: translateY(0); }

  .form-privacy {
    text-align: center;
    font-size: 0.72rem;
    color: var(--ghost);
    margin-top: 12px;
    line-height: 1.5;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(0,212,255,0.08);
    border-bottom: 1px solid rgba(0,212,255,0.08);
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    margin: 0 0 60px;
  }
  .stat-item {
    flex: 1;
    text-align: center;
    padding: 22px 20px;
    background: var(--slate);
    border-right: 1px solid rgba(0,212,255,0.1);
    position: relative;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--electric);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 0.72rem;
    color: var(--ghost);
    line-height: 1.3;
  }

  @media (max-width: 600px) {
    .stats-bar { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(0,212,255,0.1); }
  }

  /* ── SECTION LABEL ── */
  .section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--electric);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-eyebrow::after {
    content: '';
    height: 1px;
    background: rgba(0,212,255,0.2);
    flex: 1;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* ── WHAT'S IN THE ROADMAP SECTION ── */
  .roadmap-section { padding: 0 0 60px; }
  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
  }
  @media (max-width: 700px) { .roadmap-grid { grid-template-columns: 1fr; } }

  .roadmap-card {
    background: var(--slate);
    border: 1px solid rgba(0,212,255,0.1);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
  }
  .roadmap-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.35);
  }
  .roadmap-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--card-accent, var(--electric));
    opacity: 0;
    transition: opacity 0.2s;
  }
  .roadmap-card:hover::before { opacity: 1; }

  .card-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
  }
  .card-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
  }
  .card-desc {
    font-size: 0.82rem;
    color: var(--ghost);
    line-height: 1.6;
  }

  /* ── CAREER PATHS STRIP ── */
  .careers-section { padding: 0 0 60px; }
  .career-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
  .career-item {
    display: flex;
    align-items: center;
    background: var(--slate);
    border: 1px solid rgba(0,212,255,0.1);
    border-radius: 10px;
    padding: 16px 24px;
    gap: 20px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
  }
  .career-item::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--item-color, var(--electric));
    border-radius: 3px 0 0 3px;
  }
  .career-item:hover {
    border-color: rgba(0,212,255,0.3);
    background: rgba(19,30,61,0.9);
  }
  .career-num {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--item-color, var(--electric));
    min-width: 32px;
  }
  .career-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
  }
  .career-salary {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    color: var(--lime);
    white-space: nowrap;
  }
  .career-time {
    font-size: 0.75rem;
    color: var(--ghost);
    white-space: nowrap;
  }

  @media (max-width: 600px) {
    .career-item { flex-wrap: wrap; }
    .career-salary, .career-time { flex-basis: 50%; }
  }

  /* ── COURSES GRID ── */
  .courses-section { padding: 0 0 60px; }
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
  }
  @media (max-width: 600px) { .courses-grid { grid-template-columns: 1fr; } }

  .course-card {
    background: var(--slate);
    border: 1px solid rgba(0,212,255,0.1);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.2s;
  }
  .course-card:hover { border-color: rgba(0,212,255,0.3); }
  .course-badge {
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--electric);
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 2px;
  }
  .course-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .course-meta {
    font-size: 0.75rem;
    color: var(--ghost);
  }
  .course-meta span { color: var(--gold); }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 0 0 60px; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
  }
  @media (max-width: 700px) { .testimonials-grid { grid-template-columns: 1fr; } }

  .testimonial-card {
    background: var(--slate);
    border: 1px solid rgba(0,212,255,0.1);
    border-radius: 12px;
    padding: 24px;
  }
  .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }
  .quote {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
  }
  .reviewer-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .reviewer-role {
    font-size: 0.75rem;
    color: var(--electric);
  }

  /* ── FINAL CTA ── */
  .final-cta {
    background: linear-gradient(135deg, var(--slate), rgba(0,212,255,0.05));
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--lime), var(--electric));
    background-size: 200%;
    animation: scanMove 3s linear infinite;
  }
  .final-cta-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .final-cta-sub {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
  }
  .contact-pill {
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--electric);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    font-family: 'Space Mono', monospace;
  }
  .contact-pill:hover { background: rgba(0,212,255,0.15); transform: translateY(-2px); }

  .locations-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }
  .location-tag {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.72rem;
    color: var(--ghost);
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(0,212,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--ghost);
    font-family: 'Space Mono', monospace;
  }

  /* ── ANIMATION ── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-in { animation: fadeInUp 0.6s ease both; }
  .fade-in-2 { animation: fadeInUp 0.6s 0.15s ease both; }
  .fade-in-3 { animation: fadeInUp 0.6s 0.3s ease both; }

  /* ── SUCCESS STATE ── */
  .success-overlay {
    display: none;
    text-align: center;
    padding: 20px 0;
  }
  .success-icon {
    width: 60px; height: 60px;
    background: rgba(126,255,110,0.1);
    border: 2px solid var(--lime);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }
  @keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  .success-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 8px;
  }
  .success-msg {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
  }
