:root{
  --bg:#0e0e10;
  --bg-alt:#17171a;
  --card:#1e1e22;
  --text:#f4f3f1;
  --muted:#a6a3a0;
  --accent:#2b7de9;
  --accent-2:#ffb400;
  --line:#2b2b2f;
  --radius:14px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Segoe UI', system-ui, -apple-system, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.container{max-width:1140px; margin:0 auto; padding:0 24px;}
.eyebrow{
  text-transform:uppercase; letter-spacing:2px; font-size:12px; font-weight:700;
  color:var(--accent-2); margin-bottom:10px; display:block;
}
h1,h2,h3{font-weight:800; line-height:1.15;}
h1{font-size:clamp(36px,6vw,60px);}
h2{font-size:clamp(28px,4vw,40px);}
h3{font-size:20px;}
p.lead{color:var(--muted); font-size:18px; max-width:680px;}
section{padding:96px 0;}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--accent-2); color:#101010; font-weight:700;
  padding:14px 28px; border-radius:999px; border:none; cursor:pointer;
  font-size:15px; transition:transform .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn.ghost{
  background:transparent; color:var(--text); border:1px solid var(--line);
}
.btn.ghost:hover{border-color:var(--accent-2); background:transparent;}
.btn.blue{background:var(--accent); color:#fff;}

/* HEADER */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(14,14,16,.9); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px; max-width:1140px; margin:0 auto; position:relative;
}
.logo img{height:34px; width:auto;}
.nav-links{display:flex; gap:30px; font-size:15px; font-weight:600;}
.nav-links a{color:var(--muted); transition:color .15s;}
.nav-links a:hover{color:var(--text);}
.menu-toggle{
  display:none; background:none; border:1px solid var(--line); color:var(--text);
  font-size:18px; width:40px; height:40px; border-radius:8px; cursor:pointer;
  align-items:center; justify-content:center; flex-shrink:0;
}

/* HERO */
.hero{
  padding:100px 0 80px;
  background:
    radial-gradient(circle at 15% 20%, rgba(43,125,233,.15), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(255,180,0,.10), transparent 45%);
}
.hero-inner{display:flex; flex-direction:column; gap:24px; align-items:flex-start;}
.hero-cta{display:flex; gap:16px; margin-top:8px; flex-wrap:wrap;}
.stat-row{display:flex; gap:48px; margin-top:48px; flex-wrap:wrap;}
.stat-num{font-size:30px; font-weight:800; color:var(--accent-2);}
.stat-label{font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:1px;}

/* SECTION HEAD */
.section-head{max-width:680px; margin-bottom:56px;}

/* ABOUT */
.about-wrap{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:start;}
.vm-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; margin-bottom:20px;
}
.vm-card h3{color:var(--accent-2); font-size:15px; text-transform:uppercase; letter-spacing:1px; margin-bottom:10px;}
.vm-card p{color:var(--muted); font-size:15px;}

/* SERVICES */
.cards-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px;}
.card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px; transition:transform .15s ease, border-color .15s ease;
}
.card:hover{transform:translateY(-4px); border-color:var(--accent);}
.pillar-num{
  font-size:13px; font-weight:800; color:var(--accent-2); letter-spacing:1px; margin-bottom:14px;
}
.card p.purpose{color:var(--muted); font-size:14px; margin:10px 0 16px;}
.scope-list{list-style:none; display:flex; flex-direction:column; gap:8px; font-size:14px; color:var(--muted);}
.scope-list li:before{content:"— "; color:var(--accent-2);}

.supporting-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; margin-top:24px;}
.support-card{
  background:var(--bg-alt); border:1px solid var(--line); border-radius:var(--radius); padding:24px;
}
.support-card ul{list-style:none; margin-top:10px; font-size:13px; color:var(--muted); display:flex; flex-direction:column; gap:6px;}
.support-card ul li:before{content:"✓ "; color:var(--accent);}
.support-note{font-size:12px; color:var(--muted); font-style:italic; margin-top:8px;}

/* WHY CHOOSE */
.why-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; margin-top:16px;}
.why-item{display:flex; gap:14px; padding:20px; background:var(--card); border:1px solid var(--line); border-radius:12px;}
.why-mark{
  flex-shrink:0; width:28px; height:28px; border-radius:8px; background:rgba(255,180,0,.15);
  display:flex; align-items:center; justify-content:center; color:var(--accent-2); font-weight:800;
}
.why-item h3{font-size:16px; margin-bottom:6px;}
.why-item p{font-size:14px; color:var(--muted);}

.invest-box{
  margin-top:56px; background:linear-gradient(135deg, rgba(43,125,233,.12), rgba(255,180,0,.08));
  border:1px solid var(--line); border-radius:var(--radius); padding:40px;
  display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;
}
.invest-box p{color:var(--muted); max-width:560px; font-size:15px;}

/* TEAM */
.team-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:28px; margin-top:48px;}
.team-card{text-align:center;}
.avatar-photo{
  width:140px; height:140px; border-radius:50%; margin:0 auto 16px;
  object-fit:cover; border:3px solid var(--line);
}
.team-role{color:var(--accent-2); font-size:12px; text-transform:uppercase; letter-spacing:1px; margin:4px 0 10px;}
.team-bio{font-size:13px; color:var(--muted); max-width:260px; margin:0 auto;}

/* CONTACT */
.contact-wrap{
  background:var(--card); border:1px solid var(--line); border-radius:24px;
  padding:56px; display:grid; grid-template-columns:1fr 1fr; gap:48px;
}
.form-group{margin-bottom:18px;}
label{display:block; font-size:13px; color:var(--muted); margin-bottom:6px; font-weight:600;}
input, textarea{
  width:100%; background:var(--bg-alt); border:1px solid var(--line); border-radius:10px;
  padding:12px 14px; color:var(--text); font-size:14px; font-family:inherit;
}
input:focus, textarea:focus{outline:none; border-color:var(--accent-2);}
.contact-details{display:flex; flex-direction:column; gap:20px;}
.contact-details a{color:var(--text); font-weight:600;}
.contact-details .label{font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:4px;}

footer{border-top:1px solid var(--line); padding:32px 0; text-align:center; color:var(--muted); font-size:13px;}
footer img{height:22px; margin:0 auto 10px;}

/* CAREERS PAGE */
.role-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:40px; margin-bottom:24px;
}
.role-meta{display:flex; gap:24px; flex-wrap:wrap; margin:16px 0 24px; font-size:14px; color:var(--muted);}
.role-meta strong{color:var(--text);}
.deadline-banner{
  background:linear-gradient(135deg, rgba(255,180,0,.15), rgba(43,125,233,.1));
  border:1px solid var(--line); border-radius:var(--radius);
  padding:24px 32px; display:flex; justify-content:space-between; align-items:center;
  gap:20px; flex-wrap:wrap; margin-bottom:48px;
}
.deadline-banner .date{font-size:22px; font-weight:800; color:var(--accent-2);}
.form-embed{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:16px; margin-top:16px;
}
.form-embed iframe{width:100%; min-height:1100px; border:none; border-radius:8px; background:#fff;}

/* BLOG LISTING */
.blog-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px;}
.blog-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; transition:transform .15s ease, border-color .15s ease; display:flex; flex-direction:column;
}
.blog-card:hover{transform:translateY(-4px); border-color:var(--accent);}
.blog-thumb{
  height:180px; background:linear-gradient(135deg,#2b2b2f,#1a1a1c);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:1px;
}
.blog-card-body{padding:24px; display:flex; flex-direction:column; gap:10px; flex:1;}
.blog-card-body h3{font-size:18px;}
.blog-card-body p{color:var(--muted); font-size:14px; flex:1;}
.blog-card-body .btn{align-self:flex-start; padding:10px 20px; font-size:13px;}

/* BLOG ARTICLE */
.article-hero{
  height:260px; border-radius:var(--radius); background:linear-gradient(135deg,#2b2b2f,#1a1a1c);
  display:flex; align-items:center; justify-content:center; color:var(--muted);
  font-size:12px; text-transform:uppercase; letter-spacing:1px; margin-bottom:40px;
}
.article-body{max-width:760px; margin:0 auto;}
.article-body h3{margin:32px 0 12px; font-size:20px;}
.article-body p{color:var(--muted); font-size:16px; margin-bottom:16px;}
.article-body p:first-of-type{font-size:18px; color:var(--text);}
.article-cta{
  max-width:760px; margin:48px auto 0; background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); padding:32px; text-align:center;
}
.article-cta p{color:var(--muted); margin-bottom:20px;}
.article-meta{max-width:760px; margin:0 auto 24px; color:var(--muted); font-size:13px;}
.related-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; margin-top:24px;}
.related-card{
  background:var(--card); border:1px solid var(--line); border-radius:12px; padding:20px;
  transition:border-color .15s ease;
}
.related-card:hover{border-color:var(--accent);}
.related-card h3{font-size:15px;}

@media (max-width:860px){
  .about-wrap, .contact-wrap{grid-template-columns:1fr;}
  .menu-toggle{display:flex;}
  .nav-links{
    display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0; background:var(--bg);
    border-bottom:1px solid var(--line); padding:8px 24px 16px;
  }
  .nav-links.open{display:flex;}
  .nav-links a{padding:12px 0; border-bottom:1px solid var(--line);}
  .nav-links a:last-child{border-bottom:none;}
  .invest-box{flex-direction:column; align-items:flex-start;}
  .deadline-banner{flex-direction:column; align-items:flex-start;}
}
