/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:    #0DB09E;
  --teal-dk: #0a8f80;
  --teal-lt: #e6f7f5;
  --blue:    #0f62fe;
  --blue-lt: #4589ff;
  --purple:  #8a3ffc;
  --orange:  #ff832b;
  --green:   #24a148;
  --red:     #da1e28;
  --gold:    #d4a017;
  --pink:    #e91e8c;
  --pink-lt: #fce4f3;
  --bg:      #f7f4ef;
  --bg2:     #ffffff;
  --bg3:     #f0ede8;
  --surface: #ffffff;
  --border:  #e0dbd4;
  --text:    #1a1a2e;
  --muted:   #5c6070;
  --dark-bg: #0e1525;
  --dark-surface: #162035;
  --dark-border:  #243050;
  --dark-text:    #e8edf8;
  --dark-muted:   #7a8aaa;
  --radius:  16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

/* ===== SCROLL ANIMATIONS ===== */
.hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Women word reveal */
.wt-manifesto-verbs span,
.wt-why-words span {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.wt-word-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* SP card 3D transform base */
.sp-card-inner {
  transition: transform .2s ease, border-color .3s, background .3s;
}

/* Nav active link — handled by .nav-link.active in nav block */

/* Typed cursor */
#typed-text::after {
  content: '|';
  animation: blink .7s step-end infinite;
  color: var(--teal);
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

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

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

a { text-decoration: none; color: inherit; }

/* ── Skip link — accessibility ───────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }

/* ── Focus visible — keyboard nav ────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { border-radius: 6px; }

/* ===== NAV — PREMIUM ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(247,244,239,.82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.nav.scrolled {
  background: rgba(247,244,239,.96);
  border-bottom-color: rgba(0,0,0,.06);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 4px 24px rgba(0,0,0,.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo ─────────────────────────────────────────── */
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, #0a7c6e 100%);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(13,176,158,0);
  transition: box-shadow .3s, transform .2s;
}
.nav-logo:hover {
  box-shadow: 0 0 0 5px rgba(13,176,158,.15), 0 0 20px rgba(13,176,158,.2);
  transform: scale(1.06);
}

/* ── Links ────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: #4a4a5a;
  letter-spacing: .01em;
  padding: 6px 13px;
  border-radius: 8px;
  transition: color .22s, background .22s;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; right: 50%;
  height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: left .25s cubic-bezier(.4,0,.2,1), right .25s cubic-bezier(.4,0,.2,1);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(0,0,0,.04);
}
.nav-link:hover::after { left: 13px; right: 13px; }

.nav-link.active {
  color: var(--teal);
  font-weight: 600;
}
.nav-link.active::after { left: 13px; right: 13px; }

/* ── Right side ───────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-li-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 550;
  color: #3a3a4a;
  letter-spacing: .01em;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.7);
  transition: border-color .22s, color .22s, background .22s, box-shadow .22s, transform .18s;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.nav-li-btn svg { opacity: .75; transition: opacity .2s; }
.nav-li-btn:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(13,176,158,.06);
  box-shadow: 0 0 0 3px rgba(13,176,158,.1);
  transform: translateY(-1px);
}
.nav-li-btn:hover svg { opacity: 1; }

/* ── Burger ───────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  width: 38px; height: 38px;
  transition: border-color .2s, background .2s;
}
.nav-burger:hover { border-color: rgba(0,0,0,.2); background: rgba(0,0,0,.04); }
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile overlay ───────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,.35);
  backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s;
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}

/* ===== BANNER ===== */
.banner {
  margin-top: 64px;
  background: #f2ede5;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-wave {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
}

.banner-wave svg {
  width: 100%;
  height: 100%;
}

.banner-wave-left { left: 0; }
.banner-wave-right { right: 0; }

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 20px;
}

/* MS BADGE */
.banner-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ms-badge {
  width: 90px;
  background: linear-gradient(160deg, #1a4a8a 0%, #0f3070 60%, #1a4a8a 100%);
  clip-path: polygon(50% 0%, 100% 15%, 100% 75%, 50% 100%, 0% 75%, 0% 15%);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-height: 110px;
  justify-content: space-between;
}

.ms-badge-center {
  transform: scale(1.08);
  background: linear-gradient(160deg, #1e5aaa 0%, #0f3888 60%, #1e5aaa 100%);
}

.ms-badge-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.ms-word {
  font-size: 7px;
  color: rgba(255,255,255,.9);
  font-weight: 400;
  letter-spacing: .02em;
}

.ms-certified {
  font-size: 6px;
  color: #7ec8e3;
  font-weight: 700;
  letter-spacing: .08em;
}

.ms-badge-title {
  font-size: 7px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: .04em;
}

.ms-badge-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.12);
  width: 100%;
  padding: 3px 0;
}

.ms-assoc {
  font-size: 6px;
  color: #7ec8e3;
  font-weight: 700;
  letter-spacing: .06em;
}

.ms-stars {
  font-size: 8px;
  color: #7ec8e3;
  letter-spacing: 2px;
}

.banner-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 10px;
}

.banner-title {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: .18em;
  color: #4a5060;
  margin-bottom: 8px;
}

.banner-codes {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--teal);
}

.fabric-logo {
  position: absolute;
  right: 80px;
  bottom: 20px;
  width: 48px;
  opacity: .7;
}
@media (max-width: 640px) { .fabric-logo { display: none; } }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
@media (max-width: 640px) { .section { padding: 56px 0; } }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.teal { color: var(--teal); }

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .2s;
  margin-top: 8px;
}
.btn-teal:hover { background: var(--teal-dk); transform: translateY(-2px); }

/* ===== ABOUT ===== */
.about { background: var(--bg2); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-text {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-text strong { color: var(--text); }

.about-stats {
  display: flex;
  gap: 36px;
  margin: 32px 0 28px;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color .2s, transform .2s;
}
.about-card:hover { border-color: var(--teal); transform: translateY(-2px); }

.ac-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-lt);
  color: var(--teal);
  margin-bottom: 12px;
}
.about-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); margin-bottom: 8px; }
.about-card p { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.about-card p strong { color: var(--text); }

/* ===== SKILLS ===== */
.skills { background: var(--dark-bg); }
.skills .section-label { color: var(--teal); }
.skills .section-title { color: var(--dark-text); }

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) { .skills-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 960px) { .skills-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } }

.skill-group {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 24px;
}

.skill-group h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.skill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot-teal   { background: var(--teal);    box-shadow: 0 0 8px var(--teal); }
.dot-blue   { background: var(--blue-lt); box-shadow: 0 0 8px var(--blue); }
.dot-purple { background: var(--purple);  box-shadow: 0 0 8px var(--purple); }
.dot-orange { background: var(--orange);  box-shadow: 0 0 8px var(--orange); }
.dot-green  { background: var(--green);   box-shadow: 0 0 8px var(--green); }
.dot-red    { background: var(--red);     box-shadow: 0 0 8px var(--red); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--dark-border);
  color: var(--dark-muted);
  transition: background .2s, border-color .2s;
}
.tag:hover { background: rgba(13,176,158,.15); border-color: var(--teal); color: var(--teal); }

/* ===== CERTIFICATIONS ===== */
.certs { background: var(--bg); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: default;
}
.cert-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,176,158,.12); }

.cert-shield {
  width: 80px;
  height: 96px;
  background: linear-gradient(160deg, #1a4a8a 0%, #0c2f72 60%, #1a4a8a 100%);
  clip-path: polygon(50% 0%, 100% 15%, 100% 72%, 50% 100%, 0% 72%, 0% 15%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px 12px;
}

.cert-shield-dark {
  background: linear-gradient(160deg, #2a2a4a 0%, #141430 60%, #2a2a4a 100%);
}

.cert-shield-gold {
  background: linear-gradient(160deg, #8b6914 0%, #5a4210 60%, #8b6914 100%);
}

.shield-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.shield-top span:first-child { font-size: 6px; color: rgba(255,255,255,.85); }
.shield-top span:last-child  { font-size: 5.5px; font-weight: 700; color: #7ec8e3; letter-spacing: .06em; }

.shield-mid {
  font-size: 6.5px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .04em;
}

.shield-bot {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.1);
  width: 100%;
  padding: 3px 0;
  gap: 1px;
}
.shield-bot span { font-size: 5.5px; font-weight: 700; color: #7ec8e3; letter-spacing: .06em; }
.shield-bot div  { font-size: 7px; color: #7ec8e3; letter-spacing: 1px; }

.cert-shield-gold .shield-top span:last-child,
.cert-shield-gold .shield-bot span,
.cert-shield-gold .shield-bot div { color: #f1c21b; }

.cert-code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.cert-card-mct .cert-code { color: var(--gold); }

/* ===== EXPERIENCE ===== */
.experience { background: var(--dark-bg); }
.experience .section-label { color: var(--teal); }
.experience .section-title { color: var(--dark-text); }

.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--blue), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 40px;
}

.tl-dot {
  position: absolute;
  left: 8px; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--dark-bg);
  box-shadow: 0 0 12px rgba(13,176,158,.5);
}

.timeline-item.current .tl-dot {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 12px rgba(13,176,158,.5); }
  50%      { box-shadow: 0 0 24px rgba(13,176,158,.9); }
}

.tl-content {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s;
}
.tl-content:hover { border-color: var(--teal); }
.timeline-item.current .tl-content { border-color: rgba(13,176,158,.4); }

.tl-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.tl-header h3 { font-size: 18px; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
.tl-company { font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; }
.tl-date { font-size: 13px; color: var(--dark-muted); white-space: nowrap; }
.tl-client { font-size: 14px; color: var(--dark-muted); margin-bottom: 14px; }
.tl-client strong { color: var(--dark-text); }

.tl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.tl-list li {
  font-size: 14px;
  color: var(--dark-muted);
  padding-left: 18px;
  position: relative;
}
.tl-list li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.tl-list li strong { color: var(--dark-text); }

.tl-tools { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(13,176,158,.1);
  border: 1px solid rgba(13,176,158,.3);
  color: var(--teal);
}

.tl-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sector-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(138,63,252,.1);
  border: 1px solid rgba(138,63,252,.25);
  color: var(--purple);
}

/* ===== STRATEGIC PROJECTS ===== */
.sp {
  background: #080e1c;
  position: relative;
  overflow: hidden;
}
.sp .section-label { color: var(--teal); }
.sp .section-title { color: #fff; }

/* background vertical lines */
.sp-bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
  z-index: 0;
}
.sp-line {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(13,176,158,.08) 30%, rgba(13,176,158,.08) 70%, transparent);
}

.sp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.sp-intro {
  font-size: 16px;
  color: rgba(232,237,248,.55);
  line-height: 1.8;
  border-left: 2px solid var(--teal);
  padding-left: 20px;
  align-self: center;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* CARD */
.sp-card {
  position: relative;
  border-radius: 20px;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
}
.sp-card:hover { transform: translateY(-6px); }

.sp-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(13,176,158,.25), rgba(15,98,254,.15), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.sp-card:hover .sp-card-glow { opacity: 1; }

.sp-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color .3s, background .3s;
  box-shadow: 0 4px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
}
.sp-card:hover .sp-card-inner {
  border-color: rgba(13,176,158,.35);
  background: rgba(255,255,255,.045);
}

/* ICON */
.sp-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.sp-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(13,176,158,.08);
  border: 1px solid rgba(13,176,158,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.sp-icon-wrap svg { width: 22px; height: 22px; }

.sp-card:hover .sp-icon-wrap {
  background: rgba(13,176,158,.15);
  border-color: rgba(13,176,158,.5);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 20px rgba(13,176,158,.3);
}

.sp-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #e8edf8;
  margin-bottom: 4px;
  line-height: 1.3;
}

.sp-card-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}

.sp-card-desc {
  font-size: 13.5px;
  color: rgba(232,237,248,.5);
  line-height: 1.7;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding-bottom: 18px;
}

.sp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.sp-bullets li {
  font-size: 13px;
  color: rgba(232,237,248,.65);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.sp-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .7;
}

.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.sp-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(13,176,158,.07);
  border: 1px solid rgba(13,176,158,.18);
  color: rgba(13,176,158,.9);
  letter-spacing: .03em;
  transition: background .2s, border-color .2s;
}
.sp-card:hover .sp-tags span {
  background: rgba(13,176,158,.12);
  border-color: rgba(13,176,158,.3);
}

/* ===== WOMEN IN TECH — EDITORIAL PREMIUM ===== */
.pink { color: var(--pink); }

.wt-section {
  background: #05060a;
  position: relative;
  overflow: hidden;
}

.wt-container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Ambient orbs */
.wt-ambient { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.wt-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
}
.wt-orb-1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, #8a3ffc, transparent 70%);
}
.wt-orb-2 {
  width: 400px; height: 400px;
  bottom: 0; right: -80px;
  background: radial-gradient(circle, #0DB09E, transparent 70%);
  opacity: .1;
}
.wt-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #e91e8c, transparent 70%);
  opacity: .05;
}
.wt-line {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04) 50%, transparent);
}
.wt-line-h1 { top: 38%; }
.wt-line-h2 { top: 68%; }

/* ── EYEBROW ── */
.wt-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.wt-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(233,30,140,.8);
  white-space: nowrap;
}
.wt-eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(233,30,140,.3), transparent);
}

/* ── MANIFESTO ── */
.wt-manifesto-wrap {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.wt-manifesto { max-width: 820px; }

.wt-manifesto-line {
  display: block;
  line-height: 1.1;
  color: rgba(255,255,255,.4);
}
.wt-ml-regular {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 2px;
}
.wt-ml-bold {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -.02em;
}

.wt-manifesto-verbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  margin-bottom: 40px;
}
.wt-manifesto-verbs span {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--pink);
  position: relative;
}
.wt-manifesto-verbs span::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--pink), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.wt-manifesto-verbs span:hover::after { transform: scaleX(1); }

.wt-manifesto-body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,.45);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 16px;
}

/* ── SIGNATURE ── */
.wt-signature-wrap {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.wt-signature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.wt-signature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.wt-signature-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wt-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.wt-pill:hover {
  background: rgba(233,30,140,.12);
  border-color: rgba(233,30,140,.35);
  color: #fff;
  transform: translateY(-2px);
}

/* ── QUOTE ── */
.wt-quote-wrap {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.wt-quote-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  white-space: nowrap;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  letter-spacing: -.03em;
  user-select: none;
}

.wt-quote {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wt-quote-line {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.wt-ql-indent { padding-left: clamp(32px, 5vw, 80px); }
.wt-ql-teal {
  color: var(--teal);
  text-shadow: 0 0 40px rgba(13,176,158,.3);
}

.wt-quote-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  margin: 28px 0;
}

/* ── WHY ── */
.wt-why-wrap {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}

.wt-why-layout {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 40px;
  max-width: 760px;
}

.wt-why-bar {
  background: linear-gradient(to bottom, var(--pink), var(--purple));
  border-radius: 4px;
  align-self: stretch;
}

.wt-why-intro {
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}

.wt-why-words {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  margin-bottom: 40px;
}
.wt-why-words span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.wt-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 4px;
  transition: border-color .2s, gap .2s;
}
.wt-cta:hover { border-color: var(--teal); gap: 16px; }
.wt-cta svg { color: var(--teal); }

/* ===== ARTICLES HUB ===== */
.articles { background: var(--bg); }

/* Top header row */
.ahub-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}
.ahub-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-top: 8px; max-width: 520px; }

/* Search */
.ahub-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ahub-search-icon {
  position: absolute;
  left: 13px;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}
.ahub-search {
  width: 240px;
  padding: 10px 16px 10px 38px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, width .25s;
}
.ahub-search::placeholder { color: var(--muted); }
.ahub-search:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,176,158,.12);
  width: 280px;
}

/* Category tabs */
.ahub-cats-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 12px;
}
.ahub-cats-scroll::-webkit-scrollbar { display: none; }

.ahub-cats {
  display: inline-flex;
  gap: 6px;
  padding-bottom: 2px;
}

.ahub-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg2);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .18s, color .18s, background .18s, box-shadow .18s;
}
.ahub-cat:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(13,176,158,.05);
}
.ahub-cat.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,176,158,.28);
}
.ahub-cat-count {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 1px 6px;
  line-height: 1.4;
}
.ahub-cat.active .ahub-cat-count { background: rgba(255,255,255,.25); }

/* Subcategory chips */
.ahub-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.ahub-subcat {
  padding: 4px 13px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.ahub-subcat:hover { border-color: var(--teal); color: var(--teal); }
.ahub-subcat.active {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(13,176,158,.07);
}

/* Count line */
.ahub-count {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500;
}
#ahubNum { font-weight: 700; color: var(--text); }

/* ── Featured article ── */
.ahub-featured {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  background: linear-gradient(135deg, #0e1525 0%, #0f1d35 60%, #0a2230 100%);
  border: 1px solid rgba(13,176,158,.2);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color .25s, box-shadow .25s;
}
.ahub-featured:hover {
  border-color: rgba(13,176,158,.45);
  box-shadow: 0 20px 60px rgba(13,176,158,.12);
}

.ahub-feat-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,176,158,.08) 0%, transparent 70%);
  pointer-events: none;
}

.ahub-feat-content {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.ahub-feat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ahub-feat-pin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f0c040;
}
.ahub-feat-pin svg { color: #f0c040; }

.ahub-feat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #e8edf8;
  line-height: 1.25;
}
.ahub-feat-br { display: block; }

.ahub-feat-desc {
  font-size: 14px;
  color: #7a8aaa;
  line-height: 1.7;
  flex: 1;
}
.ahub-feat-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ahub-feat-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: background .18s, transform .18s, box-shadow .18s;
  white-space: nowrap;
}
.ahub-feat-link:hover {
  background: #0a9a8d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,176,158,.35);
}
.ahub-feat-link svg { transition: transform .18s; }
.ahub-feat-link:hover svg { transform: translateX(3px); }

/* Medallion visual */
.ahub-feat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
}
.ahub-medallion {
  position: relative;
  width: 180px;
  height: 180px;
}
.ahub-layer {
  position: absolute;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .3s;
}
.ahub-featured:hover .ahub-layer { transform: translateY(-4px); }
.ahub-featured:hover .ahub-silver { transform: translateY(-2px); transition-delay: .04s; }
.ahub-featured:hover .ahub-bronze { transform: translateY(0px); transition-delay: .08s; }

.ahub-gold {
  width: 110px; height: 110px;
  left: 35px; top: 0;
  background: linear-gradient(135deg, #f0c040, #d4a017);
  color: #7a5000;
  box-shadow: 0 8px 24px rgba(240,192,64,.35);
  z-index: 3;
}
.ahub-silver {
  width: 90px; height: 90px;
  left: 0; bottom: 10px;
  background: linear-gradient(135deg, #c0cfe0, #8fa0b8);
  color: #4a5a70;
  box-shadow: 0 6px 18px rgba(144,164,192,.3);
  z-index: 2;
}
.ahub-bronze {
  width: 80px; height: 80px;
  right: 0; bottom: 14px;
  background: linear-gradient(135deg, #c87941, #9a5a2a);
  color: #5a2a10;
  box-shadow: 0 6px 18px rgba(200,120,64,.3);
  z-index: 1;
}
.ahub-layer-label { font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.ahub-layer-sub   { font-size: 7px; font-weight: 600; opacity: .7; }

/* ── Article grid ── */
.ahub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.ahub-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ahub-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,176,158,.08);
}
.ahub-card[hidden] { display: none; }

.ahub-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ahub-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
}
.ahub-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.ahub-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.ahub-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Badges */
.ahub-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}
.ahub-badge-fabric   { background: rgba(15,98,254,.1);   color: #4589ff; }
.ahub-badge-azure    { background: rgba(255,131,43,.1);  color: var(--orange); }
.ahub-badge-powerbi  { background: rgba(255,185,0,.1);   color: #d4a017; }
.ahub-badge-dataeng  { background: rgba(138,63,252,.1);  color: var(--purple); }
.ahub-badge-ai       { background: rgba(13,176,158,.12); color: var(--teal); }
.ahub-badge-certif   { background: rgba(13,176,158,.1);  color: var(--teal); }
.ahub-badge-career   { background: rgba(138,63,252,.1);  color: var(--purple); }
.ahub-badge-leadership { background: rgba(232,50,90,.1); color: #e8325a; }

.ahub-badge-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Read time + date */
.ahub-read-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}
.ahub-date { font-size: 11px; color: var(--muted); }

/* Links */
.ahub-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
  transition: letter-spacing .15s;
}
.ahub-link:hover { text-decoration: underline; letter-spacing: .02em; }

/* Empty state */
.ahub-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 64px 24px;
  text-align: center;
}
.ahub-empty[hidden] { display: none; }
.ahub-empty svg { color: var(--muted); opacity: .4; }
.ahub-empty p { font-size: 15px; color: var(--muted); }
.ahub-reset {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg2);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.ahub-reset:hover { border-color: var(--teal); background: rgba(13,176,158,.06); }

/* Newsletter strip */
.ahub-nl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #0e1525, #0f2035);
  border: 1px solid rgba(13,176,158,.18);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px 36px;
  margin-top: 8px;
}
.ahub-nl-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.ahub-nl h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e8edf8;
  margin-bottom: 6px;
}
.ahub-nl p { font-size: 14px; color: #7a8aaa; line-height: 1.65; }
.ahub-nl-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .18s, transform .18s, box-shadow .18s;
  flex-shrink: 0;
}
.ahub-nl-cta:hover {
  background: #0a9a8d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,176,158,.3);
}
.ahub-nl-cta svg { transition: transform .18s; }
.ahub-nl-cta:hover svg { transform: translateX(3px); }

/* ===== RESSOURCES ===== */
.ressources { background: var(--dark-bg); }
.ressources .section-label { color: var(--teal); }
.ressources .section-title { color: var(--dark-text); }

.res-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.res-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.res-card:hover { transform: translateY(-4px); }

.res-type-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.res-bar-blue   { background: var(--blue-lt); }
.res-bar-teal   { background: var(--teal); }
.res-bar-orange { background: var(--orange); }
.res-bar-purple { background: var(--purple); }

.res-type {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dark-muted);
}
.res-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark-text); line-height: 1.3; }
.res-card p  { font-size: 13px; color: var(--dark-muted); line-height: 1.65; flex: 1; }

.res-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.res-tags span {
  font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 100px;
  background: rgba(13,176,158,.08); border: 1px solid rgba(13,176,158,.2); color: var(--teal);
}

.res-link { font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 4px; transition: opacity .2s; }
.res-link:hover { opacity: .7; }

/* FEATURED CARD */
.res-featured {
  background: linear-gradient(135deg, rgba(13,176,158,.06), rgba(15,98,254,.04));
  border: 1px solid rgba(13,176,158,.2);
  border-radius: var(--radius);
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.res-feat-left h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--dark-text); margin-bottom: 10px; }
.res-feat-left p  { font-size: 15px; color: var(--dark-muted); line-height: 1.7; margin-bottom: 24px; max-width: 500px; }

.res-feat-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
  border: 1px solid rgba(13,176,158,.3);
  padding: 4px 12px; border-radius: 100px;
}

.res-feat-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--dark-muted);
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 2px; margin-top: 8px;
  transition: color .2s, border-color .2s;
}
.btn-ghost-dark:hover { color: var(--teal); border-color: var(--teal); }

.res-feat-right {
  position: relative; width: 200px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.res-feat-orb {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(13,176,158,.15), transparent 70%);
  border-radius: 50%;
  animation: float1 5s ease-in-out infinite;
}
.res-feat-text {
  font-size: 11px; font-weight: 600; color: rgba(13,176,158,.4);
  text-align: center; line-height: 2; letter-spacing: .06em; position: relative;
}


/* ===== RESSOURCES ===== */
.ressources { background: var(--bg2); }

.ressources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.ressource-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.ressource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.rc-guide::before    { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.rc-checklist::before{ background: linear-gradient(90deg, var(--teal), var(--green)); }
.rc-tips::before     { background: linear-gradient(90deg, var(--orange), #f1c21b); }
.rc-career::before   { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.rc-newsletter::before{ background: linear-gradient(90deg, #ff6719, var(--orange)); }
.rc-call::before     { background: linear-gradient(90deg, var(--teal), var(--blue)); }

.ressource-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.rc-guide:hover     { border-color: var(--blue); }
.rc-checklist:hover { border-color: var(--teal); }
.rc-tips:hover      { border-color: var(--orange); }
.rc-career:hover    { border-color: var(--purple); }
.rc-newsletter:hover{ border-color: #ff6719; }
.rc-call:hover      { border-color: var(--teal); }

.rc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.rc-icon { font-size: 24px; }
.rc-type {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.ressource-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); line-height: 1.3;
}
.ressource-card p {
  font-size: 13px; color: var(--muted);
  line-height: 1.65; flex: 1;
}

.rc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.rc-tags span {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 100px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
}

.rc-link {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 700;
  color: var(--teal);
  margin-top: 6px;
  transition: opacity .2s;
}
.rc-link:hover { opacity: .7; }
.rc-link-sub { color: #ff6719; }
.rc-link-cal { color: var(--teal); }

/* About quote style */
.about-quote {
  font-style: italic;
  color: var(--teal) !important;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  margin-top: 8px;
}

/* ===== PASSIONS ===== */
.passions { background: var(--bg2); }

.passions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .passions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .passions-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.passion-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.passion-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.passion-cloud::before { background: linear-gradient(90deg, var(--teal), var(--blue)); }
.passion-share::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.passion-sport::before { background: linear-gradient(90deg, var(--orange), var(--red)); }

.passion-cloud:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,176,158,.1); }
.passion-share:hover { border-color: var(--blue-lt); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,98,254,.1); }
.passion-sport:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,131,43,.1); }

.passion-icon { font-size: 40px; margin-bottom: 16px; display: block; }

.passion-svg-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.passion-cloud .passion-svg-icon  { background: rgba(13,176,158,.12); color: var(--teal); }
.passion-share .passion-svg-icon  { background: rgba(15,98,254,.12);  color: var(--blue); }
.passion-sport .passion-svg-icon  { background: rgba(255,131,43,.12); color: var(--orange); }

.passion-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.passion-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.passion-card p strong { color: var(--text); }

.passion-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ptag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ===== CONTACT ===== */
/* ===== CONTACT (redesign) ===== */
.contact {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,176,158,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,176,158,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.contact-label {
  color: var(--teal);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.12;
  margin-bottom: 20px;
}

.contact-heading span {
  color: var(--teal);
}

.contact-sub {
  font-size: 16px;
  color: var(--dark-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.contact-btn-primary:hover { background: var(--teal-dk); transform: translateY(-2px); }

.contact-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border);
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}
.contact-btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ===== BOOKING ===== */
.booking { background: var(--dark-bg); }
.booking .section-label { color: var(--teal); }
.booking .section-title { color: var(--dark-text); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.booking-offer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue-lt));
}
.offer-card:hover { border-color: var(--teal); transform: translateX(4px); }

.offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(13,176,158,.12);
  color: var(--teal);
  margin-bottom: 16px;
}
.offer-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--dark-text); margin-bottom: 8px;
}
.offer-card > p { font-size: 14px; color: var(--dark-muted); line-height: 1.65; margin-bottom: 14px; }

.offer-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.offer-list li {
  font-size: 13px; color: var(--dark-muted);
  padding-left: 18px; position: relative;
}
.offer-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* CTA PANEL */
.booking-cta-panel {
  position: sticky;
  top: 80px;
  background: var(--dark-surface);
  border: 1px solid rgba(13,176,158,.3);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-profile {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
}

.bp-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.bp-name { font-size: 15px; font-weight: 700; color: var(--dark-text); margin-bottom: 2px; }
.bp-role { font-size: 12px; color: var(--teal); }

.booking-details { display: flex; flex-direction: column; gap: 10px; }
.bd-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--dark-muted);
}
.bd-item svg { flex-shrink: 0; color: var(--teal); }

.btn-booking {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-booking:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,176,158,.35);
}

.booking-note {
  text-align: center; font-size: 12px;
  color: var(--dark-muted); font-style: italic;
  margin-top: -10px;
}

.booking-socials {
  display: flex; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
}

.social-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 7px;
  font-size: 13px; font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: opacity .2s, transform .2s;
}
.social-btn:hover { opacity: .85; transform: translateY(-1px); }

.social-li  { background: #0077b5; color: #fff; }
.social-med { background: #000; color: #fff; }
.social-sub { background: #ff6719; color: #fff; }

/* CONTACT UPDATED */
.contact-social-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s;
  margin-top: 8px;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark-text);
  margin-bottom: 3px;
}

.footer-role {
  font-size: 12px;
  color: var(--dark-muted);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--dark-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--teal); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social a {
  color: var(--dark-muted);
  transition: color .2s, transform .2s;
  display: flex;
}
.footer-social a:hover { color: var(--teal); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(122,138,170,.55);
}

.footer-brand {
  color: rgba(122,138,170,.55);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
  transition: color .25s;
}
.footer-brand::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--teal);
  transition: right .3s cubic-bezier(.4,0,.2,1);
}
.footer-brand:hover { color: rgba(232,237,248,.7); }
.footer-brand:hover::after { right: 0; }

/* ===== RESPONSIVE ===== */

/* ── 900px: tablets landscape ─────────────────────────── */
@media (max-width: 900px) {
  .wt-signature-layout { grid-template-columns: 1fr; gap: 32px; }
  .wt-manifesto-wrap { padding: 80px 0 60px; }
  .wt-quote-bg { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-cta-panel { position: static; }
  .sp-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .sp-header { grid-template-columns: 1fr; gap: 20px; }
  .ahub-top { grid-template-columns: 1fr; gap: 16px; }
  .ahub-featured { grid-template-columns: 1fr; }
  .ahub-feat-visual { display: none; }
  .ahub-grid { grid-template-columns: 1fr 1fr; }
  .ahub-nl { grid-template-columns: 1fr; gap: 20px; }
  .res-featured { grid-template-columns: 1fr; gap: 24px; }
  .res-feat-right { display: none; }
}

/* ── 860px: navbar switches to hamburger ──────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(247,244,235,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,.07);
    padding: 12px 16px 24px;
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
    animation: navSlideDown .28s cubic-bezier(.4,0,.2,1) both;
    z-index: 199;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--text);
  }
  .nav-link::after { display: none; }
  .nav-link:hover { background: rgba(13,176,158,.08); color: var(--teal); }
  .nav-link.active { color: var(--teal); background: rgba(13,176,158,.08); }

  .nav-li-btn {
    margin-top: 8px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    border-color: rgba(13,176,158,.5);
    color: var(--teal);
    background: rgba(13,176,158,.05);
  }

  .about-layout    { grid-template-columns: 1fr; gap: 40px; }
  .about-cards     { grid-template-columns: 1fr 1fr; }
  .about-stats     { gap: 24px; flex-wrap: wrap; }
  .section         { padding: 72px 0; }
  .banner-wave     { width: 120px; }
  .banner-badges   { gap: 10px; }
  .ms-badge        { width: 72px; min-height: 88px; }
  .fabric-logo     { right: 16px; width: 36px; }
  .timeline::before { left: 10px; }
  .timeline-item   { padding-left: 40px; }
  .tl-dot          { left: 2px; }
  .footer-inner    { grid-template-columns: 1fr; gap: 28px; }
  .footer-social   { flex-direction: row; gap: 20px; }
  .contact-actions { flex-direction: column; }
  .contact-btn-primary,
  .contact-btn-outline { justify-content: center; }
}

/* ── 640px: mobile portrait ───────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .section { padding: 56px 0; }
  .section-title { margin-bottom: 24px; }

  /* Banner */
  .banner-content { padding: 40px 16px; }
  .banner-badges  { gap: 8px; }
  .ms-badge { width: 60px; min-height: 74px; padding: 8px 5px; }
  .ms-badge-title { font-size: 6px; }
  .ms-assoc       { font-size: 5px; }
  .banner-name { letter-spacing: .04em; }
  .banner-codes { font-size: 11px; letter-spacing: .06em; }

  /* About */
  .about-layout  { grid-template-columns: 1fr; gap: 32px; }
  .about-cards   { grid-template-columns: 1fr; gap: 12px; }
  .about-stats   { gap: 20px; flex-wrap: wrap; }
  .about-card    { padding: 20px; }
  .about-text    { font-size: 15px; }

  /* Skills */
  .skill-group   { padding: 20px; }

  /* Certs */
  .certs-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cert-card  { padding: 16px 10px; }
  .cert-code  { font-size: 12px; }
  .cert-name  { font-size: 10px; }

  /* Strategic Projects */
  .sp-grid   { grid-template-columns: 1fr; gap: 16px; }
  .sp-card-inner { padding: 24px 20px; }
  .sp-card-title { font-size: 16px; }

  /* Women / Vision */
  .wt-manifesto-wrap { padding: 60px 0 40px; }
  .wt-signature-layout { gap: 24px; }
  .wt-quote-line { font-size: clamp(22px, 6vw, 44px); }
  .wt-ql-indent  { padding-left: clamp(20px, 4vw, 48px); }

  /* Articles */
  .ahub-grid { grid-template-columns: 1fr; }
  .ahub-search { width: 100%; }
  .ahub-search:focus { width: 100%; }
  .topic-card  { padding: 16px; }

  /* Ressources */
  .res-grid  { grid-template-columns: 1fr; gap: 14px; }
  .res-card  { padding: 20px; }

  /* Passions */
  .passion-card { padding: 24px 20px; }

  /* Booking */
  .offer-card   { padding: 22px 18px; }
  .booking-cta-panel { padding: 24px 20px; }
  .booking-offer { gap: 14px; }

  /* Contact */
  .contact-heading { font-size: clamp(28px, 7vw, 48px); }
  .contact-btn-primary,
  .contact-btn-outline { padding: 14px 20px; font-size: 14px; }

  /* Footer */
  .footer-inner { gap: 24px; }
  .footer-left  { gap: 12px; }
  .footer-logo  { width: 38px; height: 38px; font-size: 14px; }
  .footer-nav   { gap: 8px; }
  .footer-social { flex-wrap: wrap; gap: 16px; }
}

/* ── 400px: extra small phones ────────────────────────── */
@media (max-width: 400px) {
  .nav-inner { padding: 0 16px; }
  .container  { padding: 0 16px; }
  .banner-badges { gap: 6px; }
  .ms-badge { width: 52px; min-height: 64px; padding: 7px 4px; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { gap: 16px; }
  .stat-num { font-size: 24px; }
}
