:root{
  --bg:#050505;
  --bg-soft:#0c0f0d;
  --card:#101414;
  --card-2:#151a18;
  --text:#f8fafc;
  --muted:#b6c2bd;
  --line:#25302c;
  --primary:#39ff14;
  --primary-2:#d8ff28;
  --white:#ffffff;
  --shadow:0 20px 80px rgba(57,255,20,.12);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 15% 10%,rgba(57,255,20,.13),transparent 28%),
    radial-gradient(circle at 85% 20%,rgba(216,255,40,.08),transparent 25%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(5,5,5,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
  width:min(1180px,92%);
  margin:auto;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{width:210px}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-links a{
  color:var(--muted);
  font-size:.95rem;
  font-weight:600;
  transition:.25s ease;
}

.nav-links a:hover,
.nav-links a:focus{color:var(--primary)}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  background:var(--card);
  border-radius:14px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  height:2px;
  width:20px;
  background:var(--text);
  margin:5px auto;
}

.section{
  width:min(1180px,92%);
  margin:auto;
  padding:100px 0;
}

.hero{
  min-height:calc(100vh - 82px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:60px;
}

.eyebrow{
  color:var(--primary);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.78rem;
  font-weight:800;
  margin:0 0 18px;
}

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

h1{
  font-size:clamp(2.7rem,6vw,5.9rem);
  letter-spacing:-.06em;
  max-width:820px;
}

h2{
  font-size:clamp(2rem,4vw,3.6rem);
  letter-spacing:-.04em;
  max-width:820px;
}

h3{font-size:1.35rem}

.hero-text,
.section-heading p,
.about-content p,
.contact-info p{
  color:var(--muted);
  font-size:1.08rem;
  max-width:720px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  min-height:52px;
  padding:0 24px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:.25s ease;
}

.btn-primary{
  color:#050505;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  box-shadow:0 0 24px rgba(57,255,20,.22);
}

.btn-outline{
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:var(--text);
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}

.btn-small{
  min-height:44px;
  background:var(--white);
  color:#050505;
  padding:0 18px;
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:46px;
  max-width:610px;
}

.hero-metrics div{
  padding:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
}

.hero-metrics strong{
  display:block;
  color:var(--primary-2);
  font-size:1.1rem;
}

.hero-metrics span{color:var(--muted);font-size:.9rem}

.logo-card{
  border-radius:36px;
  padding:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.logo-card img{
  border-radius:26px;
  background:#000;
}

.section-heading{
  margin-bottom:44px;
}

.cards-grid,
.portfolio-grid,
.course-layout{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card,
.portfolio-card,
.course-card,
.values-grid div,
.audience-box,
.testimonial,
.resources-box,
.contact-form{
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  padding:28px;
  transition:.25s ease;
}

.service-card:hover,
.portfolio-card:hover,
.course-card:hover{
  border-color:rgba(57,255,20,.55);
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.card-number,
.portfolio-top,
.course-level{
  color:var(--primary);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.service-card h3,
.portfolio-card h3,
.course-card h3{margin:18px 0 12px}

.service-card p,
.portfolio-card p,
.course-card p,
.course-card li,
.values-grid p,
.audience-box p,
.testimonial p,
.resources-box p{
  color:var(--muted);
}

.audience-box{margin-top:22px}

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

.tags span{
  border:1px solid rgba(57,255,20,.35);
  background:rgba(57,255,20,.07);
  padding:9px 14px;
  border-radius:999px;
  color:#eaffdf;
  font-weight:700;
  font-size:.9rem;
}

.about{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:start;
}

.values-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

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

.testimonial{
  margin-top:22px;
  border-left:4px solid var(--primary);
}

.testimonial blockquote{
  margin:0;
  font-family:"Space Grotesk",Inter,sans-serif;
  font-size:1.4rem;
}

.learn{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.learning-path{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:28px;
}

.path-step{
  position:relative;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
}

.path-step.active{
  border-color:rgba(57,255,20,.6);
  box-shadow:var(--shadow);
}

.path-step span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#050505;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  font-weight:900;
  margin-bottom:18px;
}

.path-step p{color:var(--muted)}

.course-layout{grid-template-columns:repeat(3,1fr)}
.course-card ul{padding-left:18px;margin-bottom:24px}

.course-view{
  margin-top:26px;
  padding:28px;
  border-radius:var(--radius);
  border:1px solid rgba(57,255,20,.45);
  background:rgba(57,255,20,.06);
}

.course-view pre{
  white-space:pre-wrap;
  overflow:auto;
  padding:18px;
  background:#050505;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
}

.close-course{
  float:right;
  background:transparent;
  border:1px solid rgba(255,255,255,.15);
  color:var(--text);
  border-radius:999px;
  padding:8px 14px;
  cursor:pointer;
}

.resources-box{
  margin-top:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.contact{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
}

.contact-details{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
}

.contact-form{
  display:grid;
  gap:12px;
}

.contact-form label{
  font-weight:800;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  background:#070908;
  color:var(--text);
  border-radius:16px;
  padding:15px 16px;
  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(57,255,20,.08);
}

.form-note{
  color:var(--muted);
  font-size:.9rem;
  margin:0;
}

.footer{
  width:min(1180px,92%);
  margin:auto;
  padding:44px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
}

.footer img{width:210px}
.footer a{color:var(--primary);font-weight:800}

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

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

@media (max-width:980px){
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    inset:82px 4% auto 4%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:22px;
    background:#080a09;
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
  }
  .nav-links.open{display:flex}
  .hero,
  .about,
  .contact{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .learning-path,
  .course-layout,
  .portfolio-grid{grid-template-columns:1fr 1fr}
  .hero{padding-top:50px}
}

@media (max-width:640px){
  .section{padding:70px 0}
  .brand img,.footer img{width:170px}
  .cards-grid,
  .learning-path,
  .course-layout,
  .portfolio-grid,
  .values-grid,
  .hero-metrics{grid-template-columns:1fr}
  .resources-box,
  .footer{flex-direction:column;align-items:flex-start}
  .hero-actions .btn{width:100%}
}


/* WordPress content */
.custom-logo{max-width:210px;height:auto}
.page-content{
  max-width:900px;
  padding:34px;
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.1);
}
.wp-content{
  color:var(--muted);
  font-size:1.08rem;
}
.wp-content h2,.wp-content h3{
  color:var(--text);
  margin-top:34px;
}
.wp-content a{
  color:var(--primary);
  font-weight:800;
}
.footer-links{
  display:flex;
  gap:16px;
  list-style:none;
  margin:0;
  padding:0;
  flex-wrap:wrap;
}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--primary)}
