@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg: #03070c;
  --bg-soft: #07111d;
  --panel: rgba(9, 25, 41, .78);
  --panel-2: rgba(7, 16, 28, .92);
  --navy: #06274b;
  --cyan: #20dce2;
  --cyan-soft: #159caf;
  --white: #f5fbff;
  --muted: #8ea0b2;
  --line: rgba(255,255,255,.08);
  --glow: rgba(32, 220, 226, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 7%, rgba(17, 129, 153, .16), transparent 28rem),
    linear-gradient(180deg, #02060a 0%, #04101c 100%);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
code { color: var(--cyan); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 76px);
  background: rgba(2, 7, 12, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand img, .footer-brand img {
  width: 44px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}
.brand div { display: grid; line-height: .92; }
.brand strong {
  font-family: Rajdhani, sans-serif;
  font-size: 1.35rem;
  letter-spacing: .1em;
}
.brand span { font-size: .62rem; letter-spacing: .25em; color: var(--muted); }

.nav { display: flex; gap: 28px; color: #c9d4dc; font-size: .9rem; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--cyan); }
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.4rem;
}

.hero {
  min-height: 78vh;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 140px) clamp(22px, 7vw, 100px);
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,220,226,.2), rgba(32,220,226,.04) 44%, transparent 70%);
  filter: blur(18px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  letter-spacing: .22em;
  font-weight: 700;
  font-size: .78rem;
}
.hero h1 {
  margin: 0;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(4.8rem, 12vw, 11rem);
  line-height: .68;
  letter-spacing: -.045em;
  font-weight: 700;
}
.hero h1 span {
  font-size: .39em;
  letter-spacing: .13em;
  color: #c6d9e8;
}
.lead {
  margin: 34px 0 0;
  color: #b8c7d3;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid transparent;
}
.button.primary {
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
  color: #031017;
  box-shadow: 0 0 32px rgba(32,220,226,.14);
}
.button.ghost { border-color: var(--line); background: rgba(255,255,255,.025); }
.button:hover { transform: translateY(-1px); }

.hero-mark {
  justify-self: end;
  width: min(36vw, 500px);
  aspect-ratio: 1;
  position: relative;
  opacity: .9;
  filter: drop-shadow(0 0 45px rgba(32,220,226,.12));
}
.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 54%, transparent 74%);
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 90px clamp(22px, 5vw, 70px);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 32px;
}
.section h2 {
  margin: 0;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  letter-spacing: -.02em;
}
.section-note { max-width: 440px; color: var(--muted); font-size: .9rem; line-height: 1.7; }

.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.member-card {
  position: relative;
  min-height: 325px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(32,220,226,.02), transparent 35%),
    var(--panel);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.member-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,220,226,.14), transparent 68%);
}
.member-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32,220,226,.34);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.member-top { display: flex; justify-content: space-between; gap: 20px; }
.member-icon {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
}
.member-number {
  color: rgba(255,255,255,.18);
  font-family: Rajdhani, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.member-card h3 {
  font-family: Rajdhani, sans-serif;
  font-size: 2rem;
  margin: 0 0 3px;
}
.member-role { margin: 0; color: var(--cyan); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.member-bio { color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 14px 0 0; }
.member-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.member-links a {
  font-size: .75rem;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7e1e8;
}
.member-links a:hover { border-color: var(--cyan); color: var(--cyan); }

.split-section {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
}

.featured-video-section {
  grid-template-columns: 1.35fr .65fr;
}
.feature-card, .quote-card {
  min-height: 340px;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
}
.feature-card {
  background:
    linear-gradient(125deg, rgba(6,39,75,.9), rgba(5,18,31,.78)),
    radial-gradient(circle at top right, rgba(32,220,226,.24), transparent 45%);
}
.feature-card p:not(.eyebrow) { max-width: 620px; color: #aebdca; line-height: 1.75; }
.text-link { display: inline-block; margin-top: 20px; color: var(--cyan); font-weight: 700; }

.quote-card {
  background: linear-gradient(155deg, #06121e, #03080d);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-mark { color: var(--cyan); font-size: 5rem; line-height: .7; }
.quote-card blockquote {
  margin: 20px 0 12px;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}
.quote-card p { color: var(--muted); }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.timeline article {
  position: relative;
  padding: 28px 26px 10px 0;
}
.timeline article:not(:last-child) { border-right: 1px solid var(--line); margin-right: 26px; }
.timeline span { color: var(--cyan); font-family: Rajdhani, sans-serif; font-weight: 700; }
.timeline h3 { margin: 55px 0 10px; font-family: Rajdhani, sans-serif; font-size: 1.7rem; }
.timeline p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .9rem; }

.links-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.links-section > div > p:last-child { color: var(--muted); line-height: 1.7; }
.link-stack { border-top: 1px solid var(--line); }
.link-stack a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: Rajdhani, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.link-stack b { color: var(--cyan); font-size: .75rem; letter-spacing: .1em; }

footer {
  max-width: 1320px;
  margin: 30px auto 0;
  padding: 28px clamp(22px, 5vw, 70px) 50px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: .8rem;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: #dbe7ee; font-weight: 700; letter-spacing: .09em; }
.footer-brand img { width: 34px; border-radius: 10px; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav {
    position: absolute;
    top: 76px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #06111d;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    min-width: 180px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 90px; }
  .hero-mark { width: min(65vw, 360px); justify-self: center; opacity: .5; margin-top: 30px; }
  .roster-grid { grid-template-columns: 1fr 1fr; }
  .split-section, .links-section { grid-template-columns: 1fr; gap: 16px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { border-right: 0 !important; border-bottom: 1px solid var(--line); margin-right: 0 !important; padding-bottom: 28px; }
  .timeline h3 { margin-top: 24px; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 18px; }
  .brand span { display: none; }
  .hero h1 { font-size: clamp(4.5rem, 24vw, 7rem); }
  .section { padding-top: 70px; padding-bottom: 70px; }
  .section-heading { align-items: start; flex-direction: column; }
  .roster-grid { grid-template-columns: 1fr; }
  .member-card { min-height: 290px; }
  footer { align-items: flex-start; gap: 18px; flex-direction: column; }
}


.video-card {
  min-height: 340px;
  border-radius: 24px;
  padding: 10px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(32,220,226,.10), transparent 34%),
    rgba(5, 14, 24, .9);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 17px;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
