/* =========================
   TEAM (team.html) STANDALONE CSS
   Includes: base, nav, team layout, footer, responsive
   ========================= */

:root {
    /* Brand */
    --accent: #14a9ff;

    /* Modern dark theme */
    --bg: #0b0f14;

    /* Glass surfaces */
    --glass: rgba(255, 255, 255, .06);
    --glass2: rgba(255, 255, 255, .10);
    --border: rgba(255, 255, 255, .14);

    /* Text */
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .72);
    --muted2: rgba(255, 255, 255, .56);

    /* Shadow */
    --shadow: 0 18px 50px rgba(0, 0, 0, .45);

    /* Layout */
    --navPadX: 42px;
    --navH: 78px;
    --container: 1100px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   NAVBAR (same as your site)
   ========================= */
.nav {
    height: var(--navH);
    display: flex;
    align-items: center;
    padding: 0 var(--navPadX);
    gap: 18px;

    background: rgba(0, 0, 0, .22);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.brand {
    width: 240px;
    display: flex;
    align-items: center;
}

.brand img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    margin: 0;

    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
}

.nav-links a {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    padding: 10px 4px;
    position: relative;
    transition: color .12s ease, opacity .12s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.is-active {
    color: #fff;
}

.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 6px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
    opacity: .9;
}

.nav-right {
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Online chip */
.pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .70);
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #32ff6a;
    box-shadow: 0 0 0 3px rgba(50, 255, 106, .14);
}

/* Buttons (needed by nav + team hero) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--accent);
    color: #061018;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(20, 169, 255, .18);
    transition: transform .12s ease, filter .12s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    border-radius: 10px;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn-ghost:hover {
    transform: translateY(-1px);
    background: var(--glass2);
    border-color: rgba(255, 255, 255, .22);
}

/* =========================
   TEAM PAGE BACKGROUND / WRAP
   ========================= */
.hero {
    padding-top: 120px;
    /* space for nav */
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;

    background:
        radial-gradient(65% 60% at 50% 38%,
            rgba(0, 0, 0, .18) 0%,
            rgba(0, 0, 0, .40) 45%,
            rgba(0, 0, 0, .62) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, .55) 0%,
            rgba(0, 0, 0, .15) 35%,
            rgba(0, 0, 0, .55) 100%),
}

/* =========================
   TEAM HERO
   ========================= */
.team-hero {
    padding: 40px 0 18px;
    text-align: center;
}

.team-hero__eyebrow {
    color: rgba(20, 169, 255, .78);
    text-transform: uppercase;
    letter-spacing: .30em;
    font-size: 12px;
    margin-bottom: 14px;
}

.team-hero__title {
    margin: 0;
    font-size: 34px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 900;
}

.team-hero__desc {
    margin: 16px auto 22px;
    max-width: 760px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
    font-size: 14px;
}

.team-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Stats row */
.team-stats {
    margin: 28px auto 0;
    width: min(860px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.team-stat {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
    padding: 14px 14px;
    border-radius: 14px;
}

.team-stat__label {
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 10px;
}

.team-stat__value {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .06em;
}

/* =========================
   TEAM SECTIONS + CARDS
   ========================= */
.team {
    padding: 26px 0 40px;
}

.team-section {
    margin-top: 44px;
}

.team-section__head {
    text-align: center;
    margin-bottom: 18px;
}

.team-section__title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 900;
    font-size: 20px;
}

.team-section__subtitle {
    margin: 10px auto 0;
    max-width: 720px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    line-height: 1.7;
}

.team-grid{
  display: grid;
  gap: 16px;
  margin-top: 18px;

  grid-template-columns: repeat(3, 360px);
  justify-content: center;
}



.team-card {
    max-width: 360px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .30);
    transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 169, 255, .35);
    background: rgba(255, 255, 255, .055);
}

.team-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .92);
    background:
        radial-gradient(65% 65% at 35% 35%,
            rgba(20, 169, 255, .35) 0%,
            rgba(255, 255, 255, .08) 55%,
            rgba(0, 0, 0, 0) 100%),
        rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
}

.team-card__name {
    font-weight: 800;
    letter-spacing: .04em;
}

.team-card__role {
    margin-top: 4px;
    color: rgba(20, 169, 255, .78);
    text-transform: uppercase;
    letter-spacing: .20em;
    font-size: 10px;
}

.team-card__bio {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.75;
}

.team-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    color: rgba(255, 255, 255, .70);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

/* =========================
   Clean Footer (Drop-in)
========================= */
.site-footer {
  margin-top: 80px;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(0, 170, 255, 0.10), transparent 60%),
              radial-gradient(900px 400px at 70% 20%, rgba(0, 120, 255, 0.08), transparent 55%),
              linear-gradient(to bottom, rgba(6, 10, 14, 0.96), rgba(3, 6, 9, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 18px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 200px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.site-footer__logo img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.site-footer__logo span {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__about {
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 55ch;
}

.site-footer__server {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__server-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__server-ip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
}

.site-footer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.site-footer__links a,
.site-footer__socials a,
.site-footer__legal a {
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  padding: 6px 0;
}

.site-footer__links a:hover,
.site-footer__socials a:hover,
.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  margin-bottom: 14px;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(0, 160, 255, 0.90);
  color: #081018;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer__cta:hover {
  filter: brightness(1.05);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.20);
}

.site-footer__bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.site-footer__legal {
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.site-footer__disclaimer {
  color: rgba(255, 255, 255, 0.40);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__links a {
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color .2s ease;
}

.site-footer__links a:hover {
  color: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__legal {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
    :root {
        --navPadX: 18px;
    }

    .brand,
    .nav-right {
        width: 200px;
    }
}

@media (max-width: 720px) {
    .nav-center {
        display: none;
    }

    .pill {
        display: none;
    }

    .brand,
    .nav-right {
        width: auto;
    }

    .team-hero__title {
        font-size: 28px;
    }
}

@media (max-width: 1180px){
  .team-grid{
    grid-template-columns: repeat(2, 360px);
  }
}

@media (max-width: 760px){
  .team-grid{
    grid-template-columns: 1fr;
  }
  .team-card{
    max-width: 420px;
    margin: 0 auto;
  }
}
