*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#08111f;
  --bg-soft:#0d1727;
  --text:#f5f5f2;
  --muted:#b6c1cf;
  --gold:#d4af63;
  --glass:rgba(255,255,255,.04);
  --glass-border:rgba(255,255,255,.08);
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}

body{
  font-family:
    Inter,
    "Segoe UI",
    sans-serif;

  background:
    radial-gradient(
      circle at top right,
      rgba(212,175,99,.08),
      transparent 22%
    ),
    linear-gradient(
      180deg,
      #08111f,
      #07101d
    );

  color:var(--text);

  overflow-x:hidden;
}

/* ===================
   Utilities
=================== */

.container{
  width:min(92%,1180px);
  margin:auto;
}

.narrow{
  max-width:960px;
}

.section{
  padding:120px 0;
}

.section-alt{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.02),
      transparent
    );
}

.section-header{
  margin-bottom:60px;
}

.section-header.center{
  text-align:center;
}

.section-label{
  color:var(--gold);

  text-transform:uppercase;

  letter-spacing:2px;

  font-size:.82rem;

  display:inline-block;

  margin-bottom:18px;
}

h1,h2,h3{
  line-height:1.06;
  letter-spacing:-1px;
}

h1{
  font-size:
    clamp(
      3rem,
      7vw,
      6.2rem
    );

  max-width:720px;

  margin-bottom:28px;
}

h2{
  font-size:
    clamp(
      2rem,
      4vw,
      3.2rem
    );
}

h3{
  font-size:1.35rem;
  margin-bottom:18px;
}

p{
  color:var(--muted);
  line-height:1.85;
}

/* ===================
   Navbar
=================== */

.navbar{
  position:sticky;
  top:0;

  z-index:999;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:24px 5%;

  backdrop-filter:blur(22px);

  background:
    rgba(8,17,31,.72);

  border-bottom:
    1px solid
    rgba(255,255,255,.05);
}

.brand{
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:.2px;
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  text-decoration:none;

  color:var(--muted);

  font-weight:500;

  transition:.25s ease;
}

nav a:hover{
  color:var(--gold);
}

/* ===================
   Hero
=================== */

.hero{
  position:relative;

  min-height:92vh;

  display:flex;
  align-items:center;

  overflow:hidden;
}

.hero-glow{
  position:absolute;

  width:700px;
  height:700px;

  right:-240px;
  top:-200px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(212,175,99,.12),
      transparent 70%
    );
}

.hero-layout{
  display:grid;

  grid-template-columns:
    1.15fr
    .85fr;

  gap:64px;

  align-items:center;
}

.hero-content{
  position:relative;
  z-index:2;
}

.eyebrow{
  color:var(--gold);

  text-transform:uppercase;

  letter-spacing:2px;

  font-size:.82rem;

  margin-bottom:26px;
}

.hero-text{
  max-width:680px;

  font-size:1.15rem;
}

.hero-actions{
  margin-top:42px;

  display:flex;
  gap:18px;

  flex-wrap:wrap;
}

.hero-visual{
  position:relative;
}

.hero-visual img{
  width:100%;
  display:block;

  border-radius:32px;

  opacity:.94;

  box-shadow:
    0 30px 60px
    rgba(0,0,0,.35);
}

/* ===================
   Buttons
=================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 28px;

  border-radius:18px;

  text-decoration:none;

  font-weight:600;

  transition:.25s ease;
}

.btn-primary{
  background:var(--gold);
  color:#08111f;

  box-shadow:
    0 12px 28px
    rgba(212,175,99,.18);
}

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

.btn-secondary{
  border:
    1px solid
    rgba(255,255,255,.12);

  color:var(--text);

  background:
    rgba(255,255,255,.03);
}

.btn-secondary:hover{
  border-color:var(--gold);
}

/* ===================
   Cards
=================== */

.card-grid{
  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:28px;
}

.glass-card{
  background:var(--glass);

  border:
    1px solid
    var(--glass-border);

  backdrop-filter:blur(14px);

  border-radius:30px;

  padding:42px;

  transition:.3s ease;
}

.glass-card:hover{
  transform:translateY(-4px);

  border-color:
    rgba(212,175,99,.22);
}

/* ===================
   Research
=================== */

.domain-grid{
  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:22px;
}

.domain-card{
  background:var(--glass);

  border:
    1px solid
    var(--glass-border);

  border-radius:24px;

  padding:32px;

  text-align:center;

  font-weight:600;

  transition:.25s ease;
}

.domain-card:hover{
  transform:translateY(-4px);

  border-color:
    rgba(212,175,99,.22);
}

/* ===================
   Network Visual
=================== */

.network-image{
  margin:50px 0;
}

.network-image img{
  width:100%;
  display:block;

  border-radius:32px;

  opacity:.94;

  box-shadow:
    0 25px 60px
    rgba(0,0,0,.35);
}

/* ===================
   Locations
=================== */

.location-pills{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;

  gap:14px;
}

.location-pills span{
  padding:15px 24px;

  border-radius:999px;

  background:
    rgba(255,255,255,.03);

  border:
    1px solid
    rgba(255,255,255,.08);

  color:var(--text);

  transition:.25s ease;
}

.location-pills span:hover{
  border-color:
    rgba(212,175,99,.3);
}

/* ===================
   Footer
=================== */

footer{
  padding:80px 0;

  border-top:
    1px solid
    rgba(255,255,255,.05);
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  gap:40px;
}

.footer-brand{
  font-size:1.05rem;
  font-weight:700;

  margin-bottom:10px;
}

.footer-links{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--muted);
  text-decoration:none;

  transition:.25s ease;
}

.footer-links a:hover{
  color:var(--gold);
}

/* ===================
   Mobile
=================== */

@media(max-width:900px){

  .navbar{
    flex-direction:column;
    gap:20px;

    padding:20px 5%;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }

  .hero{
    min-height:auto;
    padding:110px 0 70px;
  }

  .hero-layout{
    grid-template-columns:1fr;
    gap:50px;
  }

  h1{
    font-size:
      clamp(
        2.8rem,
        12vw,
        4.3rem
      );
  }

  .hero-text{
    font-size:1rem;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .card-grid,
  .domain-grid{
    grid-template-columns:1fr;
  }

  .glass-card,
  .domain-card{
    padding:32px;
  }

  .footer-content{
    flex-direction:column;
  }

  .section{
    padding:90px 0;
  }

  .hero-visual img,
  .network-image img{
    border-radius:24px;
  }
  }
