
:root{
  --bg: #0b1220;
  --card: #0f1a33;
  --alt: #0c1730;
  --text: #e8eefc;
  --muted: rgba(232,238,252,.78);
  --line: rgba(232,238,252,.14);
  --accent: #7bd8ff;
  --accent2: #a3ffb0;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(123,216,255,.25), transparent 60%),
              radial-gradient(1000px 500px at 100% 10%, rgba(163,255,176,.18), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{color: inherit}
.container{max-width:1100px; margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px; z-index:9999}

.topbar{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.6);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand__mark{
  width:32px; height:32px; border-radius:10px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(123,216,255,.9), rgba(163,255,176,.9));
  color:#08101f;
}
.brand__name{letter-spacing:.2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{opacity:.9; text-decoration:none; font-weight:600; font-size:14px}
.nav a:hover{opacity:1; text-decoration:underline}
@media (max-width:820px){
  .nav{display:none}
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(123,216,255,.95), rgba(163,255,176,.9));
  color:#08101f; text-decoration:none; font-weight:800;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow:none;
}
.btn--sm{padding:9px 12px; font-size:13px}

.hero{padding:56px 0 28px 0}
.hero__grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width:920px){
  .hero__grid{grid-template-columns:1fr; }
}
.kicker{
  margin:0 0 10px 0;
  color: rgba(232,238,252,.88);
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}
h1{margin:0 0 10px 0; font-size:44px; line-height:1.05}
@media (max-width:520px){ h1{font-size:34px}}
.lead{margin:0 0 18px 0; color: var(--muted); font-size:16px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin: 12px 0 16px 0}
.hero__logos{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
  padding-top: 10px; border-top: 1px solid var(--line);
  opacity: .92;
}
.hero__logos img{height:75px; width:auto; display:block; filter: drop-shadow(0 4px 14px rgba(0,0,0,.35))}
.hero__media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.hero__media img{width:100%; height:100%; object-fit:cover; display:block}

.section{padding:42px 0}
.section--alt{background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width:920px){ .cards{grid-template-columns: repeat(2, 1fr)} }
@media (max-width:520px){ .cards{grid-template-columns: 1fr} }
.card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:16px 16px 14px 16px;
}
.card h3{margin:0 0 6px 0}
.card p{margin:0; color: var(--muted)}

.quotes{
  margin-top: 18px;
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
@media (max-width:920px){ .quotes{grid-template-columns:1fr} }
.quote{
  margin:0;
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(232,238,252,.22);
  border-radius: var(--radius);
  padding:16px;
}
.quote blockquote{margin:0 0 10px 0; color: rgba(232,238,252,.92)}
.quote figcaption{color: var(--muted); font-size:13px}

h2{margin:0 0 12px 0; font-size:28px}
h3{margin:0 0 8px 0}
p{margin:0 0 10px 0}

.two-col{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}
@media (max-width:920px){ .two-col{grid-template-columns:1fr} }

.steps{margin-top:14px; display:grid; gap:12px}
.step{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 14px 6px 14px;
}
.step ol{margin:0 0 10px 18px; color: var(--muted)}
.step p{color: var(--muted)}

.media-stack{display:grid; gap:14px}
.media-stack img{
  width:100%; height:auto; display:block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-row{margin-top: 12px}

.gallery{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
@media (max-width:920px){ .gallery{grid-template-columns: repeat(2, 1fr)}}
@media (max-width:520px){ .gallery{grid-template-columns: 1fr}}
.gallery img{
  width:100%; height:180px; object-fit:cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.stats{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width:520px){ .stats{grid-template-columns: 1fr}}
.stat{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
}
.stat__num{font-size:28px; font-weight:800}
.stat__label{color: var(--muted)}

.muted{color: var(--muted)}
.press{display:grid; gap:10px; margin-top: 10px}
.press__item{
  padding:14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration:none;
  background: rgba(255,255,255,.02);
}
.press__item span{display:block; margin-top: 4px; color: var(--muted)}
.press__item:hover{transform: translateY(-1px)}

.faq{margin-top: 16px}
details{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
}
summary{cursor:pointer; font-weight:700}
details p{margin-top: 10px; color: var(--muted)}

.partner-grid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:10px; margin-top: 12px;
}
@media (max-width:920px){ .partner-grid{grid-template-columns: 1fr} }
.partner{
  padding:12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration:none;
  background: rgba(255,255,255,.02);
  font-weight:700;
}
.partner:hover{transform: translateY(-1px)}

.mt{margin-top: 18px}
.awards{margin: 10px 0 0 18px; color: var(--muted)}
.contact-box{
  margin-top: 10px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
@media (max-width:820px){ .contact-box{flex-direction:column; align-items:flex-start}}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap}

.tiny{font-size:12px; color: rgba(232,238,252,.6)}

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(0,0,0,.12);
}
.footer__inner{display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap}
.footer__links{display:flex; gap:14px}
.footer__links a{opacity:.85; text-decoration:none}
.footer__links a:hover{opacity:1; text-decoration:underline}
