@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;
}

.profile-button{margin-top:18px;padding:9px 13px;border:1px solid rgba(32,220,226,.24);background:rgba(32,220,226,.07);color:var(--cyan);border-radius:999px;font-weight:700;cursor:pointer}
.profile-button:hover{border-color:var(--cyan);background:rgba(32,220,226,.12)}
.member-card.has-profile{border-color:rgba(32,220,226,.16)}
body.modal-open{overflow:hidden}
.profile-modal{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:20px;background:rgba(0,5,10,.78);backdrop-filter:blur(14px);opacity:0;visibility:hidden;transition:.2s}
.profile-modal.open{opacity:1;visibility:visible}
.profile-dialog{position:relative;width:min(560px,100%);max-height:calc(100vh - 40px);overflow-y:auto;padding:clamp(28px,6vw,52px);border-radius:28px;border:1px solid rgba(32,220,226,.2);background:radial-gradient(circle at 80% 0%,rgba(32,220,226,.12),transparent 34%),linear-gradient(150deg,#081827,#030a11 72%);box-shadow:0 30px 90px rgba(0,0,0,.48)}
.profile-close{position:absolute;right:16px;top:14px;width:42px;height:42px;border-radius:50%;border:1px solid var(--line);background:rgba(255,255,255,.03);color:white;font-size:1.7rem;cursor:pointer}
.profile-logo-wrap{width:84px;height:84px;margin-bottom:28px;border-radius:22px;padding:4px;border:1px solid rgba(32,220,226,.24);background:rgba(32,220,226,.05)}
.profile-logo-wrap img{width:100%;height:100%;border-radius:17px;object-fit:cover}
.profile-dialog h2{margin:0;font-family:Rajdhani,sans-serif;font-size:clamp(3rem,9vw,5rem);line-height:.9}
.profile-role{margin:12px 0 30px;color:var(--cyan);font-size:.84rem;letter-spacing:.13em;text-transform:uppercase;font-weight:700}
.profile-details{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:0 0 28px}
.profile-details>div{padding:16px;border-radius:16px;border:1px solid var(--line);background:rgba(255,255,255,.025)}
.profile-details span{display:block;margin-bottom:8px;color:var(--muted);font-size:.63rem;letter-spacing:.12em}
.profile-details strong{font-family:Rajdhani,sans-serif;font-size:1.2rem}
.profile-copy{color:#aebdca;line-height:1.7}
.profile-socials{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}
.profile-socials a{padding:10px 13px;border-radius:999px;border:1px solid var(--line);color:#dce9f0;font-size:.8rem;font-weight:700}
.profile-socials a:hover{border-color:var(--cyan);color:var(--cyan)}
@media(max-width:620px){.profile-details{grid-template-columns:1fr}.profile-dialog{padding:30px 22px}}


.recruitment-section {
  position: relative;
}

.recruitment-heading {
  margin-bottom: 34px;
}

.recruitment-form {
  display: grid;
  gap: 16px;
}

.form-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(32,220,226,.07), transparent 28%),
    rgba(5, 15, 25, .78);
}

.form-panel-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.form-panel-head > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(32,220,226,.24);
  background: rgba(32,220,226,.06);
  color: var(--cyan);
  font-family: Rajdhani, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.form-panel-head .eyebrow {
  margin-bottom: 4px;
}

.form-panel-head h3 {
  margin: 0;
  font-family: Rajdhani, sans-serif;
  font-size: 2rem;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.field {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.field > span,
.choice-field legend {
  color: #cddae3;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.field-help {
  margin: 2px 0 8px;
  color: var(--muted);
  font-size: .78rem;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: var(--white);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field select option {
  background: #07111d;
  color: white;
}

.field input::placeholder {
  color: #607286;
}

.field input:focus,
.field select:focus {
  border-color: rgba(32,220,226,.55);
  box-shadow: 0 0 0 3px rgba(32,220,226,.08);
  background: rgba(32,220,226,.025);
}

.choice-field {
  border: 0;
  padding: 0;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

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

.choice-chip {
  min-height: 50px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: #d9e4eb;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.choice-chip small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 600;
}

.choice-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(32,220,226,.35);
}

.choice-chip.active {
  border-color: var(--cyan);
  background: rgba(32,220,226,.11);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(32,220,226,.08);
}

.choice-chip.active small {
  color: #9eeff2;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent-row input {
  margin-top: 3px;
  accent-color: var(--cyan);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.form-status {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.6;
}

.submit-button {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
  color: #031017;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0 0 32px rgba(32,220,226,.12);
}

.submit-button span {
  margin-left: 10px;
}

.submit-button:hover {
  transform: translateY(-1px);
}

.submit-button:disabled {
  opacity: .55;
  cursor: wait;
}

.form-error {
  border-color: rgba(255, 112, 112, .55) !important;
}

@media (max-width: 900px) {
  .cod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .field-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .field-grid.two,
  .choice-grid.compact,
  .cod-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }
}
