:root{
  --bg:#0b0f17;
  --panel:#0f1626;
  --text:#e9eefc;
  --muted:#a9b3c7;
  --line:rgba(233,238,252,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(98,209,255,.16), transparent 60%),
              radial-gradient(1000px 500px at 85% 10%, rgba(124,255,198,.10), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height:1.6;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

/* Topbar */
.topbar{background: rgba(15,22,38,.65); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px);}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:10px 0; gap:14px;}
.topbar__left{margin:0; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted);}
.topbar__right{display:flex; gap:14px}
.topbar__link{font-size:13px; color:var(--muted)}
.topbar__link:hover{color:var(--text)}

/* Header */
.header{position:sticky; top:0; z-index:50; background: rgba(11,15,23,.75); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px);}
.header__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px;}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{width:44px; height:44px; border-radius:12px; object-fit:cover; border:1px solid var(--line);}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:800; letter-spacing:.02em}
.brand__tag{font-size:12px; color:var(--muted); margin-top:4px}

/* Nav */
.nav{display:flex; align-items:center; gap:16px}
.nav a{font-size:14px; color:var(--muted); padding:10px 10px; border-radius:12px;}
.nav a:hover{color:var(--text); background:rgba(233,238,252,.06)}
.nav__toggle{display:none}
.nav__hamburger{display:none; width:44px; height:44px; border:1px solid var(--line); border-radius:14px; align-items:center; justify-content:center; gap:5px; cursor:pointer;}
.nav__hamburger span{display:block; width:18px; height:2px; background:var(--text); opacity:.85; border-radius:99px;}

/* Buttons */
.btn{display:inline-flex; align-items:center; justify-content:center; padding:12px 16px; border-radius:14px; border:1px solid rgba(233,238,252,.18); background: rgba(233,238,252,.08); font-weight:700;}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{background:transparent; border:1px solid var(--line)}
.btn--small{padding:10px 12px; font-size:14px}
.link{color:#62d1ff}
.link:hover{color:var(--text)}

/* Hero */
.hero{position:relative; overflow:hidden; border-bottom:1px solid var(--line);}
.hero__bg{position:absolute; inset:0; background: linear-gradient(to bottom, rgba(11,15,23,.45), rgba(11,15,23,.92)), url("images/hero.jpg") center/cover no-repeat; transform:scale(1.02);}
.hero__inner{position:relative; padding:70px 0 60px; display:grid; grid-template-columns: 1.2fr .8fr; gap:26px; align-items:start;}
.hero__content h1{font-size: clamp(34px, 4.6vw, 54px); line-height:1.06; margin:0 0 12px; letter-spacing:-.02em;}
.lead{color: rgba(233,238,252,.86); font-size:16px; max-width: 60ch; margin:0 0 18px;}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0}
.hero__stats{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.stat{padding:12px 14px; border:1px solid var(--line); border-radius:16px; background: rgba(15,22,38,.45); min-width: 140px;}
.stat__num{font-weight:900}
.stat__label{font-size:12px; color:var(--muted); margin-top:4px}
.hero__card{border:1px solid var(--line); border-radius: var(--radius2); overflow:hidden; background: rgba(15,22,38,.55); box-shadow: var(--shadow);}
.hero__card img{height:220px; object-fit:cover}
.hero__cardBody{padding:16px}
.hero__cardBody h3{margin:0 0 6px}
.hero__cardBody p{margin:0 0 10px; color:rgba(233,238,252,.82)}

/* Sections */
.section{padding:70px 0}
.section--alt{background: linear-gradient(180deg, rgba(15,22,38,.55), rgba(15,22,38,.22)); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.section__head{margin-bottom:22px}
.section__head h2{margin:0 0 8px; font-size: clamp(22px, 2.6vw, 30px);}
.section__head p{margin:0; color: rgba(233,238,252,.78); max-width: 75ch;}

/* Highlights strip */
.strip{padding:18px 0; border-bottom:1px solid var(--line); background: rgba(15,22,38,.18);}
.strip__inner{display:flex; flex-wrap:wrap; gap:10px; justify-content:center;}
.pill{padding:10px 14px; border-radius:999px; border:1px solid var(--line); background: rgba(15,22,38,.35); color: rgba(233,238,252,.82); font-size:13px;}

/* Cards */
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.cards--4{grid-template-columns: repeat(4, 1fr);}
.cards--2{grid-template-columns: repeat(2, 1fr);}
.card{border:1px solid var(--line); border-radius: var(--radius); padding:16px; background: rgba(15,22,38,.40);}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color: rgba(233,238,252,.80)}

/* 2-column layout */
.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:26px; align-items:start;}

/* Media card */
.mediaCard{border-radius: var(--radius2); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow); position:relative; background: rgba(15,22,38,.35);}
.mediaCard img{height:100%; min-height: 420px; object-fit:cover;}
.mediaCard__overlay{position:absolute; inset:auto 14px 14px 14px; padding:14px; border-radius:18px; border:1px solid var(--line); background: rgba(11,15,23,.55); backdrop-filter: blur(10px);}

/* Why features */
.features{display:grid; gap:12px; margin-top:16px;}
.feature{display:flex; gap:12px; align-items:flex-start; padding:14px; border-radius: 18px; border:1px solid var(--line); background: rgba(15,22,38,.38);}
.feature__icon{width:42px; height:42px; border-radius:14px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(233,238,252,.14); background: rgba(233,238,252,.06); font-size:18px;}
.feature h3{margin:0 0 4px}
.feature p{margin:0; color: rgba(233,238,252,.78)}

/* Quote panel */
.quotePanel{border-radius: var(--radius2); border:1px solid var(--line); background: rgba(15,22,38,.45); box-shadow: var(--shadow); padding:18px;}
.quotePanel h3{margin:0 0 10px}
.quotePanel p{margin:0 0 12px; color: rgba(233,238,252,.80)}
.quotePanel__mini{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;}
.miniStat{padding:12px 14px; border-radius:16px; border:1px solid var(--line); background: rgba(11,15,23,.45); min-width: 140px;}
.miniStat__num{font-weight:900}
.miniStat__label{margin-top:4px; font-size:12px; color: var(--muted)}

/* Roster */
.roster{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px;}
.roster__item{border:1px solid var(--line); border-radius: var(--radius); padding:14px; background: rgba(15,22,38,.35); display:flex; gap:12px; align-items:center;}
.avatar{width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-weight:900; background: rgba(233,238,252,.08); border:1px solid rgba(233,238,252,.14);}
.avatar--small{width:40px; height:40px; border-radius:14px;}
.roster__item h4{margin:0 0 2px}
.roster__item p{margin:0; color:rgba(233,238,252,.72); font-size:13px}

/* Testimonials */
.testimonial{display:flex; flex-direction:column; gap:10px;}
.testimonial__top{display:flex; gap:12px; align-items:center;}
.testimonial__name{margin:0; font-size:16px;}
.testimonial__role{margin:2px 0 0; font-size:13px; color: var(--muted);}
.testimonial__bio{margin:0; color: rgba(233,238,252,.78);}
.testimonial__quote{margin:0; padding:12px 14px; border-radius:16px; border:1px solid var(--line); background: rgba(11,15,23,.45); color: rgba(233,238,252,.86); font-style: italic;}

/* Articles */
.article__meta{font-size:12px; color: var(--muted); letter-spacing:.02em; margin-bottom:8px;}
.article__title{margin:0 0 8px;}
.article__desc{margin:0 0 12px; color: rgba(233,238,252,.80);}

/* Contact ticks + form */
.ticks{margin-top:16px; display:grid; gap:10px;}
.tick{padding:12px 14px; border-radius:16px; border:1px solid var(--line); background: rgba(15,22,38,.40);}
.contactBox{margin-top:14px; border:1px solid var(--line); border-radius: var(--radius); padding:14px; background: rgba(15,22,38,.35);}
.contactLine{margin:8px 0; color:rgba(233,238,252,.80)}
.contactLine span{color:var(--muted); margin-right:8px}
.note{color:rgba(233,238,252,.65); font-size:13px; margin-top:10px}

.form{border:1px solid var(--line); border-radius: var(--radius2); padding:16px; background: rgba(15,22,38,.45);}
.form label{display:block; font-size:13px; color:rgba(233,238,252,.82); margin-bottom:12px}
.form input, .form select, .form textarea{width:100%; margin-top:6px; padding:12px 12px; border-radius: 14px; border:1px solid rgba(233,238,252,.14); background: rgba(11,15,23,.55); color:var(--text); outline:none;}
.form input:focus, .form select:focus, .form textarea:focus{border-color: rgba(233,238,252,.35);}
.form__hint{color:rgba(233,238,252,.62); font-size:12px; margin:10px 0 0}

/* Footer */
.footer{padding:22px 0; border-top:1px solid var(--line); background: rgba(11,15,23,.85);}
.footer__inner{display:flex; justify-content:space-between; gap:16px; align-items:flex-start; flex-wrap:wrap;}
.footer__brand{margin:0; font-weight:900; letter-spacing:.02em;}
.footer__small{margin:6px 0 0; color:var(--muted); font-size:13px; max-width: 70ch;}
.footer__links{display:flex; gap:14px; flex-wrap:wrap;}
.footer__links a{color:var(--muted); font-size:13px;}
.footer__links a:hover{color:var(--text)}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; padding:54px 0 44px}
  .grid-2{grid-template-columns:1fr;}
  .cards--4{grid-template-columns: repeat(2, 1fr);}
  .cards--2{grid-template-columns:1fr;}
  .mediaCard img{min-height: 320px;}
  .roster{grid-template-columns:1fr;}
}
@media (max-width: 720px){
  .nav__hamburger{display:flex}
  .nav{
    position:absolute; right:20px; top:70px;
    display:none; flex-direction:column;
    min-width: 220px; padding:10px;
    border:1px solid var(--line); border-radius: 18px;
    background: rgba(11,15,23,.95); box-shadow: var(--shadow);
  }
  .nav a{padding:12px 12px}
  .nav__toggle:checked ~ .nav{display:flex}
  .cards, .cards--4{grid-template-columns: 1fr;}
}
