:root{

  --bg:#050816;
  --surface:rgba(255,255,255,.06);
  --surface2:rgba(255,255,255,.08);

  --border:rgba(255,255,255,.12);

  --text:#f8fafc;
  --muted:#94a3b8;

  --accent:#6366f1;

  --radius:30px;

  --font-serif:'Playfair Display', serif;
  --font-sans:'DM Sans', sans-serif;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{

  background:var(--bg);

  color:var(--text);

  font-family:var(--font-sans);

  overflow-x:hidden;
}

.bg-canvas{

  position:fixed;

  inset:0;

  overflow:hidden;

  z-index:-2;
}

.bg-orb{

  position:absolute;

  border-radius:50%;

  filter:blur(100px);

  opacity:.25;
}

.orb-1{

  width:420px;
  height:420px;

  background:#6366f1;

  top:-100px;
  left:-120px;
}

.orb-2{

  width:320px;
  height:320px;

  background:#06b6d4;

  bottom:-100px;
  right:-100px;
}

.orb-3{

  width:240px;
  height:240px;

  background:#9333ea;

  top:40%;
  left:50%;
}

.dot-grid{

  position:fixed;

  inset:0;

  background-image:
    radial-gradient(
      rgba(255,255,255,.08) 1px,
      transparent 1px
    );

  background-size:26px 26px;

  z-index:-1;
}

.navbar{

  width:100%;

  display:flex;

  align-items:center;
  justify-content:space-between;

  padding:28px 7vw;

  backdrop-filter:blur(20px);

  background:
    rgba(5,8,22,.55);

  border-bottom:
    1px solid rgba(255,255,255,.06);
}

.nav-brand{

  display:flex;

  align-items:center;

  gap:14px;

  text-decoration:none;

  color:white;
}

.nav-brand img{
  width:48px;
}

.brand-main{

  font-size:26px;

  font-weight:800;
}

.brand-divider{

  width:1px;
  height:26px;

  background:
    rgba(255,255,255,.2);
}

.brand-sub{

  font-size:13px;

  color:var(--muted);
}

.nav-links{

  display:flex;

  gap:26px;
}

.nav-links a{

  text-decoration:none;

  color:white;

  font-size:14px;

  font-weight:600;
}

/* PAGE */

.page{

  width:min(1240px,92%);

  margin:auto;

  padding:80px 0;
}

.hero{

  text-align:center;

  margin-bottom:90px;
}

.hero-badge{

  display:inline-flex;

  padding:10px 18px;

  border-radius:999px;

  background:
    rgba(99,102,241,.14);

  color:#c7d2fe;

  font-size:12px;

  font-weight:700;

  text-transform:uppercase;

  letter-spacing:.12em;

  margin-bottom:28px;
}

.hero h1{

  font-size:72px;

  line-height:1.05;

  margin-bottom:28px;

  font-family:var(--font-serif);
}

.hero h1 em{

  display:block;

  color:#c7d2fe;

  font-style:normal;
}

.hero-sub{

  max-width:860px;

  margin:auto;

  font-size:18px;

  line-height:1.9;

  color:var(--muted);
}

.team-section{

  margin-bottom:90px;
}

.section-tag{

  display:inline-block;

  padding:8px 14px;

  border-radius:999px;

  background:
    rgba(255,255,255,.06);

  color:#c7d2fe;

  font-size:12px;

  letter-spacing:.08em;

  text-transform:uppercase;

  margin-bottom:20px;
}

.team-title{

  font-size:52px;

  margin-bottom:50px;

  font-family:var(--font-serif);
}

.team-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

  gap:28px;
}

.developer-card{

  background:var(--surface);

  border:1px solid var(--border);

  border-radius:30px;

  padding:36px;

  backdrop-filter:blur(20px);

  transition:
    transform .25s,
    border .25s;
}

.developer-card:hover{

  transform:translateY(-8px);

  border-color:
    rgba(99,102,241,.45);
}

.dev-avatar{

  width:72px;
  height:72px;

  border-radius:50%;

  display:flex;

  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      #6366f1,
      #8b5cf6
    );

  font-size:24px;

  font-weight:800;

  margin-bottom:24px;
}

.developer-card h3{

  font-size:30px;

  margin-bottom:10px;

  font-family:var(--font-serif);
}

.dev-role{

  color:#c7d2fe;

  font-size:14px;

  margin-bottom:18px;

  font-weight:700;
}

.developer-card p{

  color:var(--muted);

  line-height:1.9;

  margin-bottom:24px;
}

.tech-stack{

  display:flex;

  flex-wrap:wrap;

  gap:12px;
}

.tech-stack span{

  padding:10px 14px;

  border-radius:999px;

  background:
    rgba(255,255,255,.08);

  font-size:12px;

  font-weight:700;
}

.quote-card{

  text-align:center;

  background:var(--surface);

  border:1px solid var(--border);

  border-radius:var(--radius);

  padding:70px 40px;

  margin-bottom:80px;
}

.quote-mark{

  font-size:80px;

  color:#818cf8;

  margin-bottom:20px;
}

.quote-text{

  font-size:30px;

  line-height:1.6;

  max-width:760px;

  margin:auto;

  font-family:var(--font-serif);

  margin-bottom:28px;
}

.quote-author{

  color:var(--muted);

  font-size:15px;
}

footer{

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:30px;

  flex-wrap:wrap;

  border-top:
    1px solid rgba(255,255,255,.08);

  padding-top:34px;
}

.footer-left{

  display:flex;

  flex-direction:column;

  gap:8px;
}

.footer-logo{

  font-size:24px;

  font-weight:800;
}

.footer-text{

  color:var(--muted);

  font-size:14px;
}

.footer-links{

  display:flex;

  gap:24px;
}

.footer-links a{

  color:var(--muted);

  text-decoration:none;
}

@media (max-width:980px){

  .hero h1{
    font-size:52px;
  }

  .team-title{
    font-size:40px;
  }
}

@media (max-width:768px){

  .navbar{

    flex-direction:column;

    gap:18px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero-sub{
    font-size:15px;
  }

  .team-title{
    font-size:32px;
  }

  .quote-text{
    font-size:24px;
  }
}

@media (max-width:480px){

  .hero h1{
    font-size:30px;
  }

  .developer-card{
    padding:28px;
  }

  .developer-card h3{
    font-size:24px;
  }

  .quote-text{
    font-size:20px;
  }
}