:root{
  --bg:#071019;
  --panel:#0d1724;
  --panel-2:#101d2d;
  --text:#eef4ff;
  --muted:#9fb0c9;
  --line:rgba(255,255,255,.08);
  --primary:#66d6ff;
  --primary-2:#2d7dff;
  --radius:28px;
  --shadow:0 24px 64px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  padding-top:92px;
  font:400 16px/1.6 Inter,system-ui,sans-serif;
  background:linear-gradient(180deg,var(--bg),#08111b 58%,#060d15);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}

/* BACKGROUND */

.bg-lights::before,
.bg-lights::after{
  content:"";
  position:fixed;
  pointer-events:none;
  z-index:-1;
  border-radius:50%;
  filter:blur(80px);
  opacity:.42;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-3;
  background:
    radial-gradient(circle at 20% 10%,rgba(57,146,255,.18),transparent 30%),
    radial-gradient(circle at 82% 18%,rgba(90,224,255,.14),transparent 24%),
    radial-gradient(circle at 50% 80%,rgba(45,125,255,.12),transparent 28%),
    linear-gradient(180deg,rgba(8,18,28,.2),rgba(8,18,28,.05));
}

.cyber-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  opacity:.78;
  mix-blend-mode:screen;
}

.cyber-bg canvas{
  width:100%;
  height:100%;
  display:block;
}

.bg-lights::before{
  width:420px;
  height:420px;
  background:#0d7cff;
  top:-120px;
  left:-100px;
}

.bg-lights::after{
  width:360px;
  height:360px;
  background:#3be0ff;
  top:180px;
  right:-100px;
}

/* HEADER */

.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:linear-gradient(
    to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 32%,
    rgba(0,0,0,0.92) 55%,
    rgba(0,0,0,0.7) 100%
  );
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .25s ease, box-shadow .25s ease;
}

.nav.scrolled{
  background:linear-gradient(
    to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 32%,
    rgba(0,0,0,0.96) 55%,
    rgba(0,0,0,0.82) 100%
  );
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
}

.brand img{
  height:44px;
  width:auto;
}

.menu{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:var(--muted);
}

.menu a{
  transition:.2s ease;
}

.menu a:hover,
.menu a.active{
  color:var(--text);
}

.nav-cta,
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#061019 !important;
}

.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
}

.burger{
  display:none;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
  width:32px;
  height:32px;
  position:relative;
  flex-shrink:0;
}

.burger span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  border-radius:2px;
  position:absolute;
  left:4px;
  transition:transform .25s ease, opacity .25s ease, top .25s ease;
}

.burger span:nth-child(1){ top:8px; }
.burger span:nth-child(2){ top:15px; }
.burger span:nth-child(3){ top:22px; }

.burger.is-open span:nth-child(1){
  top:15px;
  transform:rotate(45deg);
}

.burger.is-open span:nth-child(2){
  opacity:0;
}

.burger.is-open span:nth-child(3){
  top:15px;
  transform:rotate(-45deg);
}

.mobile-menu{
  display:none;
}

/* SECTIONS */

section{padding:72px 0}
.hero{padding:72px 0 56px}
.hero-compact{padding-bottom:24px}
.section-tight{padding-top:28px;padding-bottom:28px}

/* HERO */

.hero-grid{
  display:grid;
  grid-template-columns:1.9fr .3fr;
  gap:20px;
  align-items:center;
}

.hero-title-row{
  display:block;
}

.hero-shield-mobile{
  display:none;
}

.hero-compact{
  text-align:center;
}

.hero-compact .wrap{
  max-width:1500px;
  margin:0 auto;
}

.hero-compact h1{
  margin-bottom:5px;
}

.hero-compact .lead{
  margin:0 auto;
  line-height:1.1;
}

/* TEXT ELEMENTS */

.eyebrow,
.kicker{
  display:inline-block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#7ddcff;
  background:rgba(125,220,255,.08);
  padding:10px 14px;
  border:1px solid rgba(125,220,255,.18);
  border-radius:999px;
}

.kicker{
  padding:0;
  background:none;
  border:0;
  margin-bottom:18px;
}

h1,h2,h3,h4{
  font-family:"Space Grotesk",Inter,sans-serif;
  line-height:1.05;
  margin:0 0 16px;
}

h1{
  font-size:clamp(42px,7vw,60px);
  max-width:none;
  letter-spacing:-.04em;
}

h2{
  font-size:clamp(30px,4vw,50px);
  letter-spacing:-.03em;
}

h3{
  font-size:24px;
}

.gradient{
  background:linear-gradient(135deg,#e8fbff 0%,#8de1ff 45%,#2d7dff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:720px;
}

/* BUTTONS */

.hero-actions,
.text-center{
  display:flex;
  gap:16px;
  align-items:center;
}

.text-center{justify-content:center}
.text-left{text-align:left}

.narrow{
  max-width:760px;
  margin-left:0;
  margin-right:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border:1px solid transparent;
  border-radius:999px;
  font-weight:700;
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}

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

.btn-ghost{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
}

.btn-arrow::after{
  content:"→";
}

/* VISUALS */

.hero-visual,
.stats{
  display:flex;
}

.hero-visual{
  justify-content:center;
  align-items:center;
}

.hero-visual{
  justify-content:flex-end;
}

.shield{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  height:auto;
  aspect-ratio:auto;
  padding:0;
  border-radius:0;
  background:none;
  box-shadow:none;
}

.shield svg{
  width:clamp(180px,22vw,340px);
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:30px;
}

/* PANELS */

.panel,
.card,
.step,
.logo-item,
.cta-panel,
.insight-card,
.split-panel,
.stat,
.quote-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.stat{
  padding:22px;
}

.stat-num{
  font:800 42px "Space Grotesk",sans-serif;
  letter-spacing:-.04em;
}

.stat-label,
.card p,
.section-title p,
.insight-card p,
.split-copy p,
.quote-card p{
  color:var(--muted);
}

.stat-label{
  font-size:14px;
}

/* GRIDS */

.section-title{
  max-width:820px;
  margin:0 auto 34px;
  text-align:center;
}

.cards-grid,
.insight-grid,
.quote-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card,
.insight-card,
.quote-card{
  padding:28px;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-1px auto auto -1px;
  width:120px;
  height:120px;
  background:radial-gradient(circle,#74ddff33,transparent 72%);
}

.card-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(111,211,255,.1);
  border:1px solid rgba(111,211,255,.16);
  font-size:26px;
  color:#8ee2ff;
  margin-bottom:22px;
}

.card-count{
  display:block;
  font:800 34px "Space Grotesk",sans-serif;
  line-height:1;
}

.card-count-label{
  display:block;
  color:#7ddcff;
  font-size:13px;
  margin-bottom:12px;
}

.stepper{
  display:grid;
  gap:18px;
}

.step{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:20px;
  padding:24px;
  background:linear-gradient(180deg,#0a0f17,#0c121c);
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
  backdrop-filter:blur(6px);
}

.step-num{
  display:grid;
  place-items:center;
  border-radius:22px;
  background:rgba(111,211,255,.08);
  border:1px solid rgba(111,211,255,.16);
  font:800 34px "Space Grotesk",sans-serif;
  color:#7ddcff;
}

.logos{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}

.logo-item{
  padding:24px 14px;
  text-align:center;
  font-weight:700;
  letter-spacing:.08em;
  color:#b8c6dc;
}

.split-panel{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  padding:34px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:24px;
  margin-bottom:24px;
}

.cta-panel{
  padding:clamp(40px,6vw,80px);
  text-align:center;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--panel),var(--panel-2));
}

.cta-panel::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-80px;
  width:220px;
  height:220px;
  background:radial-gradient(circle,#4fd9ff33,transparent 68%);
  border-radius:50%;
}

.quote-card strong{
  display:block;
  margin-bottom:8px;
}

.quote-card span{
  display:block;
  color:#7ddcff;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:#c8d4e6;
  font-size:14px;
}

.mt-40{
  margin-top:40px;
}

/* FOOTER */

.footer-brand img{
  height:54px;
  margin-bottom:14px;
  width:auto;
}

footer p,
footer li,
footer a,
.footer-bottom{
  color:var(--muted);
}

footer h4{
  margin-bottom:14px;
  font-size:18px;
}

footer ul{
  padding:0;
  margin:0;
  list-style:none;
}

footer li{
  margin:8px 0;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:20px;
  font-size:14px;
}

/* PLACEHOLDER */

.placeholder-page{
  min-height:70vh;
  display:grid;
  place-items:center;
  text-align:center;
}

.placeholder-page .box{
  max-width:720px;
  padding:42px;
  border-radius:28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}

/* ANIMS */

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease,transform .6s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* PAGE EQUIPE */

.team-page-hero{
  padding:72px 0 44px;
}

.team-page-head{
  max-width:980px;
  margin:0 auto 34px;
  text-align:center;
}

.team-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(111,211,255,.20);
  background:rgba(111,211,255,.08);
  color:#ccecff;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.team-page-head h1{
  margin:0 0 18px;
  text-align:center;
}

.team-page-lead{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  text-align:center;
  font-size:1.04rem;
}

.team-showcase-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.team-showcase-card{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(111,211,255,.30);
  background:#05090f;
  box-shadow:0 24px 60px rgba(0,0,0,.34);
  min-height:520px;
  height:520px;
}

.team-showcase-featured{
  min-height:520px;
  height:520px;
}

.team-showcase-photo{
  position:absolute;
  inset:0;
}

.team-showcase-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 18%;
  display:block;
}

.team-showcase-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.22) 30%,
    rgba(0,0,0,.62) 68%,
    rgba(0,0,0,.88) 100%
  );
  pointer-events:none;
}

.team-showcase-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:28px 28px 30px;
}

.team-showcase-overlay h2{
  margin:0 0 8px;
  color:#7ee0c2;
  font-size:1.28rem;
  font-weight:800;
  letter-spacing:.01em;
}

.team-role{
  margin-bottom:18px;
  color:#ffffff;
  font-size:1rem;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.team-showcase-overlay p{
  margin:0;
  color:#f4f8ff;
  font-size:1rem;
  line-height:1.5;
  max-width:95%;
}

.team-text-section{
  padding-top:22px;
}

.team-bio-panel{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(16,31,54,.95),rgba(10,22,38,.95));
  box-shadow:var(--shadow);
}

.team-bio-intro h2{
  text-align:left;
  margin-bottom:0;
}

.team-bio-copy p{
  margin:0 0 16px;
  color:var(--muted);
}

.team-bio-copy p:last-child{
  margin-bottom:0;
}

.team-focus-section{
  padding-top:26px;
}

.team-focus-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.team-focus-card{
  padding:26px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(16,31,54,.95),rgba(10,22,38,.95));
  box-shadow:var(--shadow);
}

.team-focus-tag{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(111,211,255,.08);
  border:1px solid rgba(111,211,255,.22);
  color:#d9f2ff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.team-focus-card h3{
  margin-bottom:10px;
}

.team-focus-card p{
  margin:0;
  color:var(--muted);
}

/* RESPONSIVE */

@media (max-width:1080px){
  .menu{display:none}
  .burger{display:block}

  .mobile-menu{
    position:fixed;
    inset:84px 16px auto;
    background:rgba(8,18,28,.96);
    backdrop-filter:blur(18px);
    border:1px solid var(--line);
    border-radius:24px;
    padding:18px;
    z-index:25;
    display:none;
  }

  .mobile-menu.open{
    display:block;
  }

  .mobile-menu-inner{
    display:grid;
    gap:8px;
  }

  .mobile-menu a{
    padding:12px 14px;
    border-radius:16px;
  }

  .mobile-menu a:hover{
    background:rgba(255,255,255,.04);
  }

  .hero-grid,
  .footer-grid,
  .split-panel,
  .insight-grid{
    grid-template-columns:1fr;
  }

  .cards-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

  .hero-visual{
    display:none;
  }

  .hero-title-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
  }

  .hero-title-row h1{
    margin:0;
    max-width:none;
    flex:1;
  }

  .hero-shield-mobile{
    display:block;
    width:92px;
    flex-shrink:0;
    opacity:.95;
    margin-top:6px;
  }

  .hero-shield-mobile svg{
    display:block;
    width:100%;
    height:auto;
  }

  .team-showcase-grid,
  .team-bio-panel,
  .team-focus-grid{
    grid-template-columns:1fr;
  }

  .team-showcase-card,
  .team-showcase-featured{
    min-height:420px;
    height:420px;
  }
}

@media (max-width:700px){
  .wrap{
    width:min(100% - 28px,1180px);
  }

  .hero{
    padding-top:38px;
  }

  .stats,
  .cards-grid,
  .logos,
  .quote-grid{
    grid-template-columns:1fr;
  }

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

  .hero-actions,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .text-center{
    align-items:center;
  }

  .stat-num{
    font-size:36px;
  }

  .hero-shield-mobile{
    width:78px;
    margin-top:4px;
  }

  .team-page-hero{
    padding-top:42px;
  }

  .team-showcase-card,
  .team-showcase-featured{
    min-height:420px;
    height:420px;
    border-radius:24px;
  }

  .team-showcase-overlay{
    padding:22px 20px 24px;
  }

  .team-showcase-overlay p{
    max-width:100%;
    font-size:.96rem;
  }

  .team-bio-panel{
    padding:24px;
  }
}