/* ══════════════════════════════════════════
   DESIGN SYSTEM — LIGHT THEME (SHARED)
══════════════════════════════════════════ */
:root {
  --void:     #FAFBFF;
  --deep:     #F2F4FC;
  --surface:  #E8ECF8;
  --card:     #FFFFFF;
  --card2:    #F7F9FF;
  --gold:     #C9860A;
  --gold2:    #E09A0A;
  --gold3:    #F5C842;
  --violet:   #6D3FD6;
  --violet2:  #8B5CF6;
  --teal:     #0AA88C;
  --text:     #0D1120;
  --muted:    rgba(13,17,32,0.55);
  --muted2:   rgba(13,17,32,0.35);
  --border:   rgba(13,17,32,0.08);
  --border2:  rgba(201,134,10,0.25);
  --r:        18px;
  --glow-g:   0 0 60px rgba(201,134,10,0.12);
  --glow-v:   0 0 60px rgba(109,63,214,0.1);
  --shadow:   0 4px 24px rgba(13,17,32,0.08);
  --shadow2:  0 16px 48px rgba(13,17,32,0.12);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--void);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 2px; }

/* ──────────── CURSOR ──────────── */
#cur {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold3), 0 0 24px rgba(201,134,10,0.3);
  transition: transform 0.08s;
}
#cur-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(201,134,10,0.4);
  border-radius: 50%;
  transition: all 0.14s ease;
}
body.hovering #cur { transform: scale(3); }
body.hovering #cur-ring { transform: scale(0.6); border-color: rgba(201,134,10,0.8); }

/* ══════════════════════════════════════════
   LOADER
══════════════════════════════════════════ */
 /* #loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--void);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px; font-weight: 700;
  letter-spacing: 4px; color: var(--text);


}
.loader-logo span { color: var(--gold); }
.loader-bar-wrap {
  width: 220px; height: 2px;
  background: rgba(13,17,32,0.1); border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold2), var(--gold3));
  border-radius: 2px;
  animation: loadFill 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
  box-shadow: 0 0 12px rgba(201,134,10,0.4);
}
@keyframes loadFill { 0%{width:0%} 100%{width:100%} }
.loader-text {
  font-family: 'Fira Code', monospace; font-size: 12px;
  color: var(--muted2); letter-spacing: 1px;
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }  */

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 20px;
  background: transparent;
  transition: all 0.4s ease;
  height: 100px;
  background: rgba(250,251,255,0.92);

}
.nav.solid {
  background: rgba(250,251,255,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(13,17,32,0.06);
}

/* .nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-mark  {
  border-radius: 10px;
}

.logo-text .lt1 { color: var(--text); font-size: 18px; }
.logo-text .lt2 { color: var(--gold); font-size: 11px; letter-spacing: 3px; font-family: 'Fira Code', monospace; font-weight: 400; } */
.logo-mark{
  width: 200px;
  height: 200px;
}
.logo-mark img{
  width: 100%;
  height: 100%;
}
.nav-links {
  display: flex; list-style: none; gap: 4px; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; transition: all 0.25s; letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--text); background: rgba(13,17,32,0.05); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold2), var(--gold3)) !important;
  color: #fff !important; font-weight: 700 !important; padding: 10px 24px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 20px rgba(201,134,10,0.3) !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 30px rgba(201,134,10,0.45) !important; background: rgba(13,17,32,0.06) !important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:none; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:all 0.3s; }

/* dropdown css */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: var(--card);
  border-radius: 14px;
  padding: 10px;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  box-shadow: 0 20px 50px rgba(13,17,32,0.12);
  border: 1px solid var(--border);

  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW DROPDOWN */
/* REMOVE THIS ❌ */
/* .dropdown:hover .dropdown-menu { ... } */

/* ADD THIS ✅ */
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DEFAULT (same as yours) */
 .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: var(--card);
  border-radius: 14px;
  padding: 10px;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.3s ease;
} 

/* LINKS */
.dropdown-menu li {
  width: 100%;
} 

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  transition: all 0.25s;
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
  background: linear-gradient(135deg, var(--violet), var(--gold));
  color: #fff;
  transform: translateX(6px);
}

/* NAV HOVER ACTIVE */
.dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
 .dropdown > a::after {
  content: "▾";
  font-size: 18px;
  transition: 0.3s;
} 

.dropdown:hover > a::after {
  transform: rotate(180deg);
} 

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: var(--card);
    flex-direction: column;
    display: none;
    gap: 10px;
    padding: 20px;
  }

  .nav-links.open {
    display: flex;
  }
}

.back-pill {
  position: fixed;
  top: 19%;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #6D3FD6;
  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
  z-index: 999;
}

/* ICON */
.back-pill i {
  font-size: 16px;
}

/* HOVER */
.back-pill:hover {
  transform: translateY(-2px) scale(1.05);
  color: #C9860A;
  background: rgba(255, 255, 255, 0.28);
}


/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 160px 64px 100px;
  position: relative; overflow: hidden;
  background: var(--void);
}
#starCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(109,63,214,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(201,134,10,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute; width: 1px; height: 300px;
  background: linear-gradient(180deg, transparent, rgba(201,134,10,0.25), transparent);
  left: 15%; top: 10%;
  animation: lineDrop 4s ease-in-out infinite;
}
.hero-lines::after {
  content: '';
  position: absolute; width: 1px; height: 200px;
  background: linear-gradient(180deg, transparent, rgba(109,63,214,0.3), transparent);
  right: 20%; top: 30%;
  animation: lineDrop 5s ease-in-out infinite 1.5s;
}
@keyframes lineDrop {
  0%,100%{ transform:translateY(0); opacity:0.6; }
  50%{ transform:translateY(40px); opacity:1; }
}
.page-hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,134,10,0.07);
  border: 1px solid rgba(201,134,10,0.22);
  padding: 8px 20px; border-radius: 30px;
  font-family: 'Fira Code', monospace; font-size: 12px; font-weight: 400;
  color: var(--gold); letter-spacing: 0.8px;
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease 2.2s both;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 8px var(--teal); animation: blink 1.4s infinite;
}
.page-hero h1 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.9; letter-spacing: -1px;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 2.4s both;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p.sub {
  color: var(--muted); font-size: 18px; line-height: 1.75; font-weight: 400;
  max-width: 620px; margin: 0 auto 50px;
  animation: fadeUp 1s ease 2.6s both;
}
.page-hero .hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease 2.8s both;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: #fff; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 15px;
  transition: all 0.3s; letter-spacing: 0.3px;
  box-shadow: 0 8px 30px rgba(201,134,10,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  cursor: none;
}
.btn-gold:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 50px rgba(201,134,10,0.45); }
.btn-stroke {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  background: transparent; color: var(--text); border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(13,17,32,0.15);
  transition: all 0.3s; cursor: none;
}
.btn-stroke:hover { border-color: rgba(201,134,10,0.4); color: var(--gold); background: rgba(201,134,10,0.05); }

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
.sec-eyebrow {
  font-family: 'Fira Code', monospace; font-size: 11px;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700; line-height: 0.92;
  letter-spacing: -0.5px; color: var(--text);
}
.sec-title em { font-style:normal; color: var(--gold); }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 70px; gap: 30px; flex-wrap: wrap;
}
.sh-r { max-width: 340px; color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--deep); overflow: hidden; padding: 16px 0; display: flex;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 28s linear infinite; white-space: nowrap;
}
.marquee-track span {
  font-family: 'Fira Code', monospace; font-size: 11px; color: var(--text);
  padding: 0 44px; letter-spacing: 2px; text-transform: uppercase;
}
.marquee-track span::before { content: '◆ '; color: var(--gold); margin-right: 6px; font-size: 8px; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════════
   FEATURE CARDS (used across service pages)
══════════════════════════════════════════ */
    /* ══════════════════════════════════════
       SECTION
    ══════════════════════════════════════ */
    .features-section {
      background: var(--deep);
      padding: 100px 0 110px;
      position: relative;
      overflow: hidden;
    }

    .features-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -200px;
      width: 650px; height: 650px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(109,63,214,0.055) 0%, transparent 65%);
      pointer-events: none;
    }
    .features-section::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -150px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,134,10,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .features-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }

    /* ══════════════════════════════════════
       SECTION HEAD
    ══════════════════════════════════════ */
    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 32px;
      flex-wrap: wrap;
    }

    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 14px;
    }

    .sec-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px; height: 2px;
      background: linear-gradient(90deg, var(--violet), var(--violet2));
      border-radius: 2px;
    }

    .sec-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.06;
      letter-spacing: -0.03em;
    }

    .sec-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sh-r {
      max-width: 380px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
       CATEGORY LABEL
    ══════════════════════════════════════ */
    .feat-category-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      margin-top: 48px;
    }

    .feat-category-label:first-of-type {
      margin-top: 0;
    }

    .feat-cat-text {
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted2);
      white-space: nowrap;
    }

    .feat-cat-line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ══════════════════════════════════════
       GRID
    ══════════════════════════════════════ */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feat-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 820px;
    }

    /* ══════════════════════════════════════
       BASE CARD
    ══════════════════════════════════════ */
    .feat-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 32px 28px 28px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: visible;
      box-shadow: var(--shadow);
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                  box-shadow 0.35s ease,
                  border-color 0.25s ease;
    }

    .feat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,63,214,0.15);
    }

    /* Top accent bar on hover */
    .feat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--violet), var(--violet2));
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 22px 22px 0 0;
    }
    .feat-card:hover::before { opacity: 1; }

    /* Gold card special */
    .feat-card--gold {
      border-color: var(--border2);
      box-shadow: var(--glow-g), var(--shadow);
    }
    .feat-card--gold::before {
      background: linear-gradient(90deg, var(--gold), var(--gold3));
    }
    .feat-card--gold:hover {
      border-color: rgba(201,134,10,0.35);
      box-shadow: var(--glow-g), var(--shadow2);
    }

    /* Teal card */
    .feat-card--teal {
      border-color: rgba(10,168,140,0.2);
      box-shadow: 0 0 60px rgba(10,168,140,0.08), var(--shadow);
    }
    .feat-card--teal::before {
      background: linear-gradient(90deg, var(--teal), #2dd4bf);
    }
    .feat-card--teal:hover {
      border-color: rgba(10,168,140,0.3);
    }

    /* ── Badge ── */
    .feat-badge {
      position: absolute;
      top: -13px;
      right: 22px;
      padding: 5px 16px;
      border-radius: 50px;
      font-family: 'Syne', sans-serif;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      z-index: 2;
    }

    .feat-badge--gold {
      background: linear-gradient(135deg, var(--gold2), var(--gold3));
      color: #000;
    }

    .feat-badge--violet {
      background: linear-gradient(135deg, var(--violet), var(--violet2));
      color: #fff;
    }

    .feat-badge--teal {
      background: linear-gradient(135deg, var(--teal), #2dd4bf);
      color: #fff;
    }

    .feat-badge--new {
      background: linear-gradient(135deg, #e11d48, #f43f5e);
      color: #fff;
    }

    /* ── Icon ── */
    .feat-icon {
      width: 54px; height: 54px;
      border-radius: 14px;
      background: var(--deep);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .feat-card:hover .feat-icon { transform: scale(1.08) rotate(-4deg); }

    .feat-icon--gold {
      background: linear-gradient(135deg, rgba(201,134,10,0.12), rgba(201,134,10,0.04));
      border-color: var(--border2);
    }
    .feat-icon--violet {
      background: linear-gradient(135deg, rgba(109,63,214,0.1), rgba(109,63,214,0.03));
      border-color: rgba(109,63,214,0.15);
    }
    .feat-icon--teal {
      background: linear-gradient(135deg, rgba(10,168,140,0.1), rgba(10,168,140,0.03));
      border-color: rgba(10,168,140,0.15);
    }

    /* ── Title ── */
    .feat-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 19px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
      line-height: 1.25;
    }

    /* ── Description ── */
    .feat-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    /* ── Course tags ── */
    .feat-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 20px;
    }

    .feat-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--deep);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 4px 11px;
      font-size: 11.5px;
      font-weight: 500;
      color: var(--muted);
      white-space: nowrap;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .feat-card:hover .feat-tag {
      background: rgba(109,63,214,0.05);
      color: var(--violet);
      border-color: rgba(109,63,214,0.14);
    }

    .feat-card--gold:hover .feat-tag {
      background: rgba(201,134,10,0.06);
      color: var(--gold);
      border-color: rgba(201,134,10,0.18);
    }

    .feat-card--teal:hover .feat-tag {
      background: rgba(10,168,140,0.06);
      color: var(--teal);
      border-color: rgba(10,168,140,0.18);
    }

    .feat-tag-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.5;
      flex-shrink: 0;
    }

    /* ── Check list ── */
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 24px;
      flex: 1;
    }

    .check-list li {
      font-size: 13.5px;
      color: var(--muted);
      padding-left: 22px;
      position: relative;
      line-height: 1.45;
    }

    .check-list li::before {
      content: '';
      position: absolute;
      left: 0; top: 5px;
      width: 13px; height: 13px;
      border-radius: 50%;
      background: rgba(109,63,214,0.1);
      border: 1.5px solid rgba(109,63,214,0.25);
    }

    .check-list li::after {
      content: '';
      position: absolute;
      left: 4px; top: 8px;
      width: 5px; height: 3px;
      border-left: 1.5px solid var(--violet);
      border-bottom: 1.5px solid var(--violet);
      transform: rotate(-45deg);
    }

    .feat-card--gold .check-list li::before {
      background: rgba(201,134,10,0.08);
      border-color: rgba(201,134,10,0.25);
    }
    .feat-card--gold .check-list li::after {
      border-color: var(--gold);
    }

    .feat-card--teal .check-list li::before {
      background: rgba(10,168,140,0.08);
      border-color: rgba(10,168,140,0.25);
    }
    .feat-card--teal .check-list li::after {
      border-color: var(--teal);
    }

    /* ── Divider ── */
    .feat-divider {
      height: 1px;
      background: var(--border);
      margin: 20px 0;
    }

    /* ── Mode badge row ── */
    .feat-mode-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .feat-mode-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border-radius: 50px;
      padding: 4px 11px;
      font-size: 11px;
      font-weight: 600;
      font-family: 'Syne', sans-serif;
    }

    .feat-mode-pill--online {
      background: rgba(10,168,140,0.1);
      color: var(--teal);
      border: 1px solid rgba(10,168,140,0.2);
    }

    .feat-mode-pill--offline {
      background: rgba(109,63,214,0.08);
      color: var(--violet);
      border: 1px solid rgba(109,63,214,0.15);
    }

    .feat-mode-pill--live {
      background: rgba(225,29,72,0.08);
      color: #e11d48;
      border: 1px solid rgba(225,29,72,0.18);
    }

    .feat-mode-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
    }

    /* ── Buttons ── */
    .btn-stroke {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      border-radius: 50px;
      border: 1.5px solid rgba(13,17,32,0.15);
      background: transparent;
      color: var(--text);
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
      letter-spacing: 0.01em;
    }

    .btn-stroke:hover {
      background: var(--text);
      border-color: var(--text);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      border-radius: 50px;
      border: none;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(201,134,10,0.28);
      transition: box-shadow 0.22s, transform 0.22s, filter 0.22s;
      letter-spacing: 0.01em;
    }

    .btn-gold:hover {
      box-shadow: 0 8px 28px rgba(201,134,10,0.4);
      transform: translateY(-2px);
      filter: brightness(1.08);
    }

    .btn-violet {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      border-radius: 50px;
      border: none;
      background: linear-gradient(135deg, var(--violet), var(--violet2));
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(109,63,214,0.28);
      transition: box-shadow 0.22s, transform 0.22s, filter 0.22s;
      letter-spacing: 0.01em;
    }

    .btn-violet:hover {
      box-shadow: 0 8px 28px rgba(109,63,214,0.38);
      transform: translateY(-2px);
      filter: brightness(1.08);
    }

    .btn-teal {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      border-radius: 50px;
      border: none;
      background: linear-gradient(135deg, var(--teal), #2dd4bf);
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(10,168,140,0.28);
      transition: box-shadow 0.22s, transform 0.22s, filter 0.22s;
      letter-spacing: 0.01em;
    }

    .btn-teal:hover {
      box-shadow: 0 8px 28px rgba(10,168,140,0.38);
      transform: translateY(-2px);
      filter: brightness(1.08);
    }

    /* ── Booking modal ── */
    .booking-overlay {
      position: fixed;
      inset: 0;
      background: rgba(13,17,32,0.45);
      backdrop-filter: blur(6px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .booking-overlay.active {
      display: flex;
    }

    .booking-modal {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px 36px;
      max-width: 480px;
      width: 100%;
      box-shadow: var(--shadow2);
      position: relative;
      animation: modal-in 0.3s cubic-bezier(0.22,1,0.36,1);
    }

    @keyframes modal-in {
      from { opacity: 0; transform: scale(0.95) translateY(12px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .booking-modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--deep);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--muted);
      transition: background 0.2s;
    }
    .booking-modal-close:hover { background: var(--surface); }

    .booking-modal-course {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(109,63,214,0.08);
      border: 1px solid rgba(109,63,214,0.15);
      border-radius: 50px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 700;
      color: var(--violet);
      font-family: 'Syne', sans-serif;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .booking-modal h3 {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .booking-modal-sub {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 28px;
      line-height: 1.55;
    }

    .booking-form-group {
      margin-bottom: 16px;
    }

    .booking-form-group label {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    .booking-form-group input,
    .booking-form-group select {
      width: 100%;
      padding: 11px 16px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--deep);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      appearance: none;
    }

    .booking-form-group input:focus,
    .booking-form-group select:focus {
      border-color: rgba(109,63,214,0.4);
      background: var(--card);
    }

    .booking-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .booking-submit {
      width: 100%;
      margin-top: 8px;
      padding: 13px;
      border-radius: 50px;
      border: none;
      background: linear-gradient(135deg, var(--violet), var(--violet2));
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(109,63,214,0.3);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      letter-spacing: 0.02em;
    }

    .booking-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(109,63,214,0.4);
      filter: brightness(1.08);
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 960px) {
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .feat-grid-2 { grid-template-columns: 1fr 1fr; max-width: 100%; }
    }

    @media (max-width: 620px) {
      .feat-grid,
      .feat-grid-2 { grid-template-columns: 1fr; }
      .section-head { flex-direction: column; align-items: flex-start; }
      .features-inner { padding: 0 18px; }
      .booking-form-row { grid-template-columns: 1fr; }
    }

/* ══════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════ */
.stats-section {
  padding: 80px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner { max-width: 1200px; margin: auto; }
.stats-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 40px; margin-top: 60px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Clash Display', sans-serif; font-size: 60px; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-family: 'Fira Code', monospace; font-size: 11px; color: var(--text);
  letter-spacing: 1px; margin-top: 8px; text-transform: uppercase;
}

/* ══════════════════════════════════════════
   PROCESS SECTION (shared)
══════════════════════════════════════════ */
.process-section { padding: 120px 64px; background: var(--deep); }
.process-inner { max-width: 1200px; margin: auto; }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: 22px; overflow: hidden; margin-top: 70px; }
.proc { background: var(--deep); padding: 50px 36px; position: relative; transition: background 0.35s; }
.proc:hover { background: var(--card); }
.proc-n { font-family: 'Clash Display', sans-serif; font-size: 64px; font-weight: 700; color: rgba(201,134,10,0.1); line-height: 1; margin-bottom: 24px; transition: color 0.35s; }
.proc:hover .proc-n { color: rgba(201,134,10,0.22); }
.proc-icon { font-size: 30px; margin-bottom: 18px; }
.proc h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.proc p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.proc-divider { position: absolute; top: 50px; right: 0; width: 1px; height: 70px; background: linear-gradient(180deg, var(--gold2), transparent); opacity: 0.25; }

/* ══════════════════════════════════════════
   TWO COLUMN SECTION
══════════════════════════════════════════ */
.two-col { padding: 100px 64px; background: var(--void); }
.two-col-inner { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-inner.reverse { direction: rtl; }
.two-col-inner.reverse > * { direction: ltr; }
.col-visual {
  border-radius: 28px; overflow: hidden;
  background: var(--deep); border: 1px solid var(--border);
  height: 440px; display: flex; align-items: center; justify-content: center;
  font-size: 120px; position: relative;
  box-shadow: var(--shadow2);
}
.col-visual-inner {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,134,10,0.08), transparent 70%);
}
.col-text .sec-eyebrow { margin-bottom: 16px; }
.col-text h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(38px, 4vw, 58px); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.5px; margin-bottom: 20px;
}
.col-text h2 em { font-style: normal; color: var(--gold); }
.col-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 15px; color: var(--text); line-height: 1.6;
}
.check-list li::before { content: '✦'; color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   TECH PILLS
══════════════════════════════════════════ */
.tech-pills-section { padding: 80px 64px; background: var(--deep); }
.tech-pills-inner { max-width: 1200px; margin: auto; text-align: center; }
.pills-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 50px; }
.pill {
  font-family: 'Fira Code', monospace; font-size: 13px;
  padding: 10px 22px; border-radius: 30px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); letter-spacing: 0.5px;
  transition: all 0.3s; cursor: none; box-shadow: var(--shadow);
}
.pill:hover { border-color: rgba(201,134,10,0.4); color: var(--gold); background: rgba(201,134,10,0.04); transform: translateY(-3px); }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  padding: 130px 64px; position: relative;
  overflow: hidden; text-align: center; background: var(--deep);
}
.cta-mesh {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,134,10,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,134,10,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,134,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: auto; }
.cta-inner h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(52px, 8vw, 100px); font-weight: 700;
  line-height: 0.92; letter-spacing: -1px; margin-bottom: 24px;
}
.cta-inner h2 em { font-style:normal; color: var(--gold); }
.cta-inner p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 46px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #F0F2FA; border-top: 1px solid var(--border);
  padding: 90px 64px 36px;
}
.ft { max-width: 1200px; margin: 0 auto 70px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; }
.fb p { color: var(--muted); font-size: 14px; line-height: 1.8; max-width: 280px; margin: 18px 0 28px; }
.f-soc { display: flex; gap: 10px; }
.f-soc a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 15px; text-decoration: none; transition: all 0.25s;
  box-shadow: var(--shadow);
}
.f-soc a:hover { background: var(--gold2); border-color: var(--gold2); color: #fff; }
.fc h5 { font-family: 'Fira Code', monospace; font-size: 10px; font-weight: 500; color: var(--muted2); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px; }
.fc ul { list-style: none; }
.fc ul li { margin-bottom: 12px; }
.fc ul a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.25s; }
.fc ul a:hover { color: var(--gold); }
.fb-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.fb-bottom p { font-family: 'Fira Code', monospace; font-size: 12px; color: var(--muted2); }
.fb-bottom strong { color: var(--gold); }

/* FLOAT BUTTONS */
#topBtn {
  position: fixed; bottom: 90px; right: 24px;
  width: 44px; height: 44px; background: var(--gold2); color: #fff;
  border: none; border-radius: 12px; font-size: 16px;
  cursor: none; display: none; z-index: 700;
  box-shadow: 0 8px 24px rgba(201,134,10,0.35); transition: all 0.25s;
}
#topBtn:hover { transform: translateY(-3px); }
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 50px; height: 50px; background: #25D366; color: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none; z-index: 700;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45); transition: all 0.25s;
}
.wa-float:hover { transform: translateY(-3px); }

/* REVEAL */
.reveal { opacity:0; transform:translateY(48px); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.active { opacity:1; transform:translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

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

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1100px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .ft { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .two-col-inner { grid-template-columns: 1fr; gap: 50px; }
}
@media(max-width:900px) {
  /* .nav { padding: 14px 24px; }
  .nav.solid { padding: 12px 24px; } */
  .page-hero, .features-section, .stats-section, .process-section, .two-col, .tech-pills-section, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
  .feat-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
@media(max-width:768px) {
  /* .nav-links { display:none; flex-direction:column; position:absolute; top:62px; left:0; right:0; background:rgba(250,251,255,0.98); padding:20px 24px; gap:15px; border-bottom:1px solid var(--border); backdrop-filter:blur(20px); } */
  /* .nav-links.open { display:flex; } */
  .hamburger { display:flex; }
  .ft { grid-template-columns: 1fr; }
  .fb-bottom { flex-direction:column; text-align:center; }
  .proc-grid { grid-template-columns: 1fr; }
  body { cursor:auto; }
  #cur,#cur-ring { display:none; }
  /* .dropdown-menu { position: static; box-shadow: none; border: none; background: transparent; opacity: 1; visibility: visible; transform: none; padding: 0; } */
  /* .dropdown-menu a { padding-left: 20px; } */
}
@media(max-width:480px) {
  .page-hero h1 { font-size: 48px; }
  .stats-row { flex-direction: column; }
}
/* about */
   
    /* ══════════════════════════════════════
       SECTION
    ══════════════════════════════════════ */
    .team {
      background: var(--void);
      padding: 100px 0 110px;
      position: relative;
      overflow: hidden;
    }

    /* Ambient glow blobs */
    .team::before {
      content: '';
      position: absolute;
      top: -80px; left: -180px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(109,63,214,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .team::after {
      content: '';
      position: absolute;
      bottom: -60px; right: -160px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,134,10,0.065) 0%, transparent 65%);
      pointer-events: none;
    }

    .team-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }

    /* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
    .team-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .team-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 18px;
    }

    .team-eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--violet);
      animation: pulse 2.2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.35; transform: scale(0.65); }
    }

    .team-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1.06;
      margin-bottom: 16px;
    }

    .team-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .team-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
       GRID
    ══════════════════════════════════════ */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    /* ── Card ── */
    .team-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 36px 24px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                  box-shadow 0.35s ease,
                  border-color 0.25s ease;
      cursor: default;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,63,214,0.14);
    }

    /* Top accent bar */
    .team-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--violet), var(--violet2));
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 24px 24px 0 0;
    }

    .team-card:hover::before {
      opacity: 1;
    }

    /* Background pattern */
    .team-card::after {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(109,63,214,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Avatar ── */
    .team-av-wrap {
      position: relative;
      margin-bottom: 20px;
      flex-shrink: 0;
    }

    /* Outer ring */
    .team-av-ring {
      width: 100px; height: 100px;
      border-radius: 50%;
      padding: 3px;
      background: linear-gradient(135deg, var(--violet) 0%, var(--violet2) 50%, var(--gold3) 100%);
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .team-card:hover .team-av-ring {
      transform: scale(1.05);
    }

    /* Inner white gap */
    .team-av-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: var(--card);
      padding: 3px;
      overflow: hidden;
    }

    .team-av-img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Role badge — floats bottom-right of avatar */
    .team-av-badge {
      position: absolute;
      bottom: 2px; right: -4px;
      z-index: 2;
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 50px;
      padding: 3px 9px;
      font-family: 'Syne', sans-serif;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--violet);
      white-space: nowrap;
      box-shadow: var(--shadow);
    }

    /* ── Name & Role ── */
    .team-name {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 5px;
    }

    .team-role {
      font-size: 13px;
      color: var(--muted);
      font-weight: 400;
      margin-bottom: 10px;
    }

    /* Skills tags */
    .team-skills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      margin-bottom: 22px;
    }

    .team-skill-tag {
      background: var(--deep);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 3px 10px;
      font-size: 10.5px;
      font-weight: 500;
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
      transition: background 0.2s, color 0.2s;
    }

    .team-card:hover .team-skill-tag {
      background: rgba(109,63,214,0.06);
      color: var(--violet);
      border-color: rgba(109,63,214,0.15);
    }

    /* Divider */
    .team-divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin-bottom: 18px;
    }

    /* ── Social links ── */
    .team-socials {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .team-social-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--card2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--muted);
      transition: background 0.22s ease,
                  border-color 0.22s ease,
                  color 0.22s ease,
                  transform 0.22s ease;
    }

    .team-social-btn:hover {
      background: var(--violet);
      border-color: var(--violet);
      color: #fff;
      transform: translateY(-2px);
    }

    .team-social-btn svg {
      width: 15px; height: 15px;
      fill: currentColor;
    }

    /* LinkedIn hover */
    .team-social-btn.li:hover { background: #0077B5; border-color: #0077B5; }
    /* Twitter/X hover */
    .team-social-btn.tw:hover { background: #000; border-color: #000; }
    /* GitHub hover */
    .team-social-btn.gh:hover { background: #24292e; border-color: #24292e; }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 900px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
      .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
      .team-inner { padding: 0 18px; }
    }
