:root {
  --navy-950: #050b16;
  --navy-900: #0a1628;
  --navy-800: #0f2038;
  --navy-700: #152a48;
  --green-400: #3fd67a;
  --green-300: #7bf0a8;
  --blue-400: #4a86f0;
  --white: #f4f7fb;
  --slate-400: #8ea0bd;
  --slate-600: #5b6d8a;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "JetBrains Mono", monospace;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  font-weight: 300;
}
::selection {
  background: var(--green-400);
  color: var(--navy-950);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-950);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-400);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-400);
  display: inline-block;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.section-title .accent {
  background: linear-gradient(100deg, var(--green-300), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.body-lg {
  font-size: 18px;
  line-height: 1.75;
  color: var(--slate-400);
  font-weight: 300;
  max-width: 640px;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
section {
  position: relative;
  padding: 150px 0;
}
@media (max-width: 768px) {
  section {
    padding: 100px 0;
  }
  .container {
    padding: 0 24px;
  }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 35px 0;
  transition:
    padding 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 20px 0;
  background: rgba(5, 11, 22, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner{
    max-width:1300px;
    margin:auto;
    padding:0 30px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}
.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    text-decoration:none;
}
.logo img,
.logo-img{
    width:180px;
    max-width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    transition:.35s ease;
} 

.nav.scrolled .logo img,
.nav.scrolled .logo-img{
    width:160px;
}
.logo:hover img,
.logo:hover .logo-img{
    transform:scale(1.03);
}
/* .logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 14px var(--green-400);
}
.logo .edition {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--slate-400);
  display: block;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
} */
.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
    list-style:none;
    margin:0;
    padding:0;
    flex:1;
    justify-content:center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  opacity: 0.82;
  transition: opacity 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--green-400);
  transition: width 0.35s ease;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown .caret {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 210px;
  background: rgba(10, 20, 38, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 14px);
}
.dropdown-menu li a {
  display: block;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--slate-400);
  opacity: 1;
}
.dropdown-menu li a::after {
  display: none;
}
.dropdown-menu li a:hover {
  background: rgba(63, 214, 122, 0.08);
  color: var(--green-300);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--green-400);
  color: var(--navy-950);
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(63, 214, 122, 0.35);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}
@media (max-width:940px){

    .logo img,
    .logo-img{
        width:150px;
    }

    .nav-links{
        display:none;
    }

    .nav-toggle{
        display:flex;
    }

    .nav-cta{
        display:none;
    }

    .nav-inner{
        padding:0 20px;
    }
}

/* ===== HERO ===== */
/* ================= HERO TITLE ================= */

.hero-title{
    margin:0;
    line-height:.95;
}

/* 3rd Edition */

.hero-edition{

    display:block;

     font-family:'JetBrains Mono',monospace !important;

    font-size:clamp(18px,2vw,26px);

    font-weight:500;

    letter-spacing:.55em;

    text-transform:uppercase;

    color:var(--slate-400);

    margin-bottom:18px;

}

/* GDX */
.hero-gdx{
    font-family:'Orbitron',sans-serif !important;
    font-size:clamp(95px,12vw,185px);
    font-weight:800;
    letter-spacing:.08em;

    background:linear-gradient(
        90deg,
        #ffffff,
        #8fe9ff,
        #53f2b2
    );

    -webkit-background-clip:text;
    color:transparent;
}

/* Animation */

.hero-gdx:hover{

    transform:translateY(-3px);

    transition:.35s;

}
.hero {
  height: 100vh;
  min-height: 900px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 75% 20%,
      rgba(74, 134, 240, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 50% at 15% 85%,
      rgba(63, 214, 122, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #050b16 0%, #071022 55%, #0a1628 100%);
}
#net-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.55;
}
.hero-orb {
  position: absolute;
  width: 900px;
  height: 900px;
  right: -280px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(63, 214, 122, 0.1),
    transparent 65%
  );
  z-index: 1;
}
.hero-orb-2 {
  position: absolute;
  width: 640px;
  height: 640px;
  left: -220px;
  bottom: -260px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 60%,
    rgba(74, 134, 240, 0.12),
    transparent 65%
  );
  z-index: 1;
}
.grid-overlay {
  position: absolute;
  inset: -10% -10% -10% -10%;
  z-index: 1;
  opacity: 0.5;
  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: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    black 20%,
    transparent 75%
  );
}
.float-chip {
  position: absolute;
  z-index: 4;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 9px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  opacity: 0;
}
.chip-ai {
  top: 22%;
  left: 9%;
}
.chip-cloud {
  top: 32%;
  right: 8%;
}
.chip-cyber {
  bottom: 30%;
  left: 14%;
}
.chip-data {
  bottom: 22%;
  right: 13%;
}
@media (max-width: 900px) {
  .float-chip {
    display: none;
  }
}
.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 42vh;
  min-height: 280px;
  opacity: 0.9;
}
.skyline svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--green-300);
  border: 1px solid rgba(63, 214, 122, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 38px;
  text-transform: uppercase;
  background: rgba(63, 214, 122, 0.05);
}
.hero h1 {
  font-size: clamp(50px, 8.6vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  overflow: hidden;
  font-weight: 800;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 8px;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(115%);
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--green-300), var(--blue-400) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  margin-top: 30px;
  font-size: clamp(16px, 1.6vw, 21px);
  color: var(--slate-400);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
}
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 50px;
  opacity: 0;
  justify-content: center;
}
.hero-meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--body);
}
.hero-meta .item svg {
  width: 17px;
  height: 17px;
  stroke: var(--green-400);
  flex-shrink: 0;
}
.hero-meta .item b {
  font-weight: 600;
}
.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  justify-content: center;
}
.btn-primary {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--green-400);
  color: var(--navy-950);
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(63, 214, 122, 0.32);
}
.btn-ghost {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--green-400);
  background: rgba(63, 214, 122, 0.06);
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.scroll-cue span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--slate-400);
  text-transform: uppercase;
}
.scroll-cue .track {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}
.scroll-cue .track i {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, var(--green-400));
  animation: cue 1.8s infinite;
}
@keyframes cue {
  0% {
    top: -20px;
  }
  100% {
    top: 46px;
  }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-card:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  background: linear-gradient(95deg, var(--green-300), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  margin-top: 8px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 30px;
  }
  .stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* =========================
   MARQUEE
========================= */

.marquee-strip{
    width:100%;
    overflow:hidden;
    position:relative;
    background:#071220;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:18px 0;
}

.marquee-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:marquee 25s linear infinite;
}

.marquee-track span{

    flex-shrink:0;

    padding:0 40px;

    font-size:13px;

    font-family:var(--mono);

    color:var(--white);

    white-space:nowrap;

}

.marquee-track span::after{

    content:"◆";

    margin-left:40px;

    color:var(--green-400);

}

@keyframes marquee{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.about-copy p {
  margin-top: 20px;
}
.about-copy {
  position: relative;
}
.about-copy::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: -18px;
  font-family: var(--display);
  font-size: 180px;
  font-weight: 800;
  color: rgba(63, 214, 122, 0.06);
  line-height: 1;
  pointer-events: none;
}
.about-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(
    155deg,
    rgba(63, 214, 122, 0.4),
    rgba(74, 134, 240, 0.15) 45%,
    rgba(255, 255, 255, 0.06)
  );
}
.about-visual-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-950));
  padding: 48px 44px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-visual .ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(63, 214, 122, 0.25);
  top: -90px;
  right: -90px;
}
.about-visual .ring2 {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(74, 134, 240, 0.3);
  bottom: -60px;
  left: -60px;
}
.about-visual-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 19px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin: 0 -14px;
  transition:
    background 0.3s ease,
    padding-left 0.3s ease;
}
.pillar:first-child {
  padding-top: 8px;
}
.pillar:hover {
  background: rgba(63, 214, 122, 0.06);
  padding-left: 22px;
}
.pillar .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green-400);
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(63, 214, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 214, 122, 0.05);
}
.pillar .txt {
  font-size: 15.5px;
  color: var(--white);
  font-weight: 500;
}
.about-visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
  z-index: 2;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.about-visual-foot .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  background: linear-gradient(95deg, var(--green-300), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-visual-foot .small {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--slate-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 150px;
  text-align: right;
}

/* ===== WHY SAUDI ===== */
.why {
  background: var(--navy-900);
}
.why-head {
  max-width: 760px;
  margin-bottom: 70px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.why-card {
  background: var(--navy-950);
  padding: 44px 34px;
  transition: background 0.3s ease;
}
.why-card:hover {
  background: var(--navy-800);
}
.why-figure {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  color: var(--green-300);
  margin-bottom: 14px;
}
.why-desc {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SPEAKERS ===== */
.speakers-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.speaker-subhead {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 64px 0 32px;
}
.speaker-subhead h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
}
.speaker-subhead .count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--slate-400);
}
.speaker-subhead .line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.advisory-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(180px,1fr));
    gap:20px;
    width:100%;
    overflow-x:auto;
      padding-bottom:10px;
  }


  @media(max-width:1100px){

      .advisory-grid{
          grid-template-columns:repeat(3,1fr);
      }

  }

  @media(max-width:768px){

      .advisory-grid{
          grid-template-columns:repeat(2,1fr);
      }

  }

  @media(max-width:480px){

      .advisory-grid{
          grid-template-columns:1fr;
      }

  }

  .speaker-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1.18;
    cursor: pointer;
  }
  .speaker-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(150deg, #123a2c, #1a5c3f 55%, #3fd67a);
  }

  .speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .speaker-item:hover .speaker-photo img {
    transform: scale(1.08);
  }

  .speaker-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
      180deg,
      transparent,
      rgba(0, 0, 0, 0.08) 40%,

      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .speaker-item:hover .speaker-photo {
    transform: scale(1.08);
  }
  .speaker-item.advisory-item .speaker-photo .initials {
    font-size: 52px;
  }
  .speaker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 35%,
      rgba(5, 11, 22, 0.55) 68%,
      rgba(5, 11, 22, 0.97) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .speaker-overlay .inner {
    transform: translateY(10px);
    transition: transform 0.4s ease;
  }
  .speaker-item:hover .speaker-overlay {
    opacity: 1;
  }
  .speaker-item:hover .speaker-overlay .inner {
    transform: translateY(0);
  }
  .speaker-overlay .nm {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.25;
    margin-bottom: 5px;
  }
  .speaker-overlay .rl {
    font-size: 11px;
    color: var(--slate-400);
    line-height: 1.45;
    margin-bottom: 6px;
  }
  .speaker-overlay .og {
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--green-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .advisory-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-950);
    background: var(--green-400);
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: 600;
  }
  .speakers-more {
    text-align: center;
    margin-top: 52px;
  }
  .speakers-more .btn-ghost {
    background: none;
    cursor: pointer;
    font-family: var(--mono);
  }
  .speaker-hidden-group {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  @media (max-width: 1100px) {
    .speaker-hidden-group {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media (max-width: 760px) {
    .speaker-hidden-group {
      grid-template-columns: repeat(2, 1fr);
    }
  }

/* ===== SPONSORS ===== */

.sponsors{
  background:var(--navy-900);
}

.tier{
  margin-bottom:55px;
}

.tier-label{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    margin:0 auto 35px;

    font-family:var(--display);
    font-size:34px;
    font-weight:800;

    color: #3FD67A;

    text-transform:uppercase;
    letter-spacing:2px;

    text-align:center;
}

.tier-label::before,
.tier-label::after{
    content:"";
    flex:1;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:0 25px;
}
.sponsors .eyebrow{
    justify-content:center;
}

.sponsors .section-title{
    text-align:center;
}

/* Center every row */
.sponsor-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:22px;
}

/* Card */
.tier-logo{
 width:190px;
    height:105px;
    flex:0 0 190px; 
  background:#f4f7fb;
  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:16px;

  transition:transform .3s ease, box-shadow .3s ease;

  overflow:hidden;
}

.tier-logo:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 34px rgba(0,0,0,.28);
}

/* All Images */
.tier-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

/* Platinum */
.tier.platinum .sponsor-grid{
  grid-template-columns:240px;
  justify-content:center;
}

.tier.platinum .tier-logo{
  width:240px;
  height:130px;
  padding:20px;
}

/* Media Partners */
.tier-logo.small{
  width:170px;
  height:85px;
  padding:12px;
}

.tier-logo.small img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* Tablet */
@media(max-width:991px){

.sponsor-grid{
grid-template-columns:repeat(3,180px);
}

}

/* Mobile */
@media(max-width:600px){

.sponsor-grid{
grid-template-columns:repeat(2,150px);
gap:16px;
}

.tier-logo{
width:150px;
height:85px;
}

.tier-logo.small{
width:150px;
height:75px;
}

.tier.platinum .sponsor-grid{
grid-template-columns:200px;
}

.tier.platinum .tier-logo{
width:200px;
height:115px;
}

}

/* ===== TESTIMONIALS ===== */

#testimonials{
    padding:120px 0;
    background:var(--navy-950);
    overflow:hidden;
}

.marquee-wrap{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:60px;

    -webkit-mask-image:linear-gradient(
        90deg,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );

    mask-image:linear-gradient(
        90deg,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
}

.testi-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:marquee 40s linear infinite;
}

.marquee-wrap:hover .testi-track{
    animation-play-state:paused;
}

@keyframes marquee{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.testi-card{

    width:380px;
    min-height:240px;

    flex:0 0 auto;

    background:var(--navy-900);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:32px;

    transition:.35s;

}

.testi-card:hover{

    transform:translateY(-8px);

    border-color:var(--green-400);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.testi-quote{

    font-size:15px;

    line-height:1.8;

    color:#fff;

    margin-bottom:28px;

}

.testi-person{

    color:var(--green-400);

    font-size:13px;

    font-family:var(--mono);

}

.testi-person span{

    display:block;

    margin-top:6px;

    color:var(--slate-400);

}
/* ===== GALLERY ===== */
.gallery {
  background: var(--navy-900);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.gallery-grid .g-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid .g-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-grid .g-item:nth-child(7) {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
  .gallery-grid .g-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.g-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.g-item .g-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-item:hover .g-bg {
  transform: scale(1.1);
}
.g-item .g-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 22, 0.9));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.g-item:hover .g-label {
  opacity: 1;
}
.g-item .g-label span {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.g-item .g-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.g-item:hover .g-bg img{
    transform:scale(1.08);
}
/* ================= CONTACT ================= */

.contact-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr .55fr;
    gap:50px;
    align-items:center;
}

/* LEFT */

.contact-left{
    max-width:560px;
}

.contact-desc{
    margin-top:20px;
    color:var(--slate-400);
    line-height:1.8;
}

/* CENTER */

.contact-center{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-item{
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.contact-item h4{
    font-size:19px;
    font-weight:700;
    margin-bottom:4px;
    color:#fff;
}

.contact-item strong{
    display:block;
    color:var(--green-400);
    font-size:17px;
    margin-bottom:12px;
}

.contact-info{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:8px;
}

.contact-info:last-child{
    margin-bottom:0;
}

.contact-info i{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(63,214,122,.12);
    color:var(--green-400);
    font-size:15px;
    flex-shrink:0;
}

.contact-info a{
    color:var(--slate-400);
    text-decoration:none;
    transition:.3s;
}

.contact-info a:hover{
    color:var(--green-300);
}

/* RIGHT */

.contact-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.contact-btn{
    min-width:220px;
    text-align:center;
    padding:18px 38px;
    border-radius:50px;
    text-decoration:none;
}

/* Responsive */

@media(max-width:1100px){

.contact-grid{
grid-template-columns:1fr;
gap:45px;
}

.contact-left{
max-width:100%;
}

.contact-right{
justify-content:flex-start;
}

.contact-btn{
width:220px;
}

}
/* horizontal pinned speaker rail */

/* soft glow cursor-follow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(63, 214, 122, 0.07),
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  will-change: transform;
}
/* ================= FOOTER ================= */

footer{
    background:var(--navy-950);
    border-top:1px solid rgba(255,255,255,.08);
    padding:35px 0;
    margin-top:80px;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-inner p{
    margin:0;
    color:var(--slate-400);
    font-size:14px;
    font-weight:400;
    letter-spacing:.5px;
}

.footer-tags{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-tags a{
    text-decoration:none;
    color:var(--green-400);
    font-family:var(--mono);
    font-size:13px;
    padding:10px 18px;
    border:1px solid rgba(63,214,122,.25);
    border-radius:50px;
    transition:.35s ease;
}

.footer-tags a:hover{
    background:var(--green-400);
    color:var(--navy-950);
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(63,214,122,.25);
}

@media(max-width:768px){

.footer-inner{
    flex-direction:column;
    text-align:center;
}

.footer-tags{
    justify-content:center;
}

}