:root {
  --navy: #06152f;
  --royal: #0a48d7;
  --ink: #04070f;
  --charcoal: #101622;
  --orange: #ff8a1d;
  --cyan: #12d9ff;
  --blue: #2672ff;
  --white: #ffffff;
  --muted: #b8c8e8;
  --glass: rgba(9, 22, 49, 0.68);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(30, 103, 255, 0.28), transparent 32rem),
    radial-gradient(circle at 80% 20%, rgba(129, 49, 255, 0.22), transparent 28rem),
    linear-gradient(135deg, #02050d 0%, #06152f 42%, #050711 100%);
  overflow-x: hidden;
}

body.theme-light {
  --navy: #edf6ff;
  --ink: #f7fbff;
  --charcoal: #dbeaff;
  --white: #071327;
  --muted: #425575;
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(7, 19, 39, 0.14);
  background:
    radial-gradient(circle at 18% 10%, rgba(38, 114, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 22%, rgba(129, 49, 255, 0.12), transparent 26rem),
    linear-gradient(135deg, #f7fbff 0%, #eaf3ff 45%, #ffffff 100%);
}

body.theme-light .hero,
body.theme-light .hero h1,
body.theme-light .footer,
body.theme-light .footer h2,
body.theme-light .footer-bottom,
body.theme-light .site-header:not(.scrolled):not(.menu-open) .brand strong,
body.theme-light .site-header:not(.scrolled):not(.menu-open) .desktop-nav a,
body.theme-light .site-header:not(.scrolled):not(.menu-open) .theme-toggle,
body.theme-light .site-header:not(.scrolled):not(.menu-open) .btn-ghost {
  color: #ffffff;
}

body.theme-light .hero p:not(.eyebrow),
body.theme-light .footer p,
body.theme-light .footer a,
body.theme-light .footer-bottom,
body.theme-light .site-header:not(.scrolled):not(.menu-open) .brand small {
  color: rgba(226, 237, 255, 0.82);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  z-index: -2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(18, 217, 255, 0.9);
  outline-offset: 4px;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(3, 10, 25, 0.82);
  border-bottom-color: rgba(18, 217, 255, 0.18);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

body.theme-light .site-header.scrolled,
body.theme-light .site-header.menu-open {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(10, 72, 215, 0.18);
}

.nav-shell {
  width: min(1480px, calc(100% - 2rem));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.8rem; min-width: 210px; }
.brand-logo { width: 96px; max-height: 58px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(18, 217, 255, 0.35)); }
.brand strong { display: block; font-size: 1.05rem; letter-spacing: 0; }
.brand small { display: block; color: var(--muted); font-size: 0.72rem; }

.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(0.55rem, 1vw, 1.2rem); }
.desktop-nav a, .mobile-menu a, .footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.desktop-nav a:hover, .mobile-menu a:hover, .footer a:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(18, 217, 255, 0.85);
}

.nav-actions { display: flex; gap: 0.7rem; margin-left: 0.5rem; }
.theme-toggle {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 217, 255, 0.52);
  box-shadow: 0 0 24px rgba(18, 217, 255, 0.2);
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ffb23e);
  color: #10131a;
  box-shadow: 0 0 26px rgba(255, 138, 29, 0.34);
}
.btn-ghost, .btn-glass {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  backdrop-filter: blur(18px);
}
.btn-glass { box-shadow: 0 0 24px rgba(18, 217, 255, 0.16); }
.ripple span.ripple-dot {
  position: absolute;
  border-radius: 999px;
  transform: scale(0);
  animation: ripple 0.65s ease-out;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 82px;
  right: 1rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(3, 10, 25, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(112%);
  transition: transform 0.32s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 0.85rem; border-radius: 12px; }
.mobile-actions { display: grid; grid-template-columns: auto 1fr 1fr; gap: 0.7rem; padding-top: 0.7rem; align-items: center; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.hero-slider, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-image:
    linear-gradient(100deg, rgba(2, 5, 13, 0.94) 0%, rgba(6, 21, 47, 0.72) 44%, rgba(4, 7, 15, 0.8) 100%),
    var(--bg);
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 6s ease;
  transform: scale(1.04);
}
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-content {
  width: min(860px, calc(100% - 2rem));
  margin-left: max(1rem, calc((100vw - 1280px) / 2));
  padding-top: 6rem;
  position: relative;
  z-index: 3;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  box-shadow: 0 0 14px var(--cyan);
}
.hero h1, .section h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.7rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 950;
}
.hero h1 {
  text-shadow: 0 0 50px rgba(18, 217, 255, 0.24);
}
.hero p:not(.eyebrow), .section-heading p, .section-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.8;
}
.hero-content > p:not(.eyebrow) { max-width: 760px; margin: 1.4rem 0 0; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 12, 29, 0.66);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.slider-arrow:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 0 28px rgba(18, 217, 255, 0.34); }
.slider-arrow.prev { left: 1.2rem; transform: translateY(-50%); }
.slider-arrow.next { right: 1.2rem; transform: translateY(-50%); }
.slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
}
.slider-dots button {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.25s ease, background 0.25s ease;
}
.slider-dots button.active { width: 64px; background: linear-gradient(90deg, var(--orange), var(--cyan)); }

.floating-card {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 0 24px rgba(18, 217, 255, 0.06);
  animation: floaty 6s ease-in-out infinite;
}
.floating-card i { color: var(--orange); font-size: 1.4rem; }
.floating-card span { display: block; margin-top: 0.7rem; color: var(--muted); font-size: 0.78rem; }
.floating-card strong { display: block; font-size: 1.45rem; }
.card-live { right: 10%; top: 28%; }
.card-score { right: 18%; bottom: 18%; animation-delay: -2s; }
@keyframes floaty { 50% { transform: translate3d(0, -18px, 0) rotate(1deg); } }

.holo-shape, .glow-streak {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.holo-ring {
  position: absolute;
  z-index: 2;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(18, 217, 255, 0.22);
  background:
    radial-gradient(circle, transparent 56%, rgba(18, 217, 255, 0.1) 57%, transparent 59%),
    conic-gradient(from 120deg, transparent, rgba(18, 217, 255, 0.5), transparent, rgba(255, 138, 29, 0.4), transparent);
  mask: radial-gradient(circle, transparent 58%, #000 59%);
  animation: rotateRing 16s linear infinite;
  pointer-events: none;
}
.ring-one { right: 23%; top: 20%; }
.ring-two { left: 8%; bottom: 21%; width: 170px; animation-direction: reverse; opacity: 0.72; }
.holo-shape {
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 217, 255, 0.3);
  transform: rotate(45deg);
  box-shadow: inset 0 0 38px rgba(18, 217, 255, 0.13), 0 0 40px rgba(18, 217, 255, 0.16);
  animation: spinDrift 18s linear infinite;
}
.shape-one { right: 8%; top: 18%; }
.shape-two { left: 10%; bottom: 14%; width: 120px; border-color: rgba(255, 138, 29, 0.34); animation-direction: reverse; }
.glow-streak {
  height: 2px;
  width: 280px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  filter: drop-shadow(0 0 12px var(--cyan));
  transform: rotate(-28deg);
}
.streak-one { right: 20%; top: 38%; animation: streak 5s ease-in-out infinite; }
.streak-two { left: 18%; top: 24%; background: linear-gradient(90deg, transparent, var(--orange), transparent); filter: drop-shadow(0 0 12px var(--orange)); animation: streak 7s ease-in-out infinite reverse; }
@keyframes spinDrift { to { transform: rotate(405deg); } }
@keyframes rotateRing { to { transform: rotate(360deg); } }
@keyframes streak { 50% { opacity: 0.2; transform: translateX(40px) rotate(-28deg); } }

.hero-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 10, 25, 0.5);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
  font-size: 0.82rem;
  font-weight: 800;
}
.hero-badge i { color: var(--cyan); }
.trust-badge { left: max(1rem, calc((100vw - 1280px) / 2)); top: 7.2rem; }
.zoom-badge { right: 11%; top: 18%; }
.curricula-badge { right: 8%; bottom: 12%; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scroll-indicator span {
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  position: relative;
}
.scroll-indicator span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}
@keyframes scrollDot { 50% { transform: translate(-50%, 12px); opacity: 0.35; } }

.section {
  position: relative;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.section::before {
  content: "";
  position: absolute;
  inset: 1.5rem -4vw;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}
.about-section::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(129, 49, 255, 0.2), transparent 20rem),
    radial-gradient(circle at 82% 72%, rgba(18, 217, 255, 0.13), transparent 18rem);
  filter: blur(6px);
}
.curriculum-section::before {
  background:
    radial-gradient(circle, rgba(18, 217, 255, 0.12) 1px, transparent 2px),
    conic-gradient(from 90deg at 50% 50%, transparent, rgba(18, 217, 255, 0.12), transparent, rgba(255, 138, 29, 0.09), transparent);
  background-size: 30px 30px, 100% 100%;
  mask-image: radial-gradient(circle, black, transparent 72%);
}
#features::before {
  background-image:
    linear-gradient(90deg, rgba(18,217,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(18,217,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 28% 22%, rgba(10,72,215,0.2), transparent 20rem);
  background-size: 72px 72px, 72px 72px, auto;
}
#facilities::before {
  background: linear-gradient(118deg, transparent 0 25%, rgba(255,255,255,0.12) 25.4% 25.8%, transparent 26.2% 100%);
}
.courses-section::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 138, 29, 0.12), transparent 16rem),
    radial-gradient(circle at 78% 50%, rgba(18, 217, 255, 0.13), transparent 18rem);
}
#strategic-makers::before {
  background: conic-gradient(from 180deg at 50% 50%, rgba(18,217,255,0.1), transparent, rgba(129,49,255,0.14), transparent, rgba(255,138,29,0.08));
  mask-image: radial-gradient(circle, black, transparent 74%);
}
.contact-section::before {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(18,217,255,0.18), transparent 28rem),
    repeating-radial-gradient(ellipse at 50% 120%, rgba(18,217,255,0.12) 0 1px, transparent 1px 18px);
}
.section-heading { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.section h2 { font-size: clamp(2rem, 4vw, 4.25rem); line-height: 1.02; }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.section-copy h2 { margin-bottom: 1.4rem; }

.principles {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.principles div {
  padding: 1rem;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 0 16px 16px 0;
}
.principles strong { display: block; color: var(--white); }
.principles span { color: var(--muted); }

.media-orbit {
  position: relative;
  border: 1px solid rgba(18, 217, 255, 0.25);
  border-radius: 30px;
  padding: 0.7rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  box-shadow: 0 0 70px rgba(18, 217, 255, 0.17);
}
.media-orbit img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 24px; filter: saturate(1.08) contrast(1.05); }
.media-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(2, 5, 13, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.media-badge i { color: var(--orange); }

.highlight-grid, .feature-grid, .stats-grid, .profile-grid, .course-grid, .facility-grid, .curriculum-grid {
  display: grid;
  gap: 1.2rem;
}
.highlight-grid { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.feature-grid, .stats-grid { grid-template-columns: repeat(3, 1fr); }
.course-grid, .facility-grid { grid-template-columns: repeat(3, 1fr); }
.profile-grid, .curriculum-grid { grid-template-columns: repeat(3, 1fr); }
.curriculum-grid { grid-template-columns: repeat(2, 1fr); }

.glass-card, .feature-card, .curriculum-card, .course-card, .stat-card, .profile-card, .contact-form, .contact-panel {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.glass-card::before, .feature-card::before, .curriculum-card::before, .course-card::before, .profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.16), transparent 36%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}
.glass-card:hover, .feature-card:hover, .curriculum-card:hover, .course-card:hover, .profile-card:hover, .stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 217, 255, 0.55);
  box-shadow: 0 24px 80px rgba(18, 217, 255, 0.13);
}
.glass-card:hover::before, .feature-card:hover::before, .curriculum-card:hover::before, .course-card:hover::before, .profile-card:hover::before { transform: translateX(120%); }
.glass-card i, .feature-card i, .curriculum-card > i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(18, 217, 255, 0.11);
  color: var(--cyan);
  font-size: 1.35rem;
  box-shadow: inset 0 0 22px rgba(18, 217, 255, 0.14);
}
h3 { margin: 1rem 0 0.6rem; font-size: 1.22rem; }
.glass-card p, .feature-card p, .curriculum-card p, .course-card p, .profile-card span, .facility-card p { color: var(--muted); line-height: 1.7; }

.curriculum-card ul {
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}
.curriculum-card li {
  margin: 0.55rem 0;
  color: rgba(255,255,255,0.84);
}
.curriculum-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.6rem;
  color: var(--orange);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cyan);
  font-weight: 900;
}

.facility-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  overflow: hidden;
  background-image: linear-gradient(to top, rgba(2, 5, 13, 0.96), rgba(6, 21, 47, 0.28)), var(--img);
  background-size: cover;
  background-position: center;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.facility-card:hover { transform: perspective(900px) rotateX(3deg) rotateY(-4deg) translateY(-8px); border-color: rgba(255, 138, 29, 0.58); box-shadow: 0 30px 90px rgba(255, 138, 29, 0.13); }

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.filter-btn {
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.92), rgba(18, 217, 255, 0.25));
  box-shadow: 0 0 24px rgba(255, 138, 29, 0.22);
  transform: translateY(-2px);
}
.course-card { min-height: 290px; display: flex; flex-direction: column; }
.course-card span {
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 217, 255, 0.1);
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.78rem;
}
.course-card div { color: rgba(255,255,255,0.84); margin-top: auto; }
.course-card a {
  margin-top: 1rem;
  color: var(--orange);
  font-weight: 900;
}
.course-card.hidden { display: none; }

.gallery-section {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1280px) / 2));
  padding-right: max(1rem, calc((100vw - 1280px) / 2));
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 138, 29, 0.13), transparent 24rem),
    radial-gradient(circle at 86% 30%, rgba(18, 217, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(6, 21, 47, 0.36), rgba(2, 5, 13, 0.12));
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 1rem -8vw;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,0.07) 45%, transparent 56% 100%),
    radial-gradient(ellipse at 50% 50%, rgba(18,217,255,0.08), transparent 58%);
  opacity: 0.7;
  animation: gallerySoftDrift 9s ease-in-out infinite alternate;
}

.gallery-section .section-heading {
  max-width: 960px;
  margin-bottom: 2.4rem;
}

.gallery-section .section-heading h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-search {
  width: min(560px, 100%);
  min-height: 52px;
  margin: 0 auto 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
}

.gallery-search i {
  color: var(--cyan);
}

.gallery-search input {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.gallery-search input::placeholder {
  color: var(--muted);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.6rem;
}

.gallery-filter-btn {
  min-height: 46px;
  padding: 0.72rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.95), rgba(18, 217, 255, 0.24));
  color: #10131a;
  box-shadow: 0 18px 42px rgba(255, 138, 29, 0.22);
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  position: relative;
}

.gallery-filter-btn.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: translateX(-50%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: var(--section-shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  animation: galleryCardSettle 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-card:nth-child(2) { animation-delay: 0.06s; }
.gallery-card:nth-child(3) { animation-delay: 0.12s; }
.gallery-card:nth-child(4) { animation-delay: 0.18s; }
.gallery-card:nth-child(5) { animation-delay: 0.24s; }
.gallery-card:nth-child(6) { animation-delay: 0.30s; }

.gallery-card.hidden {
  display: none;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-card div {
  padding: 1.25rem 1.35rem 1.45rem;
}

.gallery-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(18, 217, 255, 0.12);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.20), transparent 36%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.35s ease, transform 0.65s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 217, 255, 0.44);
  box-shadow: 0 28px 90px rgba(18, 217, 255, 0.13);
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.18) contrast(1.06);
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

@keyframes gallerySoftDrift {
  from { transform: translate3d(-1.2%, 0, 0); opacity: 0.45; }
  to { transform: translate3d(1.2%, -1%, 0); opacity: 0.82; }
}

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

body.theme-light .gallery-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 138, 29, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 30%, rgba(10, 72, 215, 0.12), transparent 24rem),
    linear-gradient(180deg, #f9fcff 0%, #edf6ff 100%);
}

body.theme-light .gallery-section::before {
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(10,72,215,0.06) 45%, transparent 56% 100%),
    radial-gradient(ellipse at 50% 50%, rgba(255,138,29,0.08), transparent 58%);
}

body.theme-light .gallery-filter-btn {
  color: #071327;
  border-color: rgba(7, 19, 39, 0.08);
  background: rgba(255,255,255,0.56);
}

body.theme-light .gallery-search {
  border-color: rgba(7, 19, 39, 0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 16px 48px rgba(35, 72, 120, 0.10);
}

body.theme-light .gallery-search input {
  color: #071327;
}

body.theme-light .gallery-card {
  background: rgba(255,255,255,0.62);
  border-color: rgba(7, 19, 39, 0.12);
  box-shadow: 0 22px 70px rgba(35, 72, 120, 0.13);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-section::before,
  .gallery-card {
    animation: none !important;
  }
}

/* Gallery toolbar alternate style */
.gallery-toolbar {
  width: min(1120px, 100%);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
  backdrop-filter: blur(20px);
}

.gallery-toolbar .gallery-search {
  width: 100%;
  margin: 0;
  min-height: 50px;
  border-radius: 16px;
  background: rgba(2, 5, 13, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.gallery-toolbar .gallery-filter-bar {
  justify-content: flex-end;
  gap: 0.55rem;
  margin: 0;
}

.gallery-toolbar .gallery-filter-btn {
  min-height: 42px;
  padding: 0.62rem 0.95rem;
  border-radius: 14px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.gallery-toolbar .gallery-filter-btn:hover,
.gallery-toolbar .gallery-filter-btn.active {
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.95), rgba(18, 217, 255, 0.26));
  box-shadow: 0 12px 30px rgba(255, 138, 29, 0.20);
}

.gallery-toolbar .gallery-filter-btn.active::after {
  content: none;
}

body.theme-light .gallery-toolbar {
  border-color: rgba(7, 19, 39, 0.08);
  background: rgba(255,255,255,0.64);
  box-shadow: 0 20px 70px rgba(35, 72, 120, 0.11);
}

body.theme-light .gallery-toolbar .gallery-search {
  background: rgba(247,251,255,0.82);
}

@media (max-width: 980px) {
  .gallery-toolbar {
    grid-template-columns: 1fr;
  }

  .gallery-toolbar .gallery-filter-bar {
    justify-content: flex-start;
  }
}

/* Gallery lightweight motion polish */
.gallery-section::after {
  content: "";
  position: absolute;
  inset: 0 -6vw;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 22% 35%, rgba(18, 217, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 78% 70%, rgba(255, 138, 29, 0.10), transparent 18rem),
    linear-gradient(105deg, transparent 0 38%, rgba(255,255,255,0.06) 50%, transparent 62% 100%);
  animation: galleryBgFloat 12s ease-in-out infinite alternate;
}

.gallery-toolbar {
  animation: galleryToolbarSettle 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-card {
  animation-name: galleryCardSettle, galleryCardFloat;
  animation-duration: 0.7s, 7s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), ease-in-out;
  animation-fill-mode: both, none;
  animation-iteration-count: 1, infinite;
}

.gallery-card:nth-child(2) { animation-delay: 0.06s, 0.4s; }
.gallery-card:nth-child(3) { animation-delay: 0.12s, 0.8s; }
.gallery-card:nth-child(4) { animation-delay: 0.18s, 1.2s; }
.gallery-card:nth-child(5) { animation-delay: 0.24s, 1.6s; }
.gallery-card:nth-child(6) { animation-delay: 0.30s, 2s; }

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(18, 217, 255, 0.18), transparent 46%);
  transition: opacity 0.28s ease;
}

.gallery-card:hover {
  animation-play-state: paused;
}

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

@keyframes galleryBgFloat {
  from { transform: translate3d(-1.2%, 0, 0); opacity: 0.30; }
  to { transform: translate3d(1.2%, -1%, 0); opacity: 0.58; }
}

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

@keyframes galleryCardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

body.theme-light .gallery-section::after {
  background:
    radial-gradient(circle at 22% 35%, rgba(10, 72, 215, 0.10), transparent 18rem),
    radial-gradient(circle at 78% 70%, rgba(255, 138, 29, 0.10), transparent 18rem),
    linear-gradient(105deg, transparent 0 38%, rgba(10,72,215,0.05) 50%, transparent 62% 100%);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-section::after,
  .gallery-toolbar,
  .gallery-card {
    animation: none !important;
  }
}

/* Gallery alternate editorial masonry style */
.gallery-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 217, 255, 0.13), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(255, 138, 29, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(4, 10, 24, 0.70), rgba(7, 20, 43, 0.48)) !important;
}

.gallery-toolbar {
  border-radius: 18px;
  background: rgba(3, 10, 25, 0.56);
}

.gallery-toolbar .gallery-search {
  border-radius: 12px;
}

.gallery-toolbar .gallery-filter-btn {
  border-radius: 12px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
}

.gallery-card {
  min-height: 300px;
  border-radius: 18px;
  background: #06152f !important;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(4) {
  grid-column: span 2;
  min-height: 430px;
}

.gallery-card:nth-child(3) {
  grid-row: span 2;
}

.gallery-card img {
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
}

.gallery-card div {
  position: absolute;
  inset: auto 1rem 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(2, 5, 13, 0.62);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.gallery-card h3 {
  color: #ffffff;
}

.gallery-card span {
  margin-bottom: 0.55rem;
}

.gallery-card:hover {
  transform: translateY(-6px);
}

body.theme-light .gallery-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(10, 72, 215, 0.10), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(255, 138, 29, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8fbff, #eaf4ff) !important;
}

body.theme-light .gallery-toolbar {
  background: rgba(255,255,255,0.72);
}

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(3) {
    min-height: 320px;
  }
}

/* Gallery restored card style with lightweight effects */
.gallery-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 138, 29, 0.13), transparent 24rem),
    radial-gradient(circle at 86% 30%, rgba(18, 217, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(6, 21, 47, 0.36), rgba(2, 5, 13, 0.12)) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 1.35rem;
}

.gallery-card,
.gallery-card:nth-child(1),
.gallery-card:nth-child(3),
.gallery-card:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
  min-height: 360px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft)) !important;
}

.gallery-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card div {
  position: static;
  inset: auto;
  padding: 1.25rem 1.35rem 1.45rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.gallery-card h3 {
  color: var(--text);
}

.gallery-card span {
  margin-bottom: 0.75rem;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

body.theme-light .gallery-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 138, 29, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 30%, rgba(10, 72, 215, 0.12), transparent 24rem),
    linear-gradient(180deg, #f9fcff 0%, #edf6ff 100%) !important;
}

body.theme-light .gallery-card {
  background: rgba(255,255,255,0.62) !important;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4) {
    min-height: 0;
  }
}

/* Gallery interactive light effects */
.gallery-card {
  --gallery-x: 50%;
  --gallery-y: 18%;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--gallery-x) var(--gallery-y), rgba(18, 217, 255, 0.20), transparent 11rem),
    linear-gradient(135deg, rgba(255, 138, 29, 0.08), transparent 42%);
  transition: opacity 0.28s ease;
}

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

.gallery-card img {
  transform-origin: center;
}

.gallery-card:hover img {
  transform: scale(1.055) translateY(-2px);
}

.gallery-card div {
  position: relative;
  z-index: 2;
}

.gallery-filter-btn.active {
  animation: galleryFilterPop 0.34s ease both;
}

.gallery-search:focus-within {
  border-color: rgba(18, 217, 255, 0.48);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.12),
    0 0 28px rgba(18, 217, 255, 0.14);
}

@keyframes galleryFilterPop {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-3px) scale(1.04); }
  100% { transform: translateY(-2px) scale(1); }
}

.stats-section { width: 100%; max-width: none; padding-left: max(1rem, calc((100vw - 1280px) / 2)); padding-right: max(1rem, calc((100vw - 1280px) / 2)); background: linear-gradient(90deg, rgba(6, 21, 47, 0.62), rgba(2, 5, 13, 0.3)); }
.stat-card { text-align: center; }
.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--white);
  text-shadow: 0 0 28px rgba(18, 217, 255, 0.55);
}
.stat-card strong::after { content: "+"; color: var(--orange); }
.stat-card strong[data-suffix="%"]::after { content: "%"; }
.stat-card span { color: var(--muted); font-weight: 700; }

.profile-card { text-align: center; }
.profile-card img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 0.8rem;
  border: 3px solid rgba(18, 217, 255, 0.34);
  box-shadow: 0 0 30px rgba(18, 217, 255, 0.2);
}
.profile-card p { color: var(--orange); font-weight: 900; margin: 0 0 0.8rem; }
.profile-card div, .social-row { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1rem; }
.profile-card a, .social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.profile-card a:hover, .social-row a:hover { transform: translateY(-4px) rotate(6deg); color: var(--orange); box-shadow: 0 0 26px rgba(18, 217, 255, 0.25); }

/* Leadership section animation polish */
#strategic-makers {
  perspective: 1200px;
}

#strategic-makers .section-heading {
  position: relative;
  z-index: 2;
}

#strategic-makers .section-heading h2 {
  text-shadow: 0 18px 60px rgba(18, 217, 255, 0.18);
  animation: leadershipTitleGlow 4.8s ease-in-out infinite alternate;
}

#strategic-makers::before {
  background-size: 120% 120%;
}

.profile-grid {
  perspective: 1400px;
}

.profile-card {
  --card-x: 50%;
  --card-y: 50%;
  --profile-accent: var(--cyan);
  min-height: 360px;
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.36s ease,
    border-color 0.36s ease,
    box-shadow 0.36s ease,
    background 0.36s ease;
}

.profile-card:nth-child(2) {
  --profile-accent: var(--orange);
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(18, 217, 255, 0.22), transparent 13rem),
    linear-gradient(135deg, transparent 0 38%, rgba(255, 138, 29, 0.10) 38.4% 39%, transparent 39.4% 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.profile-card > * {
  position: relative;
  z-index: 1;
}

.profile-card.reveal {
  transform: translateY(42px) scale(0.96);
}

.profile-card.reveal.visible {
  animation: leadershipCardEnter 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.profile-card.reveal.visible:nth-child(2) {
  animation-delay: 0.12s;
}

.profile-card.reveal.visible:nth-child(3) {
  animation-delay: 0.24s;
}

.profile-card:hover {
  border-color: color-mix(in srgb, var(--profile-accent), #ffffff 12%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    0 0 42px color-mix(in srgb, var(--profile-accent), transparent 70%);
}

.profile-card:hover::after {
  opacity: 1;
}

.profile-card img {
  position: relative;
  z-index: 1;
  transition: transform 0.36s ease, border-color 0.36s ease, filter 0.36s ease, box-shadow 0.36s ease;
  animation: portraitPulse 3.8s ease-in-out infinite;
}

.profile-card:hover img {
  transform: translateZ(34px) scale(1.08);
  border-color: var(--profile-accent);
  filter: saturate(1.15) contrast(1.06);
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--profile-accent), transparent 86%),
    0 0 42px color-mix(in srgb, var(--profile-accent), transparent 58%);
}

.profile-card h3,
.profile-card p,
.profile-card span,
.profile-card div {
  transition: transform 0.36s ease, color 0.28s ease;
}

.profile-card:hover h3 {
  transform: translateZ(28px);
}

.profile-card:hover p {
  transform: translateZ(24px);
  color: #ffb047;
}

.profile-card:hover span {
  transform: translateZ(18px);
}

.profile-card:hover div {
  transform: translateZ(30px);
}

.profile-card a {
  overflow: hidden;
}

.profile-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.38), transparent 62%);
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.profile-card a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.3rem;
}
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.45rem; color: rgba(255,255,255,0.86); font-weight: 700; }
.contact-form input, .contact-form textarea, .newsletter input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(2, 5, 13, 0.5);
  color: var(--white);
  padding: 0.9rem 1rem;
}
.contact-form textarea { resize: vertical; }
.contact-panel { display: grid; gap: 1rem; align-content: start; }
.contact-panel > div:not(.map-placeholder):not(.social-row) {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-panel i { color: var(--cyan); font-size: 1.2rem; margin-top: 0.2rem; }
.contact-panel strong { display: block; }
.contact-panel span { color: var(--muted); }
.map-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed rgba(18, 217, 255, 0.4);
  border-radius: 20px;
  background:
    linear-gradient(rgba(18, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 217, 255, 0.08) 1px, transparent 1px),
    rgba(2, 5, 13, 0.35);
  background-size: 24px 24px;
}
.map-placeholder i { font-size: 2rem; color: var(--orange); }

.footer {
  position: relative;
  overflow: hidden;
  padding: 5rem max(1rem, calc((100vw - 1280px) / 2)) 1.3rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(18, 217, 255, 0.14), transparent 26rem),
    linear-gradient(135deg, #02050d, #06152f 50%, #03040a);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bg-text {
  position: absolute;
  right: 4%;
  top: 0;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 0.8;
  font-weight: 950;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-logo { width: 220px; filter: drop-shadow(0 0 18px rgba(18, 217, 255, 0.36)); }
.footer p { color: var(--muted); line-height: 1.8; max-width: 440px; }
.footer h2 { font-size: 1rem; margin: 0 0 1rem; }
.footer section:not(:first-child) a { display: block; margin: 0.65rem 0; }
.newsletter { margin-top: 1rem; }
.newsletter label { display: block; margin-bottom: 0.5rem; font-weight: 800; }
.newsletter div { display: flex; gap: 0.5rem; }
.newsletter button {
  width: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: #111;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
}
.footer-bottom a { margin-left: 1rem; }

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  color: #06101f;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 0 32px rgba(18,217,255,0.55); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle, .mobile-menu { display: block; }
  .hero-content { margin-left: 5rem; width: min(760px, calc(100% - 7rem)); }
  .floating-card { display: none; }
  .hero-badge { display: none; }
  .feature-grid, .course-grid, .facility-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .nav-shell { min-height: 74px; }
  .brand { min-width: 0; }
  .brand-logo { width: 82px; max-height: 50px; }
  .brand small { display: none; }
  .mobile-menu { top: 74px; }
  .hero-content { margin: 0 auto; width: calc(100% - 2rem); padding-top: 5rem; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); line-height: 0.98; }
  .slider-arrow { top: auto; bottom: 5.8rem; width: 46px; height: 46px; }
  .slider-arrow.prev { left: 1rem; }
  .slider-arrow.next { right: 1rem; }
  .scroll-indicator { display: none; }
  .section-grid, .contact-grid, .curriculum-grid, .highlight-grid, .feature-grid, .course-grid, .facility-grid, .stats-grid, .profile-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .section { width: min(100% - 1.2rem, 1280px); }
  .media-orbit img { aspect-ratio: 16 / 12; }
  .facility-card { min-height: 260px; }
  .footer-bottom { display: grid; }
  .footer-bottom a { margin: 0 1rem 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* === ICTF theme and section atmosphere upgrade === */
:root {
  --page-bg: #050814;
  --page-bg-soft: #071a36;
  --surface: rgba(8, 18, 42, 0.72);
  --surface-strong: rgba(3, 10, 25, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.075);
  --text: #ffffff;
  --text-soft: #d8e4ff;
  --text-muted: #aebfe2;
  --line: rgba(255, 255, 255, 0.15);
  --section-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

body.theme-dark {
  --page-bg: #050814;
  --page-bg-soft: #071a36;
  --surface: rgba(8, 18, 42, 0.72);
  --surface-strong: rgba(3, 10, 25, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.075);
  --text: #ffffff;
  --text-soft: #d8e4ff;
  --text-muted: #aebfe2;
  --line: rgba(255, 255, 255, 0.15);
  --section-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

body.theme-light {
  --page-bg: #f5f8ff;
  --page-bg-soft: #e7f0ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(10, 72, 215, 0.055);
  --text: #071327;
  --text-soft: #1c2c4a;
  --text-muted: #4c5f7f;
  --line: rgba(7, 19, 39, 0.14);
  --section-shadow: 0 24px 70px rgba(37, 77, 130, 0.16);
  color-scheme: light;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 14% 7%, rgba(38, 114, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 17%, rgba(255, 138, 29, 0.16), transparent 24rem),
    linear-gradient(135deg, var(--page-bg) 0%, var(--page-bg-soft) 48%, #03040a 100%);
}

body.theme-light {
  background:
    radial-gradient(circle at 10% 8%, rgba(38, 114, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(255, 138, 29, 0.13), transparent 22rem),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 50%, #f9fbff 100%);
}

body.theme-light::before {
  background-image:
    linear-gradient(rgba(7, 19, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 39, 0.045) 1px, transparent 1px);
}

body.theme-light #particle-canvas { opacity: 0.28; }
body.theme-dark #particle-canvas { opacity: 0.66; }

.site-header.scrolled,
.site-header.menu-open {
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  border-bottom-color: var(--line);
}

body.theme-light .site-header.scrolled,
body.theme-light .site-header.menu-open,
body.theme-light .mobile-menu {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: 0 18px 60px rgba(37, 77, 130, 0.16);
}

body.theme-light .site-header.scrolled .brand strong,
body.theme-light .site-header.menu-open .brand strong,
body.theme-light .site-header.scrolled .desktop-nav a,
body.theme-light .site-header.menu-open .desktop-nav a,
body.theme-light .site-header.scrolled .theme-toggle,
body.theme-light .site-header.menu-open .theme-toggle,
body.theme-light .site-header.scrolled .btn-ghost,
body.theme-light .site-header.menu-open .btn-ghost,
body.theme-light .mobile-menu a,
body.theme-light .mobile-actions .btn-ghost,
body.theme-light .mobile-actions .theme-toggle {
  color: var(--text);
}

body.theme-light .site-header.scrolled .brand small,
body.theme-light .site-header.menu-open .brand small {
  color: var(--text-muted);
}

body.theme-light .menu-toggle span { background: var(--text); }
body.theme-light .menu-toggle,
body.theme-light .theme-toggle,
body.theme-light .btn-ghost,
body.theme-light .btn-glass {
  border-color: rgba(7, 19, 39, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(1rem, calc((100vw - 1280px) / 2));
  padding-right: max(1rem, calc((100vw - 1280px) / 2));
  isolation: isolate;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.96;
}

.about-section::after {
  background:
    linear-gradient(135deg, rgba(8, 18, 42, 0.72), rgba(10, 72, 215, 0.16)),
    radial-gradient(circle at 18% 22%, rgba(255, 138, 29, 0.16), transparent 20rem),
    radial-gradient(circle at 84% 76%, rgba(18, 217, 255, 0.18), transparent 22rem);
}

.curriculum-section::after {
  background:
    repeating-linear-gradient(135deg, rgba(18, 217, 255, 0.07) 0 1px, transparent 1px 22px),
    linear-gradient(140deg, rgba(3, 10, 25, 0.86), rgba(9, 35, 70, 0.72));
}

#features::after {
  background:
    radial-gradient(circle at 50% 25%, rgba(18, 217, 255, 0.13), transparent 26rem),
    linear-gradient(90deg, rgba(5, 8, 20, 0.95), rgba(12, 26, 52, 0.72), rgba(5, 8, 20, 0.95));
}

#facilities::after {
  background:
    linear-gradient(120deg, rgba(255, 138, 29, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(4, 7, 15, 0.82), rgba(10, 23, 48, 0.92));
}

.courses-section::after {
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 138, 29, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 48%, rgba(18, 217, 255, 0.15), transparent 20rem),
    linear-gradient(145deg, rgba(6, 21, 47, 0.86), rgba(3, 8, 22, 0.95));
}

.stats-section::after {
  background:
    linear-gradient(90deg, rgba(255, 138, 29, 0.15) 0 1px, transparent 1px),
    linear-gradient(rgba(18, 217, 255, 0.09) 0 1px, transparent 1px),
    linear-gradient(135deg, rgba(4, 7, 15, 0.96), rgba(6, 21, 47, 0.82));
  background-size: 54px 54px, 54px 54px, auto;
}

#strategic-makers::after {
  background:
    radial-gradient(circle at 24% 24%, rgba(18, 217, 255, 0.13), transparent 20rem),
    radial-gradient(circle at 80% 20%, rgba(255, 138, 29, 0.13), transparent 18rem),
    linear-gradient(160deg, rgba(7, 11, 25, 0.96), rgba(11, 28, 56, 0.86));
}

.contact-section::after {
  background:
    repeating-radial-gradient(ellipse at 50% 110%, rgba(18,217,255,0.12) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, rgba(4, 7, 15, 0.9), rgba(6, 21, 47, 0.96));
}

body.theme-light .about-section::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(229, 239, 255, 0.8)),
    radial-gradient(circle at 18% 22%, rgba(255, 138, 29, 0.16), transparent 18rem),
    radial-gradient(circle at 84% 76%, rgba(10, 72, 215, 0.13), transparent 22rem);
}

body.theme-light .curriculum-section::after {
  background:
    repeating-linear-gradient(135deg, rgba(10, 72, 215, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(140deg, #f7fbff, #e8f2ff);
}

body.theme-light #features::after {
  background:
    radial-gradient(circle at 50% 25%, rgba(18, 217, 255, 0.16), transparent 25rem),
    linear-gradient(90deg, #ffffff, #edf6ff, #ffffff);
}

body.theme-light #facilities::after {
  background:
    linear-gradient(120deg, rgba(255, 138, 29, 0.16), transparent 36%),
    linear-gradient(180deg, #f8fbff, #edf3fb);
}

body.theme-light .courses-section::after {
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 138, 29, 0.15), transparent 17rem),
    radial-gradient(circle at 82% 48%, rgba(10, 72, 215, 0.12), transparent 20rem),
    linear-gradient(145deg, #ffffff, #edf5ff);
}

body.theme-light .stats-section::after {
  background:
    linear-gradient(90deg, rgba(255, 138, 29, 0.16) 0 1px, transparent 1px),
    linear-gradient(rgba(10, 72, 215, 0.08) 0 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff, #e8f2ff);
  background-size: 54px 54px, 54px 54px, auto;
}

body.theme-light #strategic-makers::after {
  background:
    radial-gradient(circle at 24% 24%, rgba(18, 217, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 80% 20%, rgba(255, 138, 29, 0.13), transparent 18rem),
    linear-gradient(160deg, #ffffff, #edf4ff);
}

body.theme-light .contact-section::after {
  background:
    repeating-radial-gradient(ellipse at 50% 110%, rgba(10,72,215,0.09) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, #f8fbff, #e9f2ff);
}

.glass-card,
.feature-card,
.curriculum-card,
.course-card,
.stat-card,
.profile-card,
.contact-form,
.contact-panel,
.principles div,
.media-orbit {
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  border-color: var(--line);
  box-shadow: var(--section-shadow);
}

.section h2,
.section h3,
.principles strong,
.stat-card strong,
.contact-panel strong,
.footer h2 {
  color: var(--text);
}

.hero p:not(.eyebrow),
.section-heading p,
.section-copy p,
.glass-card p,
.feature-card p,
.curriculum-card p,
.course-card p,
.profile-card span,
.facility-card p,
.principles span,
.stat-card span,
.contact-panel span,
.footer p {
  color: var(--text-muted);
}

.curriculum-card li,
.course-card div,
.contact-form label,
.footer-bottom,
.footer a,
.desktop-nav a,
.mobile-menu a {
  color: var(--text-soft);
}

body.theme-light .glass-card::before,
body.theme-light .feature-card::before,
body.theme-light .curriculum-card::before,
body.theme-light .course-card::before,
body.theme-light .profile-card::before {
  background: linear-gradient(120deg, transparent 18%, rgba(10, 72, 215, 0.12), transparent 36%);
}

body.theme-light .facility-card {
  color: #ffffff;
  border-color: rgba(7, 19, 39, 0.1);
  box-shadow: 0 20px 60px rgba(37, 77, 130, 0.18);
}

body.theme-light .facility-card p { color: rgba(236, 244, 255, 0.9); }
body.theme-light .facility-card h3 { color: #ffffff; }

.contact-form input,
.contact-form textarea,
.newsletter input {
  background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
  border-color: var(--line);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.newsletter input::placeholder {
  color: color-mix(in srgb, var(--text-muted) 78%, transparent);
}

body.theme-light .map-placeholder {
  background:
    linear-gradient(rgba(10, 72, 215, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 72, 215, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.56);
  border-color: rgba(10, 72, 215, 0.28);
}

.footer {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 10%, rgba(18, 217, 255, 0.16), transparent 26rem),
    radial-gradient(circle at 14% 80%, rgba(255, 138, 29, 0.14), transparent 20rem),
    linear-gradient(135deg, #02050d, #06152f 50%, #03040a);
}

.footer .footer-bottom,
.footer p,
.footer a { color: rgba(226, 237, 255, 0.82); }
.footer h2 { color: #ffffff; }

@supports not (background: color-mix(in srgb, white, black)) {
  .site-header.scrolled,
  .site-header.menu-open { background: var(--surface-strong); }
  .contact-form input,
  .contact-form textarea,
  .newsletter input { background: var(--surface-strong); }
}

@media (max-width: 780px) {
  .section {
    width: 100%;
    padding-left: max(0.75rem, calc((100vw - 1280px) / 2));
    padding-right: max(0.75rem, calc((100vw - 1280px) / 2));
  }
}
/* === End ICTF theme and section atmosphere upgrade === */

/* === ICTF distinct section effects and footer animation pass === */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(255, 138, 29, 0.2), transparent 24rem),
    radial-gradient(ellipse at 18% 74%, rgba(18, 217, 255, 0.16), transparent 28rem),
    linear-gradient(115deg, transparent 0 54%, rgba(255, 255, 255, 0.08) 54.2% 54.8%, transparent 55% 100%);
  opacity: 0.72;
  mix-blend-mode: screen;
  animation: heroAuroraShift 13s ease-in-out infinite alternate;
}

body.theme-light .hero::before {
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(255, 138, 29, 0.2), transparent 24rem),
    radial-gradient(ellipse at 18% 74%, rgba(10, 72, 215, 0.16), transparent 28rem),
    linear-gradient(115deg, transparent 0 54%, rgba(255, 255, 255, 0.18) 54.2% 54.8%, transparent 55% 100%);
}

.section::before {
  inset: 0;
  z-index: -2;
  opacity: 1;
  filter: none;
  pointer-events: none;
  background-repeat: no-repeat;
  animation-duration: 18s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.about-section::before {
  background:
    linear-gradient(150deg, transparent 0 10%, rgba(255, 138, 29, 0.13) 10% 34%, transparent 34.4% 100%),
    radial-gradient(ellipse at 14% 74%, rgba(18, 217, 255, 0.18), transparent 24rem),
    radial-gradient(ellipse at 90% 24%, rgba(255, 138, 29, 0.14), transparent 22rem);
  animation-name: softPanelFloat;
}

.curriculum-section::before {
  background:
    radial-gradient(ellipse at 18% 50%, rgba(18, 217, 255, 0.16), transparent 22rem),
    radial-gradient(ellipse at 82% 50%, rgba(255, 138, 29, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.055));
  animation-name: splitGlowBreathe;
}

#features::before {
  background:
    radial-gradient(ellipse at 22% 18%, rgba(255, 138, 29, 0.13), transparent 20rem),
    radial-gradient(ellipse at 70% 62%, rgba(18, 217, 255, 0.18), transparent 25rem),
    linear-gradient(160deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 42.2% 42.8%, transparent 43% 100%);
  animation-name: diagonalWash;
}

#facilities::before {
  background:
    radial-gradient(ellipse at 50% -8%, rgba(255, 138, 29, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 32%),
    linear-gradient(135deg, transparent 0 62%, rgba(18, 217, 255, 0.1) 62.2% 78%, transparent 78.4% 100%);
  animation-name: galleryGlow;
}

.courses-section::before {
  background:
    radial-gradient(ellipse at 12% 20%, rgba(18, 217, 255, 0.18), transparent 24rem),
    radial-gradient(ellipse at 88% 76%, rgba(255, 138, 29, 0.16), transparent 24rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.045));
  animation-name: courseRibbon;
}

.stats-section::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(18, 217, 255, 0.2), transparent 26rem),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 138, 29, 0.11) 18.2% 32%, transparent 32.2% 68%, rgba(18, 217, 255, 0.09) 68.2% 82%, transparent 82.2% 100%);
  animation-name: statsSpotlight;
}

#strategic-makers::before {
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255, 138, 29, 0.18), transparent 20rem),
    radial-gradient(ellipse at 18% 82%, rgba(18, 217, 255, 0.14), transparent 20rem),
    radial-gradient(ellipse at 82% 82%, rgba(18, 217, 255, 0.12), transparent 20rem);
  animation-name: leadershipStage;
}

.contact-section::before {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(18, 217, 255, 0.2), transparent 24rem),
    linear-gradient(140deg, rgba(255, 138, 29, 0.12), transparent 30%, transparent 70%, rgba(18, 217, 255, 0.1)),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.045));
  animation-name: contactFlow;
}

body.theme-light .section::before {
  opacity: 0.74;
}

body.theme-light .about-section::before {
  background:
    linear-gradient(150deg, transparent 0 10%, rgba(255, 138, 29, 0.12) 10% 34%, transparent 34.4% 100%),
    radial-gradient(ellipse at 14% 74%, rgba(10, 72, 215, 0.14), transparent 24rem),
    radial-gradient(ellipse at 90% 24%, rgba(255, 138, 29, 0.13), transparent 22rem);
}

body.theme-light .curriculum-section::before {
  background:
    radial-gradient(ellipse at 18% 50%, rgba(10, 72, 215, 0.13), transparent 22rem),
    radial-gradient(ellipse at 82% 50%, rgba(255, 138, 29, 0.13), transparent 22rem),
    linear-gradient(90deg, rgba(10, 72, 215, 0.045), transparent 28%, transparent 72%, rgba(255, 138, 29, 0.055));
}

body.theme-light #features::before {
  background:
    radial-gradient(ellipse at 22% 18%, rgba(255, 138, 29, 0.12), transparent 20rem),
    radial-gradient(ellipse at 70% 62%, rgba(10, 72, 215, 0.14), transparent 25rem),
    linear-gradient(160deg, transparent 0 42%, rgba(10, 72, 215, 0.07) 42.2% 42.8%, transparent 43% 100%);
}

body.theme-light #facilities::before {
  background:
    radial-gradient(ellipse at 50% -8%, rgba(255, 138, 29, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(10, 72, 215, 0.045), transparent 32%),
    linear-gradient(135deg, transparent 0 62%, rgba(10, 72, 215, 0.09) 62.2% 78%, transparent 78.4% 100%);
}

body.theme-light .courses-section::before {
  background:
    radial-gradient(ellipse at 12% 20%, rgba(10, 72, 215, 0.14), transparent 24rem),
    radial-gradient(ellipse at 88% 76%, rgba(255, 138, 29, 0.13), transparent 24rem),
    linear-gradient(120deg, rgba(10, 72, 215, 0.045), transparent 26%, transparent 74%, rgba(255, 138, 29, 0.055));
}

body.theme-light .stats-section::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10, 72, 215, 0.14), transparent 26rem),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 138, 29, 0.1) 18.2% 32%, transparent 32.2% 68%, rgba(10, 72, 215, 0.08) 68.2% 82%, transparent 82.2% 100%);
}

body.theme-light #strategic-makers::before {
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255, 138, 29, 0.13), transparent 20rem),
    radial-gradient(ellipse at 18% 82%, rgba(10, 72, 215, 0.1), transparent 20rem),
    radial-gradient(ellipse at 82% 82%, rgba(10, 72, 215, 0.1), transparent 20rem);
}

body.theme-light .contact-section::before {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(10, 72, 215, 0.13), transparent 24rem),
    linear-gradient(140deg, rgba(255, 138, 29, 0.11), transparent 30%, transparent 70%, rgba(10, 72, 215, 0.08)),
    linear-gradient(180deg, transparent, rgba(10, 72, 215, 0.045));
}

.glass-card,
.feature-card,
.curriculum-card,
.course-card,
.stat-card,
.profile-card,
.contact-form,
.contact-panel {
  transform: translateZ(0);
}

.glass-card:hover i,
.feature-card:hover i,
.curriculum-card:hover > i {
  animation: iconLift 0.72s ease both;
}

.stat-card:hover strong {
  animation: numberGlow 0.8s ease both;
}

.footer {
  isolation: isolate;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer::before {
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 78%, rgba(18, 217, 255, 0.14), transparent 22rem),
    radial-gradient(ellipse at 82% 20%, rgba(255, 138, 29, 0.17), transparent 20rem),
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.07) 46.2% 46.7%, transparent 47% 100%);
  animation: footerSoftFlow 10s ease-in-out infinite alternate;
}

.footer::after {
  z-index: 0;
  background: radial-gradient(circle at var(--footer-x, 82%) var(--footer-y, 18%), rgba(255, 138, 29, 0.18), transparent 18rem);
  opacity: 0.8;
  transition: background 0.3s ease;
}

.footer-grid,
.footer-bottom,
.footer-bg-text {
  position: relative;
  z-index: 1;
}

.footer-logo {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.footer section:first-child:hover .footer-logo {
  transform: translateY(-6px) scale(1.035);
  filter: drop-shadow(0 0 28px rgba(255, 138, 29, 0.36)) drop-shadow(0 0 20px rgba(18, 217, 255, 0.24));
}

.footer section:not(:first-child) a,
.footer-bottom a {
  position: relative;
  width: fit-content;
  padding: 0.1rem 0;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.footer section:not(:first-child) a::before,
.footer-bottom a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.footer section:not(:first-child) a:hover,
.footer-bottom a:hover {
  color: #ffffff;
  transform: translateX(8px);
  text-shadow: 0 0 18px rgba(18, 217, 255, 0.62);
}

.footer section:not(:first-child) a:hover::before,
.footer-bottom a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.footer .social-row a {
  overflow: hidden;
}

.footer .social-row a::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  transition: height 0.28s ease;
  z-index: -1;
}

.footer .social-row a:hover {
  color: #06101f;
  border-color: transparent;
  transform: translateY(-6px) rotate(8deg) scale(1.04);
}

.footer .social-row a:hover::before {
  height: 100%;
}

.newsletter input {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.newsletter input:focus {
  border-color: rgba(18, 217, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(18, 217, 255, 0.12), 0 0 28px rgba(18, 217, 255, 0.16);
  transform: translateY(-2px);
}

.newsletter button {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%);
  transition: transform 0.45s ease;
}

.newsletter button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 34px rgba(255, 138, 29, 0.28);
}

.newsletter button:hover::before {
  transform: translateX(130%);
}

.footer-bg-text {
  animation: footerWatermark 7s ease-in-out infinite alternate;
}

@keyframes heroAuroraShift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: 0.58; }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.04); opacity: 0.82; }
}

@keyframes softPanelFloat {
  from { transform: translateX(-1.5%) translateY(0); }
  to { transform: translateX(1.5%) translateY(-1.2%); }
}

@keyframes splitGlowBreathe {
  from { opacity: 0.62; transform: scale(0.99); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes diagonalWash {
  from { transform: translateX(-2%); opacity: 0.68; }
  to { transform: translateX(2%); opacity: 1; }
}

@keyframes galleryGlow {
  from { transform: translateY(-1.5%); opacity: 0.66; }
  to { transform: translateY(1.5%); opacity: 1; }
}

@keyframes courseRibbon {
  from { transform: translate3d(-1%, 1%, 0); opacity: 0.68; }
  to { transform: translate3d(1%, -1%, 0); opacity: 1; }
}

@keyframes statsSpotlight {
  from { opacity: 0.6; filter: saturate(0.9); }
  to { opacity: 1; filter: saturate(1.22); }
}

@keyframes leadershipStage {
  from { transform: translateY(1%) scale(0.99); opacity: 0.7; }
  to { transform: translateY(-1%) scale(1.03); opacity: 1; }
}

@keyframes leadershipTitleGlow {
  from { text-shadow: 0 18px 60px rgba(18, 217, 255, 0.14); }
  to { text-shadow: 0 18px 70px rgba(255, 138, 29, 0.18), 0 0 34px rgba(18, 217, 255, 0.12); }
}

@keyframes leadershipCardEnter {
  0% {
    opacity: 0;
    transform: translateY(42px) rotateX(8deg) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes portraitPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(18, 217, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 34px rgba(255, 138, 29, 0.2), 0 0 52px rgba(18, 217, 255, 0.12);
  }
}

@keyframes contactFlow {
  from { transform: translateX(-1.4%); opacity: 0.68; }
  to { transform: translateX(1.4%); opacity: 1; }
}

@keyframes iconLift {
  0% { transform: translateY(0) rotate(0deg); }
  45% { transform: translateY(-8px) rotate(-4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes numberGlow {
  0% { text-shadow: 0 0 28px rgba(18, 217, 255, 0.55); }
  50% { text-shadow: 0 0 44px rgba(255, 138, 29, 0.58), 0 0 28px rgba(18, 217, 255, 0.55); }
  100% { text-shadow: 0 0 28px rgba(18, 217, 255, 0.55); }
}

@keyframes footerSoftFlow {
  from { transform: translate3d(-1.5%, 0, 0); opacity: 0.62; }
  to { transform: translate3d(1.5%, -1%, 0); opacity: 1; }
}

@keyframes footerWatermark {
  from { opacity: 0.58; transform: translateY(0); }
  to { opacity: 1; transform: translateY(10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .section::before,
  .footer::before,
  .footer-bg-text {
    animation: none !important;
  }
}
/* === End ICTF distinct section effects and footer animation pass === */

/* === ICTF reference footer style === */
.footer {
  min-height: 560px;
  padding: clamp(4.5rem, 7vw, 6.8rem) max(1rem, calc((100vw - 1580px) / 2)) 1.9rem;
  background:
    radial-gradient(ellipse at 72% 12%, rgba(18, 217, 255, 0.16), transparent 28rem),
    radial-gradient(ellipse at 18% 86%, rgba(10, 72, 215, 0.14), transparent 26rem),
    linear-gradient(180deg, #06162c 0%, #07142a 48%, #051126 100%);
  border-top: 1px solid rgba(115, 161, 220, 0.22);
  color: #ffffff;
}

.footer::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at var(--footer-x, 76%) var(--footer-y, 18%), rgba(255, 138, 29, 0.18), transparent 16rem);
  background-size: 70px 70px, 70px 70px, auto;
  mask-image: linear-gradient(to bottom, black 0, transparent 50%);
  animation: footerGridDrift 12s ease-in-out infinite alternate;
}

.footer::after {
  z-index: 0;
  background:
    radial-gradient(circle at var(--footer-x, 84%) var(--footer-y, 22%), rgba(255, 138, 29, 0.28), transparent 14rem),
    radial-gradient(circle at calc(var(--footer-x, 84%) - 18%) calc(var(--footer-y, 22%) + 18%), rgba(18, 217, 255, 0.18), transparent 18rem);
  opacity: 0.76;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.footer-bg-text {
  left: 50%;
  right: auto;
  top: 2.2rem;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(11rem, 25vw, 24rem);
  line-height: 0.78;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.045);
  animation: footerWatermarkFloat 7s ease-in-out infinite alternate;
}

.footer-grid {
  grid-template-columns: minmax(340px, 1.6fr) minmax(150px, 0.75fr) minmax(190px, 0.85fr) minmax(260px, 1fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: start;
}

.footer section {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.footer section:hover {
  transform: translateY(-6px);
}

.footer-logo {
  width: 178px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 18px rgba(18, 217, 255, 0.28));
}

.footer p {
  max-width: 500px;
  color: #bdcbe2;
  font-size: 1.08rem;
  line-height: 1.85;
}

.footer h2,
.newsletter label {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 850;
  margin-bottom: 1.25rem;
}

.footer section:not(:first-child) a {
  display: block;
  margin: 0.95rem 0;
  color: rgba(230, 238, 250, 0.82);
  font-weight: 800;
}

.footer section:not(:first-child) a:hover,
.footer-bottom a:hover {
  color: #ffffff;
  transform: translateX(10px);
  text-shadow: 0 0 18px rgba(18, 217, 255, 0.72);
}

.footer section:not(:first-child) a::after {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: translateY(-50%) scale(0.2);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.footer section:not(:first-child) a:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.footer .social-row {
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.55rem;
}

.footer .social-row a {
  width: 54px;
  height: 54px;
  position: relative;
  color: #d5dfef;
  border: 1px solid rgba(213, 223, 239, 0.24);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.footer .social-row a::before {
  height: 100%;
  opacity: 0;
  background: linear-gradient(135deg, var(--orange), #ffe07c 48%, var(--cyan));
  transform: scale(0.2) rotate(-18deg);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.footer .social-row a:hover {
  color: #061126;
  transform: translateY(-8px) rotate(0deg) scale(1.08);
  box-shadow: 0 18px 38px rgba(18, 217, 255, 0.22), 0 10px 28px rgba(255, 138, 29, 0.2);
}

.footer .social-row a:hover::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.newsletter {
  margin-top: 1.45rem;
}

.newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  gap: 0.65rem;
  align-items: stretch;
}

.newsletter input {
  height: 68px;
  border-radius: 18px;
  padding: 0 1.35rem;
  background: rgba(2, 10, 24, 0.72);
  border: 1px solid rgba(190, 211, 238, 0.22);
  color: #ffffff;
  font-size: 1rem;
}

.newsletter input:hover,
.newsletter input:focus {
  border-color: rgba(18, 217, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(18, 217, 255, 0.1), 0 18px 42px rgba(18, 217, 255, 0.12);
}

.newsletter button {
  width: 56px;
  min-height: 68px;
  border-radius: 18px;
  color: #071126;
  background: linear-gradient(135deg, #ff8a1d, #ffa52f);
  box-shadow: 0 16px 34px rgba(255, 138, 29, 0.28);
}

.newsletter button:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 22px 44px rgba(255, 138, 29, 0.36), 0 0 26px rgba(18, 217, 255, 0.15);
}

.footer-bottom {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.55rem;
  border-top: 1px solid rgba(190, 211, 238, 0.18);
  color: #bdcbe2;
  font-size: 1rem;
}

.footer-bottom > span:first-child {
  display: grid;
  gap: 0.35rem;
}

.dev-credit {
  display: inline-block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.dev-credit:hover {
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 138, 29, 0.4);
  transform: translateX(6px);
}

.back-to-top {
  width: 64px;
  height: 64px;
  right: 1.55rem;
  bottom: 1.55rem;
  border: 0;
  color: #061126;
  background: linear-gradient(135deg, #ffd56a, #ff8a1d 42%, #12d9ff 100%);
  box-shadow: 0 18px 42px rgba(18, 217, 255, 0.18), 0 12px 34px rgba(255, 138, 29, 0.22);
}

.back-to-top.show {
  animation: backToTopFloat 2.6s ease-in-out infinite;
}

.back-to-top:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 24px 52px rgba(18, 217, 255, 0.28), 0 14px 40px rgba(255, 138, 29, 0.34);
}

@keyframes footerGridDrift {
  from { background-position: 0 0, 0 0, center; opacity: 0.56; }
  to { background-position: 36px -28px, -24px 32px, center; opacity: 0.92; }
}

@keyframes footerWatermarkFloat {
  from { opacity: 0.65; transform: translateX(-50%) translateY(0); }
  to { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

@keyframes backToTopFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .footer {
    min-height: auto;
    padding-top: 4rem;
  }

  .footer-bg-text {
    font-size: clamp(7rem, 35vw, 12rem);
    top: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-bottom {
    gap: 1rem;
  }

  .newsletter div {
    grid-template-columns: minmax(0, 1fr) 56px;
  }
}
/* === End ICTF reference footer style === */

/* === ICTF final footer reference polish === */
.footer {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(4.8rem, 7vw, 6.5rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(ellipse at 73% 18%, rgba(18, 217, 255, 0.14), transparent 28rem),
    linear-gradient(180deg, #07172e 0%, #06142a 48%, #051126 100%);
  background-size: 70px 70px, 70px 70px, auto, auto;
}

.footer-bg-text {
  top: 2.8rem;
  font-size: clamp(13rem, 29vw, 26rem);
  color: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 48px rgba(18, 217, 255, 0.08);
}

.footer-grid {
  width: min(1580px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(360px, 1.7fr) minmax(150px, 0.72fr) minmax(220px, 0.88fr) minmax(300px, 1fr);
}

.footer section:first-child {
  padding-top: 0.2rem;
}

.footer-logo {
  width: 172px;
}

.footer h2,
.newsletter label {
  font-size: 1.12rem;
  letter-spacing: 0;
}

.footer section:not(:first-child) a {
  width: fit-content;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.25;
}

.footer section:not(:first-child) a::before,
.footer-bottom a::before {
  bottom: -0.32rem;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.footer section:not(:first-child) a:hover,
.footer-bottom a:hover {
  transform: translateX(12px);
}

.footer .social-row a i,
.newsletter button i,
.back-to-top i {
  position: relative;
  z-index: 1;
}

.footer .social-row a:hover i {
  animation: footerIconPop 0.45s ease both;
}

.newsletter button:hover i {
  animation: footerArrowSlide 0.5s ease both;
}

.footer-bottom {
  width: min(1580px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.dev-credit {
  color: rgba(226, 237, 255, 0.9);
}

.dev-credit::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  box-shadow: 0 0 14px rgba(18, 217, 255, 0.36);
  vertical-align: 0.08em;
}

@keyframes footerIconPop {
  0% { transform: scale(1) rotate(0); }
  55% { transform: scale(1.2) rotate(-8deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes footerArrowSlide {
  0% { transform: translateX(0); }
  45% { transform: translateX(7px); opacity: 0; }
  46% { transform: translateX(-7px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .footer {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* === End ICTF final footer reference polish === */

/* === ICTF alternative clean footer design === */
.footer {
  min-height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) max(1rem, calc((100vw - 1320px) / 2)) 1.5rem;
  color: #ffffff;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(18, 217, 255, 0.14), transparent 24rem),
    radial-gradient(ellipse at 88% 84%, rgba(255, 138, 29, 0.16), transparent 22rem),
    linear-gradient(145deg, #020712 0%, #071a34 48%, #020611 100%);
  border-top: 1px solid rgba(18, 217, 255, 0.18);
  isolation: isolate;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.footer::before {
  left: -8%;
  right: -8%;
  top: -4.5rem;
  height: 10rem;
  background:
    radial-gradient(ellipse at center, rgba(18, 217, 255, 0.22), transparent 68%),
    linear-gradient(90deg, transparent, rgba(255, 138, 29, 0.22), transparent);
  transform: rotate(-1deg);
  animation: footerWaveGlow 7s ease-in-out infinite alternate;
}

.footer::after {
  width: 22rem;
  height: 22rem;
  right: max(-8rem, -8vw);
  bottom: -9rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--footer-x, 60%) var(--footer-y, 45%), rgba(255, 138, 29, 0.26), transparent 42%),
    radial-gradient(circle, rgba(18, 217, 255, 0.2), transparent 70%);
  filter: blur(2px);
  animation: footerOrbDrift 8s ease-in-out infinite alternate;
}

.footer-bg-text {
  left: auto;
  right: max(1rem, calc((100vw - 1320px) / 2));
  top: 2rem;
  width: auto;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.8;
  text-align: right;
  color: rgba(255, 255, 255, 0.035);
  text-shadow: none;
  transform: none;
  animation: footerMarkPulse 6s ease-in-out infinite alternate;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(170px, 1fr));
  gap: clamp(1.3rem, 3vw, 2.4rem);
  align-items: stretch;
}

.footer section {
  position: relative;
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.footer section:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 217, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), 0 0 28px rgba(18, 217, 255, 0.08);
}

.footer-logo {
  width: 160px;
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 0 16px rgba(18, 217, 255, 0.28));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.footer section:first-child:hover .footer-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 24px rgba(255, 138, 29, 0.28)) drop-shadow(0 0 16px rgba(18, 217, 255, 0.22));
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(221, 233, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.footer h2,
.newsletter label {
  display: block;
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
}

.footer h2::after,
.newsletter label::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transition: width 0.28s ease;
}

.footer section:hover h2::after,
.footer section:hover .newsletter label::after {
  width: 3.8rem;
}

.footer section:not(:first-child) a,
.footer-bottom a {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0.78rem 0;
  padding-left: 0;
  color: rgba(226, 237, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 0.24s ease, transform 0.24s ease, padding-left 0.24s ease, text-shadow 0.24s ease;
}

.footer section:not(:first-child) a::before,
.footer-bottom a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%);
  transition: width 0.24s ease;
}

.footer section:not(:first-child) a::after {
  display: none;
}

.footer section:not(:first-child) a:hover,
.footer-bottom a:hover {
  padding-left: 1rem;
  color: #ffffff;
  transform: translateX(0);
  text-shadow: 0 0 18px rgba(18, 217, 255, 0.42);
}

.footer section:not(:first-child) a:hover::before,
.footer-bottom a:hover::before {
  width: 0.55rem;
}

.footer .social-row {
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.footer .social-row a {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: rgba(226, 237, 255, 0.82);
  border: 1px solid rgba(226, 237, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  transition: transform 0.26s ease, color 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.footer .social-row a::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  transform: translateY(100%);
  transition: transform 0.28s ease, opacity 0.28s ease;
  z-index: -1;
}

.footer .social-row a:hover {
  color: #061126;
  border-color: transparent;
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 34px rgba(18, 217, 255, 0.16), 0 12px 28px rgba(255, 138, 29, 0.18);
}

.footer .social-row a:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.footer .social-row a:hover i {
  animation: footerIconPop 0.45s ease both;
}

.newsletter {
  margin-top: 1.15rem;
}

.newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 0.6rem;
}

.newsletter input {
  height: 54px;
  min-width: 0;
  border-radius: 14px;
  padding: 0 1rem;
  color: #ffffff;
  background: rgba(2, 8, 20, 0.68);
  border: 1px solid rgba(226, 237, 255, 0.14);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.newsletter input:hover,
.newsletter input:focus {
  background: rgba(2, 8, 20, 0.86);
  border-color: rgba(18, 217, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(18, 217, 255, 0.1);
}

.newsletter button {
  width: 52px;
  min-height: 54px;
  border-radius: 14px;
  color: #061126;
  background: linear-gradient(135deg, #ff8a1d, #ffc55d);
  box-shadow: 0 14px 32px rgba(255, 138, 29, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.newsletter button:hover {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 0 20px 40px rgba(255, 138, 29, 0.32), 0 0 22px rgba(18, 217, 255, 0.14);
}

.newsletter button:hover i {
  animation: footerArrowSlide 0.5s ease both;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding: 1.2rem 1.35rem 0;
  border-top: 1px solid rgba(226, 237, 255, 0.12);
  color: rgba(221, 233, 255, 0.72);
  font-size: 0.94rem;
}

.footer-bottom > span:first-child {
  display: grid;
  gap: 0.34rem;
}

.dev-credit {
  display: inline-block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  transition: color 0.24s ease, text-shadow 0.24s ease, transform 0.24s ease;
}

.dev-credit::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  box-shadow: 0 0 12px rgba(18, 217, 255, 0.36);
  vertical-align: 0.08em;
}

.dev-credit:hover {
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 138, 29, 0.36);
  transform: translateX(4px);
}

@keyframes footerWaveGlow {
  from { transform: translateX(-2%) rotate(-1deg); opacity: 0.55; }
  to { transform: translateX(2%) rotate(1deg); opacity: 0.92; }
}

@keyframes footerOrbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.62; }
  to { transform: translate3d(-2rem, -1rem, 0) scale(1.08); opacity: 0.92; }
}

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

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .footer {
    padding-top: 3.4rem;
  }

  .footer-bg-text {
    top: 1.5rem;
    right: 1rem;
    font-size: clamp(4.5rem, 28vw, 8rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }
}
/* === End ICTF alternative clean footer design === */

/* === ICTF minimal premium footer redesign === */
.footer {
  min-height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 4.5rem max(1rem, calc((100vw - 1280px) / 2)) 1.35rem;
  color: #ffffff;
  background:
    linear-gradient(180deg, #06152f 0%, #030814 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), var(--cyan), transparent);
  background-size: 240% 100%;
  animation: footerTopLine 5s linear infinite;
}

.footer::after {
  content: "";
  position: absolute;
  right: -14rem;
  top: -18rem;
  width: 34rem;
  height: 34rem;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 217, 255, 0.12), transparent 68%);
  animation: footerSoftGlow 8s ease-in-out infinite alternate;
}

.footer-bg-text {
  display: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.footer section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.footer section:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.footer-logo {
  width: 170px;
  margin: 0 0 1.2rem;
  filter: drop-shadow(0 0 14px rgba(18, 217, 255, 0.22));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 0 20px rgba(255, 138, 29, 0.26));
}

.footer p {
  max-width: 470px;
  margin: 0;
  color: rgba(226, 237, 255, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.footer h2,
.newsletter label {
  display: block;
  margin: 0 0 1.15rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.footer h2::after,
.newsletter label::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.6rem;
  background: var(--orange);
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}

.footer section:hover h2::after,
.footer section:hover .newsletter label::after {
  width: 3.4rem;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.footer section:not(:first-child) a,
.footer-bottom a {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0.72rem 0;
  padding: 0 0 0.18rem;
  color: rgba(226, 237, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer section:not(:first-child) a::before,
.footer-bottom a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.footer section:not(:first-child) a::after {
  display: none;
}

.footer section:not(:first-child) a:hover,
.footer-bottom a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  padding-left: 0;
  text-shadow: none;
}

.footer section:not(:first-child) a:hover::before,
.footer-bottom a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
  width: auto;
}

.footer .social-row {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.footer .social-row a {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: rgba(226, 237, 255, 0.78);
  border: 1px solid rgba(226, 237, 255, 0.16);
  background: transparent;
  box-shadow: none;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.footer .social-row a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 100%;
  opacity: 0;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  transform: scale(0.75);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer .social-row a:hover {
  color: #061126;
  border-color: transparent;
  background: transparent;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(18, 217, 255, 0.16);
}

.footer .social-row a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.newsletter {
  margin-top: 1.15rem;
}

.newsletter div {
  display: flex;
  gap: 0.55rem;
}

.newsletter input {
  height: 48px;
  min-width: 0;
  border-radius: 999px;
  padding: 0 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(226, 237, 255, 0.14);
  box-shadow: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.newsletter input:hover,
.newsletter input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(18, 217, 255, 0.44);
  box-shadow: none;
}

.newsletter button {
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 999px;
  color: #061126;
  background: var(--orange);
  box-shadow: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.newsletter button:hover {
  transform: translateX(3px) rotate(-8deg);
  background: linear-gradient(135deg, var(--orange), #ffd36c);
  box-shadow: 0 12px 28px rgba(255, 138, 29, 0.26);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 3.2rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(226, 237, 255, 0.12);
  color: rgba(226, 237, 255, 0.7);
  font-size: 0.94rem;
}

.footer-bottom > span:first-child {
  display: grid;
  gap: 0.35rem;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin: 0;
}

.dev-credit {
  display: inline-block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
  transition: color 0.25s ease, transform 0.25s ease;
}

.dev-credit::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: var(--orange);
  vertical-align: 0.08em;
}

.dev-credit:hover {
  color: var(--orange);
  transform: translateY(-2px);
  text-shadow: none;
}

@keyframes footerTopLine {
  to { background-position: 240% 0; }
}

@keyframes footerSoftGlow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.65; }
  to { transform: translate3d(-2rem, 2rem, 0) scale(1.06); opacity: 1; }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .footer {
    padding-top: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .footer-bottom {
    display: grid;
  }
}
/* === End ICTF minimal premium footer redesign === */

/* === ICTF footer hover conflict fix === */
.footer,
.footer * {
  backface-visibility: hidden;
}

.footer section,
.footer section:hover {
  transform: none !important;
}

.footer section:not(:first-child) a,
.footer-bottom a {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-left: 0 !important;
  text-shadow: none !important;
}

.footer section:not(:first-child) a::after,
.footer-bottom a::after {
  content: none !important;
  display: none !important;
}

.footer section:not(:first-child) a::before,
.footer-bottom a::before {
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: -0.14rem !important;
  width: auto !important;
  height: 2px !important;
  opacity: 1 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--orange), var(--cyan)) !important;
  transform: scaleX(0) !important;
  transform-origin: right !important;
  transition: transform 0.25s ease !important;
}

.footer section:not(:first-child) a:hover,
.footer-bottom a:hover {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.footer section:not(:first-child) a:hover::before,
.footer-bottom a:hover::before {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

.footer .social-row a {
  isolation: isolate;
  overflow: hidden !important;
  background: transparent !important;
  transform: translateY(0) scale(1) !important;
}

.footer .social-row a::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  border-radius: inherit !important;
  background: linear-gradient(135deg, var(--orange), var(--cyan)) !important;
  transform: translateY(100%) !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
}

.footer .social-row a i {
  position: relative;
  z-index: 1;
  animation: none !important;
}

.footer .social-row a:hover {
  color: #061126 !important;
  border-color: transparent !important;
  transform: translateY(-5px) scale(1.04) !important;
  box-shadow: 0 12px 28px rgba(18, 217, 255, 0.16) !important;
}

.footer .social-row a:hover::before {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.newsletter button {
  isolation: isolate;
  overflow: hidden !important;
  transform: translateX(0) rotate(0) !important;
}

.newsletter button::before {
  content: none !important;
  display: none !important;
}

.newsletter button i {
  position: relative;
  z-index: 1;
  animation: none !important;
}

.newsletter button:hover {
  transform: translateX(3px) rotate(-8deg) !important;
}

.footer-logo:hover,
.dev-credit:hover {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .footer section:not(:first-child) a,
  .footer-bottom a,
  .footer .social-row a,
  .newsletter button,
  .footer-logo,
  .dev-credit {
    transition: none !important;
  }
}
/* === End ICTF footer hover conflict fix === */

/* === ICTF scrolling usability fix === */
html,
body {
  min-height: 100%;
  overflow-y: auto;
}

html {
  scroll-padding-top: 92px;
  overscroll-behavior-y: contain;
}

body {
  min-width: 320px;
  overflow-x: clip;
}

main,
.footer {
  position: relative;
  z-index: 0;
}

.section,
.hero,
.footer {
  scroll-margin-top: 92px;
}

.mobile-menu {
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 84px;
  }

  .section,
  .hero,
  .footer {
    scroll-margin-top: 84px;
  }

  .mobile-menu {
    max-height: calc(100dvh - 88px);
  }
}
/* === End ICTF scrolling usability fix === */

/* === ICTF clean footer replacement === */
.footer-clean {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) max(1rem, calc((100vw - 1280px) / 2)) 1.4rem !important;
  color: #ffffff !important;
  background:
    linear-gradient(180deg, rgba(6, 21, 47, 0.98) 0%, rgba(2, 7, 18, 1) 100%) !important;
  border-top: 1px solid rgba(18, 217, 255, 0.18) !important;
  box-shadow: none !important;
  isolation: isolate;
}

.footer-clean::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent);
  opacity: 0.9;
}

.footer-clean::after,
.footer-clean .footer-bg-text {
  display: none !important;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.footer-brand-panel,
.footer-clean section {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

.footer-clean .footer-logo {
  width: 150px;
  margin: 0 0 1.1rem !important;
  filter: drop-shadow(0 0 12px rgba(18, 217, 255, 0.2)) !important;
}

.footer-clean p {
  max-width: 520px;
  margin: 0 !important;
  color: rgba(226, 237, 255, 0.76) !important;
  font-size: 1rem;
  line-height: 1.75;
}

.footer-contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-contact-list a,
.footer-contact-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  color: rgba(226, 237, 255, 0.82) !important;
  font-weight: 750;
}

.footer-contact-list i {
  width: 1.1rem;
  color: var(--orange);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.8rem);
}

.footer-clean h2 {
  margin: 0 0 1rem !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-clean h2::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
}

.footer.footer-clean section:hover h2::after {
  width: 2rem !important;
  background: var(--orange) !important;
}

.footer-clean a {
  text-shadow: none !important;
}

.footer-clean .footer-links a {
  position: relative;
  display: block !important;
  width: fit-content;
  margin: 0.68rem 0 !important;
  padding: 0 !important;
  color: rgba(226, 237, 255, 0.72) !important;
  font-size: 0.96rem;
  font-weight: 750;
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-clean .footer-links a::before,
.footer-clean .footer-links a::after,
.footer-clean .footer-bottom a::before,
.footer-clean .footer-bottom a::after {
  content: none !important;
  display: none !important;
}

.footer.footer-clean .footer-links section a,
.footer.footer-clean .footer-links section:not(:first-child) a,
.footer.footer-clean .footer-bottom a {
  padding: 0 !important;
  text-shadow: none !important;
}

.footer.footer-clean .footer-links section a::before,
.footer.footer-clean .footer-links section a::after,
.footer.footer-clean .footer-links section:not(:first-child) a::before,
.footer.footer-clean .footer-links section:not(:first-child) a::after,
.footer.footer-clean .footer-bottom a::before,
.footer.footer-clean .footer-bottom a::after {
  content: none !important;
  display: none !important;
}

.footer-clean .footer-links a:hover,
.footer-contact-list a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.footer-clean .footer-bottom {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  margin: clamp(2.2rem, 5vw, 4rem) 0 0 !important;
  padding: 1.15rem 0 0 !important;
  border-top: 1px solid rgba(226, 237, 255, 0.12) !important;
  color: rgba(226, 237, 255, 0.72) !important;
  font-size: 0.92rem;
}

.footer-clean .footer-credit {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.footer-clean .footer-social {
  justify-content: flex-end !important;
  gap: 0.65rem !important;
  margin: 0 !important;
}

.footer-clean .footer-social a {
  display: grid !important;
  place-items: center;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  border: 1px solid rgba(226, 237, 255, 0.16) !important;
  border-radius: 999px;
  color: rgba(226, 237, 255, 0.84) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease, transform 0.24s ease !important;
}

.footer-clean .footer-social a::before,
.footer-clean .footer-social a::after {
  content: none !important;
  display: none !important;
}

.footer-clean .footer-social a:hover {
  color: #061126 !important;
  border-color: transparent !important;
  background: var(--orange) !important;
  transform: translateY(-4px) !important;
}

@media (max-width: 960px) {
  .footer-shell,
  .footer-clean .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-clean .footer-social {
    justify-content: flex-start !important;
  }
}

@media (max-width: 680px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}
/* === End ICTF clean footer replacement === */

/* === ICTF simple footer replacement === */
.footer.footer-simple {
  position: relative;
  overflow: hidden;
  display: block !important;
  min-height: 0 !important;
  padding: 2.2rem max(1rem, calc((100vw - 1280px) / 2)) 1.15rem !important;
  color: #ffffff !important;
  background: #040a17 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  isolation: isolate;
}

.footer.footer-simple::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--blue));
}

.footer.footer-simple::after,
.footer.footer-simple .footer-bg-text {
  content: none !important;
  display: none !important;
}

.footer-simple-top,
.footer-simple-main,
.footer-simple-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.footer-simple-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-simple-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 950;
  text-shadow: none !important;
}

.footer-simple-brand img {
  width: 92px;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(18, 217, 255, 0.18));
}

.footer-simple-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(0.85rem, 2vw, 1.8rem);
  flex-wrap: wrap;
}

.footer.footer-simple a,
.footer.footer-simple .footer-simple-nav a,
.footer.footer-simple .footer-simple-contact a {
  position: relative;
  width: fit-content;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(226, 237, 255, 0.76) !important;
  font-size: 0.94rem;
  font-weight: 800;
  text-shadow: none !important;
  transform: none !important;
  box-shadow: none !important;
  transition: color 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background 0.22s ease !important;
}

.footer.footer-simple a::before,
.footer.footer-simple a::after {
  content: none !important;
  display: none !important;
}

.footer.footer-simple .footer-simple-nav a:hover,
.footer.footer-simple .footer-simple-contact a:hover {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.footer-simple-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.45rem 0;
}

.footer.footer-simple p {
  max-width: 760px;
  margin: 0 !important;
  color: rgba(226, 237, 255, 0.72) !important;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-simple-contact {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer.footer-simple .footer-simple-contact a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.62rem 0.9rem !important;
  border: 1px solid rgba(226, 237, 255, 0.14) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045) !important;
}

.footer.footer-simple .footer-simple-contact a:last-child {
  color: #08101e !important;
  border-color: transparent !important;
  background: var(--orange) !important;
}

.footer-simple-contact i {
  color: var(--cyan);
}

.footer-simple-contact a:last-child i {
  color: #08101e;
}

.footer-simple-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(226, 237, 255, 0.62);
  font-size: 0.9rem;
}

.footer-simple-social {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0.55rem !important;
  margin: 0 !important;
}

.footer.footer-simple .footer-simple-social a {
  display: grid !important;
  place-items: center;
  width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  color: rgba(226, 237, 255, 0.8) !important;
  border: 1px solid rgba(226, 237, 255, 0.13) !important;
  border-radius: 999px;
  background: transparent !important;
  overflow: hidden !important;
}

.footer.footer-simple .footer-simple-social a:hover {
  color: #08101e !important;
  border-color: transparent !important;
  background: var(--cyan) !important;
  transform: translateY(-3px) !important;
}

@media (max-width: 960px) {
  .footer-simple-top,
  .footer-simple-main,
  .footer-simple-bottom {
    grid-template-columns: 1fr;
  }

  .footer-simple-top {
    display: grid;
  }

  .footer-simple-nav,
  .footer-simple-contact,
  .footer-simple-social {
    justify-content: flex-start !important;
  }
}

@media (max-width: 620px) {
  .footer.footer-simple {
    padding-top: 1.9rem !important;
  }

  .footer-simple-nav,
  .footer-simple-contact {
    display: grid;
    justify-content: stretch !important;
  }

  .footer.footer-simple .footer-simple-contact a {
    width: 100%;
    justify-content: center;
  }
}
/* === End ICTF simple footer replacement === */

/* === ICTF screenshot footer match === */
.footer.footer-reference {
  position: relative;
  display: block !important;
  overflow: hidden;
  min-height: 560px !important;
  padding: 6.6rem max(1rem, calc((100vw - 1580px) / 2)) 1.7rem !important;
  color: #ffffff !important;
  background:
    radial-gradient(ellipse at 70% 16%, rgba(18, 217, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #051227 0%, #081833 50%, #061226 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(18, 217, 255, 0.12) !important;
  isolation: isolate;
}

.footer.footer-reference::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black 0, transparent 58%);
}

.footer.footer-reference::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 8, 18, 0.38));
}

.footer-reference .footer-bg-text,
.footer.footer-reference .footer-bg-text {
  position: absolute !important;
  z-index: 0 !important;
  display: block !important;
  left: 50%;
  top: 0.25rem;
  width: auto !important;
  color: rgba(255, 255, 255, 0.055) !important;
  font-size: clamp(12rem, 25vw, 24rem) !important;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0 !important;
  text-align: center;
  transform: translateX(-50%) !important;
  animation: none !important;
  pointer-events: none;
  user-select: none;
}

.footer-reference-grid,
.footer-reference-bottom {
  position: relative;
  z-index: 1;
  width: min(1580px, 100%);
  margin: 0 auto;
}

.footer-reference-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.3fr) minmax(170px, 0.8fr) minmax(210px, 0.9fr) minmax(310px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.footer.footer-reference section,
.footer.footer-reference nav,
.footer.footer-reference section:hover {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

.footer.footer-reference .footer-logo {
  width: 170px !important;
  margin: 0 0 1.35rem !important;
  filter: none !important;
}

.footer.footer-reference p {
  max-width: 510px;
  margin: 0 !important;
  color: rgba(207, 220, 246, 0.86) !important;
  font-size: 1.25rem;
  line-height: 1.85;
}

.footer.footer-reference h2,
.footer.footer-reference .newsletter label {
  display: block;
  margin: 0 0 1.35rem !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 900;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.footer.footer-reference h2::after,
.footer.footer-reference .newsletter label::after,
.footer.footer-reference section:hover h2::after,
.footer.footer-reference section:hover .newsletter label::after {
  content: none !important;
  display: none !important;
}

.footer.footer-reference a {
  text-shadow: none !important;
}

.footer.footer-reference .footer-column a,
.footer.footer-reference .footer-reference-bottom a {
  position: relative;
  display: block !important;
  width: fit-content;
  margin: 0 0 1.05rem !important;
  padding: 0 !important;
  color: rgba(226, 237, 255, 0.76) !important;
  font-size: 0.98rem;
  font-weight: 900;
  text-shadow: none !important;
  transform: none !important;
  transition: color 0.22s ease, transform 0.22s ease !important;
}

.footer.footer-reference .footer-column a::before,
.footer.footer-reference .footer-column a::after,
.footer.footer-reference .footer-reference-bottom a::before,
.footer.footer-reference .footer-reference-bottom a::after,
.footer.footer-reference .footer-reference-social a::before,
.footer.footer-reference .footer-reference-social a::after {
  content: none !important;
  display: none !important;
}

.footer.footer-reference .footer-column a:hover,
.footer.footer-reference .footer-reference-bottom a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.footer-reference-social {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 1rem !important;
  margin: 1.55rem 0 0 !important;
}

.footer.footer-reference .footer-reference-social a {
  display: grid !important;
  place-items: center;
  width: 53px !important;
  height: 53px !important;
  min-height: 53px !important;
  margin: 0 !important;
  color: rgba(226, 237, 255, 0.78) !important;
  border: 1px solid rgba(226, 237, 255, 0.18) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, transform 0.24s ease !important;
}

.footer.footer-reference .footer-reference-social a:hover {
  color: #061226 !important;
  border-color: transparent !important;
  background: #ff8a1d !important;
  transform: translateY(-4px) !important;
}

.footer.footer-reference .newsletter {
  margin-top: 1.7rem !important;
}

.footer.footer-reference .newsletter div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 0.65rem;
}

.footer.footer-reference .newsletter input {
  width: 100%;
  height: 68px !important;
  min-width: 0;
  padding: 0 1.25rem !important;
  color: #ffffff !important;
  border: 1px solid rgba(226, 237, 255, 0.2) !important;
  border-radius: 18px !important;
  background: rgba(2, 8, 20, 0.55) !important;
  box-shadow: none !important;
  outline: 0;
}

.footer.footer-reference .newsletter input::placeholder {
  color: rgba(226, 237, 255, 0.68);
}

.footer.footer-reference .newsletter button {
  display: grid !important;
  place-items: center;
  width: 48px !important;
  min-width: 48px !important;
  min-height: 68px !important;
  height: 68px !important;
  margin: 0 !important;
  color: #061226 !important;
  border: 0 !important;
  border-radius: 17px !important;
  background: #ff8a1d !important;
  box-shadow: none !important;
  transform: none !important;
  transition: transform 0.24s ease, background 0.24s ease !important;
}

.footer.footer-reference .newsletter button::before,
.footer.footer-reference .newsletter button::after {
  content: none !important;
  display: none !important;
}

.footer.footer-reference .newsletter button i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  animation: none !important;
}

.footer.footer-reference .newsletter button:hover {
  background: #ffad42 !important;
  transform: translateY(-3px) !important;
}

.footer-reference-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3.75rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(226, 237, 255, 0.13);
  color: rgba(207, 220, 246, 0.9);
  font-size: 1.12rem;
}

.footer-reference-bottom > span:last-child {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.footer.footer-reference .footer-reference-bottom a {
  display: inline-flex !important;
  margin: 0 !important;
  color: rgba(226, 237, 255, 0.85) !important;
}

@media (max-width: 1180px) {
  .footer-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .footer.footer-reference {
    min-height: 0 !important;
    padding-top: 4rem !important;
  }

  .footer-reference .footer-bg-text,
  .footer.footer-reference .footer-bg-text {
    top: 1.5rem;
    font-size: clamp(6rem, 32vw, 11rem) !important;
  }

  .footer-reference-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer.footer-reference p {
    font-size: 1.05rem;
  }

  .footer-reference-bottom,
  .footer-reference-bottom > span:last-child {
    display: grid;
    justify-content: start;
  }
}
/* === End ICTF screenshot footer match === */

/* === ICTF CTA footer redesign === */
.footer.footer-cta {
  position: relative;
  display: block !important;
  overflow: hidden;
  min-height: 0 !important;
  padding: 4.5rem max(1rem, calc((100vw - 1280px) / 2)) 1.5rem !important;
  color: #ffffff !important;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(255, 138, 29, 0.16), transparent 22rem),
    radial-gradient(ellipse at 92% 18%, rgba(18, 217, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, #07172f 0%, #020815 100%) !important;
  border-top: 1px solid rgba(18, 217, 255, 0.16) !important;
  box-shadow: none !important;
  isolation: isolate;
}

.footer.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
}

.footer.footer-cta::after,
.footer.footer-cta .footer-bg-text {
  content: none !important;
  display: none !important;
}

.footer-cta-panel,
.footer-cta-grid,
.footer-cta-bottom {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(226, 237, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.footer-cta-panel > div {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.footer.footer-cta .footer-logo {
  width: 132px !important;
  margin: 0 !important;
  filter: drop-shadow(0 0 14px rgba(18, 217, 255, 0.22)) !important;
}

.footer.footer-cta h2,
.footer.footer-cta h3 {
  margin: 0 !important;
  color: #ffffff !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.footer.footer-cta h2 {
  max-width: 680px;
  font-size: clamp(1.55rem, 3vw, 2.8rem) !important;
  line-height: 1.06;
  font-weight: 950;
}

.footer.footer-cta h3 {
  margin-bottom: 1rem !important;
  font-size: 1rem !important;
  font-weight: 900;
}

.footer.footer-cta h2::after,
.footer.footer-cta h3::after,
.footer.footer-cta section:hover h2::after,
.footer.footer-cta section:hover h3::after {
  content: none !important;
  display: none !important;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: 3rem 0 2.2rem;
}

.footer.footer-cta section,
.footer.footer-cta nav,
.footer.footer-cta section:hover {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

.footer.footer-cta p {
  max-width: 520px;
  margin: 0 !important;
  color: rgba(226, 237, 255, 0.76) !important;
  font-size: 1.05rem;
  line-height: 1.8;
}

.footer-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-contact-chips a,
.footer-contact-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.58rem 0.8rem;
  border: 1px solid rgba(226, 237, 255, 0.13);
  border-radius: 999px;
  color: rgba(226, 237, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-contact-chips i {
  color: var(--orange);
}

.footer-cta-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
}

.footer.footer-cta a {
  text-shadow: none !important;
}

.footer.footer-cta .footer-cta-links a,
.footer.footer-cta .footer-cta-bottom a {
  position: relative;
  display: block !important;
  width: fit-content;
  margin: 0 0 0.76rem !important;
  padding: 0 !important;
  color: rgba(226, 237, 255, 0.7) !important;
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: none !important;
  transform: none !important;
  transition: color 0.22s ease, transform 0.22s ease !important;
}

.footer.footer-cta a::before,
.footer.footer-cta a::after {
  content: none !important;
  display: none !important;
}

.footer.footer-cta .footer-cta-links a:hover,
.footer.footer-cta .footer-cta-bottom a:hover,
.footer-contact-chips a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.footer-cta-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(226, 237, 255, 0.12);
  color: rgba(226, 237, 255, 0.68);
  font-size: 0.92rem;
}

.footer-cta-bottom > span:last-child {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer.footer-cta .footer-cta-bottom a {
  display: inline-flex !important;
  margin: 0 !important;
}

.footer-cta-social {
  display: flex !important;
  justify-content: center !important;
  gap: 0.65rem !important;
  margin: 0 !important;
}

.footer.footer-cta .footer-cta-social a {
  display: grid !important;
  place-items: center;
  width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  margin: 0 !important;
  color: rgba(226, 237, 255, 0.78) !important;
  border: 1px solid rgba(226, 237, 255, 0.14) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: none !important;
  transform: none !important;
}

.footer.footer-cta .footer-cta-social a:hover {
  color: #07172f !important;
  border-color: transparent !important;
  background: var(--cyan) !important;
  transform: translateY(-4px) !important;
}

@media (max-width: 980px) {
  .footer-cta-panel,
  .footer-cta-panel > div,
  .footer-cta-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-social {
    justify-content: flex-start !important;
  }
}

@media (max-width: 680px) {
  .footer.footer-cta {
    padding-top: 3rem !important;
  }

  .footer-cta-links {
    grid-template-columns: 1fr;
  }

  .footer-cta-panel .btn {
    width: 100%;
  }
}
/* === End ICTF CTA footer redesign === */




/* === ICTF Footer Reference Redesign === */
html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.footer.footer-reference {
  --footer-x: 82%;
  --footer-y: 18%;
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 5.8rem) max(1rem, calc((100vw - 1540px) / 2 + 2rem)) 1.2rem;
  background:
    radial-gradient(circle at var(--footer-x) var(--footer-y), rgba(0, 208, 255, 0.10), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(0, 170, 255, 0.08), transparent 26rem),
    linear-gradient(180deg, #031327 0%, #020d1d 52%, #010814 100%);
  border-top: 1px solid rgba(31, 174, 255, 0.14);
  isolation: isolate;
}

.footer.footer-reference::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22, 170, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 170, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 82%);
  pointer-events: none;
}

.footer-shell,
.footer-reference-bottom {
  position: relative;
  z-index: 2;
  width: min(1540px, 100%);
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(210px, 1fr));
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: start;
}

.footer-brand-column,
.footer-link-column {
  position: relative;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.footer-brand-title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f6fbff;
}

.footer-brand-subtitle {
  max-width: 420px;
  margin: 0 0 1.35rem;
  color: #12d9ff !important;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: none;
}

.footer-brand-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(228, 239, 255, 0.88) !important;
  font-size: 1.05rem;
  line-height: 1.95;
}

.footer-contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-contact-list a,
.footer-contact-list > span {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
  color: rgba(236, 245, 255, 0.9) !important;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-contact-list a:hover {
  transform: translateX(4px);
  color: #ffffff !important;
}

.footer-contact-list i {
  display: grid;
  place-items: center;
  width: 20px;
  color: #ff5c9f;
}

.footer-social-links {
  justify-content: flex-start !important;
  gap: 0.8rem !important;
  margin-top: 1.8rem !important;
}

.footer.footer-reference .footer-social-links a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 245, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.footer.footer-reference .footer-social-links a:hover {
  transform: translateY(-4px);
  color: #ffffff;
  border-color: rgba(18, 217, 255, 0.28);
  box-shadow: 0 10px 26px rgba(18, 217, 255, 0.16);
}

.footer-link-column h3,
.footer-newsletter-block h3 {
  position: relative;
  margin: 0 0 1.8rem;
  padding-bottom: 1rem;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-link-column h3::after,
.footer-newsletter-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00dcff, #00b8ff);
  box-shadow: 0 0 18px rgba(18, 217, 255, 0.4);
}

.footer.footer-reference .footer-link-column > a {
  display: block;
  width: fit-content;
  margin: 0 0 1rem;
  color: rgba(235, 243, 255, 0.86);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
  transition: transform 0.22s ease, color 0.22s ease, text-shadow 0.22s ease;
}

.footer.footer-reference .footer-link-column > a:hover,
.footer.footer-reference .footer-legal-links a:hover {
  transform: translateX(5px);
  color: #ffffff !important;
  text-shadow: 0 0 16px rgba(18, 217, 255, 0.25);
}

.footer-important-column {
  display: grid;
  gap: 0;
}

.footer-newsletter-block {
  margin-top: 2rem;
}

.footer-newsletter-block p {
  margin: 0 0 1.2rem;
  color: rgba(235, 243, 255, 0.82) !important;
  line-height: 1.8;
}

.newsletter-form {
  display: block;
}

.newsletter-input-wrap {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.22);
  border-radius: 14px;
  background: rgba(3, 14, 30, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.newsletter-input-wrap input {
  flex: 1;
  min-height: 54px;
  padding: 0.9rem 1.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
}

.newsletter-input-wrap input::placeholder {
  color: rgba(236, 244, 255, 0.32);
}

.newsletter-input-wrap button {
  width: 72px;
  border: 0;
  background: linear-gradient(135deg, #ff8a1d, #ff6f1a);
  color: #ffffff;
  font-size: 1.05rem;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.newsletter-input-wrap button:hover {
  transform: translateX(2px);
  filter: brightness(1.05);
}

.footer-anchor-targets {
  position: absolute;
  inset: auto auto 54px 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-anchor-targets span {
  display: block;
  width: 1px;
  height: 1px;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: 1.55rem;
  z-index: 1;
  transform: translateX(-50%);
  font-size: clamp(7rem, 20vw, 18rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0.08em;
  color: rgba(0, 214, 255, 0.055);
  user-select: none;
  pointer-events: none;
}

.footer-reference-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 241, 255, 0.58);
  font-size: 0.95rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.7rem;
}

.footer.footer-reference .footer-legal-links a {
  color: rgba(232, 241, 255, 0.58);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.footer.footer-reference .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.back-to-top {
  right: 1.5rem;
  bottom: 1.5rem;
  width: 58px;
  height: 58px;
  border: 0;
  background: linear-gradient(135deg, #ff8a1d, #ff6f1a);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 28px rgba(255, 122, 29, 0.35);
}

.back-to-top:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10), 0 0 34px rgba(255, 122, 29, 0.55);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .footer-shell {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-important-column {
    grid-column: 1 / -1;
    margin-top: 0.4rem;
  }
}

@media (max-width: 860px) {
  .footer.footer-reference {
    padding-top: 3.5rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .footer-link-column h3,
  .footer-newsletter-block h3 {
    font-size: 1.35rem;
  }

  .footer-reference-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-links {
    justify-content: flex-start;
    gap: 1rem 1.4rem;
  }

  .footer-watermark {
    bottom: 3.4rem;
    font-size: clamp(5rem, 23vw, 11rem);
  }
}

@media (max-width: 560px) {
  .footer-brand-title {
    font-size: 1.75rem;
  }

  .footer-brand-subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .newsletter-input-wrap {
    min-height: 52px;
  }

  .newsletter-input-wrap button {
    width: 64px;
  }
}
/* === End ICTF Footer Reference Redesign === */


/* === Screenshot footer final === */
.screenshot-footer {
  position: relative !important;
  overflow: hidden !important;
  padding: 5.8rem max(1rem, calc((100vw - 1540px) / 2)) 1.4rem !important;
  background: #020913 !important;
  border-top: 1px solid rgba(18, 217, 255, 0.12) !important;
  color: #dce8ff !important;
  min-height: 560px !important;
  box-shadow: none !important;
}
.screenshot-footer::before,
.screenshot-footer::after { content: none !important; display: none !important; }
.screenshot-footer .footer-bg-text {
  position: absolute !important;
  left: 31% !important;
  bottom: 1.35rem !important;
  top: auto !important;
  right: auto !important;
  z-index: 0 !important;
  font-size: clamp(8rem, 15vw, 13.5rem) !important;
  line-height: 0.7 !important;
  font-weight: 950 !important;
  letter-spacing: 0.03em !important;
  color: rgba(18, 217, 255, 0.035) !important;
  transform: none !important;
  pointer-events: none !important;
  user-select: none !important;
}
.screenshot-footer-grid {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 1.55fr) minmax(170px, 1fr) minmax(220px, 1.15fr) minmax(260px, 1.15fr) !important;
  gap: clamp(2rem, 4vw, 4.6rem) !important;
  align-items: start !important;
}
.screenshot-footer section,
.screenshot-footer nav {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}
.screenshot-footer h2,
.screenshot-footer h3 {
  margin: 0 0 1.7rem !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
}
.screenshot-footer .footer-brand-block h2 {
  font-size: 1.55rem !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
}
.screenshot-footer .footer-link-column h3,
.screenshot-footer .screenshot-newsletter h3 {
  position: relative !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  padding-bottom: 1rem !important;
}
.screenshot-footer .footer-link-column h3::after,
.screenshot-footer .screenshot-newsletter h3::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 38px !important;
  height: 3px !important;
  background: var(--cyan) !important;
}
.screenshot-footer .footer-company-name {
  color: var(--cyan) !important;
  font-size: 0.9rem !important;
  line-height: 1.9 !important;
  letter-spacing: 0.13em !important;
  max-width: 360px !important;
}
.screenshot-footer .footer-brand-block p:not(.footer-company-name) {
  max-width: 430px !important;
  color: #c5d7ff !important;
  line-height: 1.9 !important;
  margin: 1.5rem 0 !important;
}
.screenshot-footer .footer-contact-list {
  display: grid !important;
  gap: 1rem !important;
  margin: 2rem 0 !important;
}
.screenshot-footer .footer-contact-list a,
.screenshot-footer .footer-contact-list span,
.screenshot-footer .footer-link-column a,
.screenshot-footer-bottom a {
  color: #c5d7ff !important;
  transition: color 0.22s ease, transform 0.22s ease !important;
  text-shadow: none !important;
}
.screenshot-footer .footer-contact-list i { width: 22px !important; color: #ff4da6 !important; }
.screenshot-footer .footer-link-column a {
  display: block !important;
  width: fit-content !important;
  margin: 0 0 1.25rem !important;
  padding: 0 !important;
  font-size: 1rem !important;
}
.screenshot-footer .footer-link-column a::before,
.screenshot-footer .footer-link-column a::after,
.screenshot-footer-bottom a::before,
.screenshot-footer-bottom a::after { content: none !important; display: none !important; }
.screenshot-footer .footer-link-column a:hover,
.screenshot-footer .footer-contact-list a:hover,
.screenshot-footer-bottom a:hover {
  color: var(--cyan) !important;
  transform: translateX(3px) !important;
}
.screenshot-footer .footer-social-icons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
}
.screenshot-footer .footer-social-icons a {
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.055) !important;
  color: #c5d7ff !important;
}
.screenshot-footer .footer-social-icons a:hover {
  color: #ffffff !important;
  border-color: rgba(18,217,255,0.42) !important;
  box-shadow: 0 0 24px rgba(18,217,255,0.18) !important;
}
.screenshot-footer .screenshot-newsletter { margin-top: 2.15rem !important; }
.screenshot-footer .screenshot-newsletter p { color: #c5d7ff !important; line-height: 1.8 !important; margin: 0 !important; }
.screenshot-footer .screenshot-newsletter form {
  display: grid !important;
  grid-template-columns: 1fr 72px !important;
  margin-top: 1rem !important;
  border: 1px solid rgba(18,217,255,0.22) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,0.045) !important;
}
.screenshot-footer .screenshot-newsletter input {
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  padding: 0 1.2rem !important;
}
.screenshot-footer .screenshot-newsletter button {
  width: auto !important;
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(135deg, #ff8a1d, #ff5f1f) !important;
  color: #ffffff !important;
  cursor: pointer !important;
}
.screenshot-footer-bottom {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  margin-top: 4.8rem !important;
  padding-top: 1.8rem !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(197,215,255,0.62) !important;
  font-size: 0.9rem !important;
}
.screenshot-footer-bottom nav {
  display: flex !important;
  gap: clamp(1rem, 2vw, 2rem) !important;
  flex-wrap: wrap !important;
}
body.theme-light .screenshot-footer,
body.theme-light .screenshot-footer h2,
body.theme-light .screenshot-footer h3 { color: #ffffff !important; }
@media (max-width: 1180px) {
  .screenshot-footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 720px) {
  .screenshot-footer { padding-top: 4rem !important; min-height: 0 !important; }
  .screenshot-footer-grid { grid-template-columns: 1fr !important; gap: 2.25rem !important; }
  .screenshot-footer .footer-bg-text { left: 1rem !important; font-size: 7rem !important; }
  .screenshot-footer-bottom { display: grid !important; }
  .screenshot-footer-bottom nav { gap: 0.9rem 1.2rem !important; }
}
/* === End screenshot footer final === */


/* Footer Full Width Update */
.footer{
    width:100%;
    max-width:100%;
    padding-left:40px !important;
    padding-right:40px !important;
}

.footer-grid{
    width:100%;
    max-width:1600px;
    margin:0 auto;
}

@media(max-width:768px){
    .footer{
        padding-left:20px !important;
        padding-right:20px !important;
    }
}


/* Footer aligned with main content width */
.footer{
    padding-left:max(1rem, calc((100vw - 1280px) / 2)) !important;
    padding-right:max(1rem, calc((100vw - 1280px) / 2)) !important;
}

.footer-grid,
.footer-bottom{
    max-width:1280px;
    margin-left:auto;
    margin-right:auto;
}


/* Header content spacing + hover text effects */
.nav-shell{
  width:min(1280px, calc(100% - 2rem)) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.desktop-nav a,
.brand strong,
.brand small{
  position:relative;
  transition:color .25s ease, text-shadow .25s ease, transform .25s ease;
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-8px;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--orange), var(--cyan));
  transform:translateX(-50%);
  transition:width .28s ease;
  box-shadow:0 0 14px rgba(18,217,255,.8);
}

.desktop-nav a:hover{
  color:var(--cyan) !important;
  text-shadow:0 0 18px rgba(18,217,255,.9);
  transform:translateY(-2px);
}

.desktop-nav a:hover::after{
  width:100%;
}

.brand:hover strong{
  color:var(--cyan);
  text-shadow:0 0 20px rgba(18,217,255,.85);
}

.brand:hover small{
  color:var(--orange);
}

.brand:hover .brand-logo{
  transform:scale(1.05);
  filter:drop-shadow(0 0 22px rgba(18,217,255,.65));
}

.brand-logo{
  transition:transform .25s ease, filter .25s ease;
}

/* Footer logo */
.footer-logo-img{
  width:220px;
  max-height:90px;
  object-fit:contain;
  margin-bottom:1.25rem;
  filter:drop-shadow(0 0 18px rgba(18,217,255,.36));
}

.footer section:first-child h2{
  margin-top:.25rem;
}

@media(max-width:1180px){
  .nav-shell{
    width:min(1280px, calc(100% - 2rem)) !important;
  }
}

@media(max-width:780px){
  .nav-shell{
    width:calc(100% - 1.2rem) !important;
  }
  .footer-logo-img{
    width:180px;
  }
}

/* Active section navigation state */
.desktop-nav a.active-link,
.mobile-menu a.active-link {
  color: var(--cyan) !important;
  text-shadow: 0 0 18px rgba(18, 217, 255, 0.72);
}

.desktop-nav a.active-link::after {
  width: 100% !important;
}

.mobile-menu a.active-link {
  background: rgba(18, 217, 255, 0.10);
  box-shadow: inset 3px 0 0 var(--orange);
}

body.theme-light .site-header.scrolled .desktop-nav a.active-link,
body.theme-light .site-header.menu-open .desktop-nav a.active-link,
body.theme-light .mobile-menu a.active-link {
  color: #0a48d7 !important;
  text-shadow: none;
}

/* Full-view embedded contact map */
.map-placeholder {
  min-height: clamp(320px, 42vw, 520px) !important;
  display: block !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid rgba(18, 217, 255, 0.24) !important;
  border-radius: 20px !important;
  background: rgba(2, 5, 13, 0.35) !important;
}

.map-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
}

.map-wrapper iframe,
.map-placeholder iframe {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  border: 0 !important;
}

@media (max-width: 780px) {
  .map-placeholder {
    min-height: 360px !important;
  }
}


/* Mobile menu logo visibility fix */
@media (max-width: 1180px){
  .site-header.menu-open .brand-logo{
    filter: drop-shadow(0 0 12px rgba(0,0,0,.12));
  }

  .site-header.menu-open .brand strong{
    /* color:#071327 !important; */
    text-shadow:none !important;
  }

  .site-header.menu-open .brand small{
    color:#425575 !important;
  }
}

/* Strategic Makers animated background + profile effects */
#strategic-makers {
  overflow: hidden;
  isolation: isolate;
}

#strategic-makers::before,
#strategic-makers::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none;
}

#strategic-makers::before {
  inset: 0 -9vw !important;
  z-index: -3 !important;
  opacity: 0.96 !important;
  background:
    radial-gradient(circle at 12% 22%, rgba(18, 217, 255, 0.26), transparent 17rem),
    radial-gradient(circle at 82% 18%, rgba(255, 138, 29, 0.22), transparent 16rem),
    radial-gradient(circle at 50% 102%, rgba(10, 72, 215, 0.30), transparent 24rem),
    linear-gradient(135deg, #030a18 0%, #081833 48%, #040814 100%) !important;
  background-size: 140% 140%, 130% 130%, 120% 120%, auto !important;
  animation: strategicAurora 12s ease-in-out infinite alternate !important;
}

#strategic-makers::after {
  inset: 0 -6vw !important;
  z-index: -2 !important;
  opacity: 0.62 !important;
  background:
    linear-gradient(90deg, rgba(18, 217, 255, 0.085) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle, rgba(18, 217, 255, 0.55) 0 1px, transparent 2px),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 138, 29, 0.16) 42.2% 42.8%, transparent 43% 100%);
  background-size: 84px 84px, 84px 84px, 150px 150px, 100% 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 88%, transparent 100%);
  animation: strategicGridDrift 18s linear infinite !important;
}

#strategic-makers .section-heading::before,
#strategic-makers .section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  pointer-events: none;
  transform: translateX(-50%);
}

#strategic-makers .section-heading::before {
  top: -2.4rem;
  width: min(720px, 92vw);
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12), transparent 68%);
  filter: blur(18px);
  animation: strategicHeadingHalo 5.5s ease-in-out infinite alternate;
}

#strategic-makers .section-heading::after {
  bottom: -1.1rem;
  width: min(360px, 62vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
  box-shadow: 0 0 24px rgba(18, 217, 255, 0.55);
  animation: strategicLineScan 2.7s ease-in-out infinite;
}

#strategic-makers .profile-grid {
  position: relative;
  z-index: 2;
}

#strategic-makers .profile-grid::before {
  content: "";
  position: absolute;
  inset: -2rem -1rem;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 50%, rgba(18, 217, 255, 0.16), transparent 19rem),
    radial-gradient(circle at 80% 50%, rgba(255, 138, 29, 0.13), transparent 18rem);
  filter: blur(8px);
  animation: strategicCardGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

#strategic-makers .profile-card {
  min-height: 390px;
  border-color: rgba(149, 183, 232, 0.22);
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 40%), rgba(18, 217, 255, 0.16), transparent 13rem),
    linear-gradient(145deg, rgba(16, 31, 59, 0.82), rgba(8, 18, 39, 0.92)) !important;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

#strategic-makers .profile-card::before {
  background:
    linear-gradient(120deg, transparent 8%, rgba(255, 255, 255, 0.18), transparent 26%),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(18, 217, 255, 0.045) 27px 28px) !important;
  animation: strategicCardSheen 4.8s ease-in-out infinite;
}

#strategic-makers .profile-card:nth-child(2)::before {
  animation-delay: 0.7s;
}

#strategic-makers .profile-card:nth-child(3)::before {
  animation-delay: 1.4s;
}

#strategic-makers .profile-card:hover {
  transform: translateY(-12px) rotateX(3deg) rotateY(var(--tilt-x, 0deg));
}

#strategic-makers .profile-card img {
  outline: 1px solid rgba(255, 255, 255, 0.20);
  outline-offset: 4px;
}

#strategic-makers .profile-card:hover img {
  animation-play-state: paused;
}

#strategic-makers .profile-card a {
  position: relative;
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.08);
}

#strategic-makers .profile-card a:hover {
  background: linear-gradient(135deg, var(--orange), #ffb23e);
  color: #071327 !important;
}

@keyframes strategicAurora {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%, center; filter: saturate(0.96); }
  50% { background-position: 44% 18%, 58% 28%, 40% 76%, center; filter: saturate(1.18); }
  100% { background-position: 100% 42%, 12% 30%, 62% 64%, center; filter: saturate(1.05); }
}

@keyframes strategicGridDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; transform: translate3d(0, 0, 0); }
  to { background-position: 84px 42px, 42px 84px, 150px 75px, 3vw 0; transform: translate3d(-1.5vw, 0, 0); }
}

@keyframes strategicHeadingHalo {
  from { opacity: 0.52; transform: translateX(-50%) scale(0.96); }
  to { opacity: 0.92; transform: translateX(-50%) scale(1.06); }
}

@keyframes strategicLineScan {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scaleX(0.82); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.12); }
}

@keyframes strategicCardGlow {
  from { opacity: 0.58; transform: translateY(0) scale(0.99); }
  to { opacity: 1; transform: translateY(-12px) scale(1.02); }
}

@keyframes strategicCardSheen {
  0%, 42% { transform: translateX(-130%); opacity: 0; }
  58% { opacity: 1; }
  100% { transform: translateX(130%); opacity: 0; }
}

body.theme-light #strategic-makers::before {
  background:
    radial-gradient(circle at 12% 22%, rgba(10, 72, 215, 0.16), transparent 17rem),
    radial-gradient(circle at 82% 18%, rgba(255, 138, 29, 0.16), transparent 16rem),
    radial-gradient(circle at 50% 102%, rgba(18, 217, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 52%, #f9fcff 100%) !important;
}

body.theme-light #strategic-makers .profile-card {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 40%), rgba(10, 72, 215, 0.10), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 255, 0.86)) !important;
}

@media (prefers-reduced-motion: reduce) {
  #strategic-makers::before,
  #strategic-makers::after,
  #strategic-makers .section-heading::before,
  #strategic-makers .section-heading::after,
  #strategic-makers .profile-grid::before,
  #strategic-makers .profile-card::before {
    animation: none !important;
  }
}

/* Strategic Makers: make section animation behave like other sections.
   Keep the existing profile-card animation/hover effects unchanged.
   Only lighten the section-level intro/ambient motion. */
#strategic-makers {
  overflow: visible;
  isolation: isolate;
}

#strategic-makers::before {
  inset: 1.5rem -4vw !important;
  z-index: -1 !important;
  opacity: 0.88 !important;
  background:
    radial-gradient(circle at 16% 22%, rgba(18, 217, 255, 0.14), transparent 18rem),
    radial-gradient(circle at 82% 70%, rgba(255, 138, 29, 0.10), transparent 16rem),
    conic-gradient(from 180deg at 50% 50%, rgba(18,217,255,0.08), transparent, rgba(129,49,255,0.10), transparent, rgba(255,138,29,0.06)) !important;
  background-size: auto !important;
  mask-image: radial-gradient(circle, black, transparent 74%);
  filter: blur(2px);
  animation: none !important;
}

#strategic-makers::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

#strategic-makers .section-heading h2 {
  text-shadow: none !important;
  animation: none !important;
}

#strategic-makers .section-heading::before,
#strategic-makers .section-heading::after,
#strategic-makers .profile-grid::before {
  animation: none !important;
}

#strategic-makers .section-heading::before {
  top: -1.5rem;
  width: min(560px, 88vw);
  height: 120px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(14px);
  opacity: 0.72;
}

#strategic-makers .section-heading::after {
  bottom: -0.8rem;
  width: min(260px, 50vw);
  opacity: 0.78;
  box-shadow: 0 0 14px rgba(18, 217, 255, 0.25);
}

#strategic-makers .profile-grid::before {
  inset: -1rem -0.5rem;
  background:
    radial-gradient(circle at 20% 50%, rgba(18, 217, 255, 0.10), transparent 18rem),
    radial-gradient(circle at 80% 50%, rgba(255, 138, 29, 0.08), transparent 17rem);
  filter: blur(8px);
  opacity: 0.9;
}

body.theme-light #strategic-makers::before {
  background:
    radial-gradient(circle at 16% 22%, rgba(10, 72, 215, 0.12), transparent 18rem),
    radial-gradient(circle at 82% 70%, rgba(255, 138, 29, 0.10), transparent 16rem),
    conic-gradient(from 180deg at 50% 50%, rgba(10,72,215,0.06), transparent, rgba(129,49,255,0.08), transparent, rgba(255,138,29,0.05)) !important;
}

@media (max-width: 768px) {
  #strategic-makers::before {
    inset: 2rem -1rem !important;
    opacity: 0.84 !important;
  }

  #strategic-makers .section-heading::before {
    width: min(430px, 90vw);
    height: 96px;
  }
}
