:root{
  --bg: #0a0a0a;
  --bg-elev: #121212;
  --panel: #151515;
  --panel-strong: #1b1b1b;
  --text: #f2f2f2;
  --muted: #b3b3b3;
  --border: #2a2a2a;
  --shadow: 0 22px 50px rgba(0,0,0,0.55);
  --radius: 20px;
  --max: 1100px;
  --font: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(700px 500px at 95% 10%, rgba(255,255,255,0.05), transparent 55%),
    linear-gradient(180deg, #0b0b0b, #0a0a0a 40%, #101010 100%);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,10,0.72);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-logo{
  height: 102px;
  width: auto;
  display: block;
}
.brand-text{ font-weight: 700; letter-spacing: 0.2px; }

.nav{ display: flex; align-items: center; gap: 18px; }
.nav a{ color: var(--muted); font-weight: 600; font-size: 14px; }
.nav a:hover{ color: var(--text); }

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1f1f1f, #151515);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  font-weight: 700;
}
.btn:hover{ background: linear-gradient(180deg, #262626, #1a1a1a); }
.btn--ghost{ background: transparent; }
.btn--small{ padding: 10px 14px; border-radius: 12px; }
.btn--full{ width: 100%; }

.hero{ padding: 64px 0 34px; }
.hero-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}
.eyebrow{ color: var(--muted); font-weight: 700; font-size: 13px; letter-spacing: 0.35px; text-transform: uppercase; }
h1{ margin: 10px 0 12px; font-size: 44px; line-height: 1.05; }
.lead{ color: var(--muted); font-size: 16px; max-width: 56ch; }

.hero-cta{ display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.hero-badges{
  display: flex; gap: 10px; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 18px 0 0;
}
.hero-badges li{
  padding: 8px 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; color: var(--muted); font-weight: 600;
}

.hero-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1a1a1a, #111111);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card__row{ display: flex; gap: 12px; align-items: flex-start; }
.hero-card__title{ margin: 0; font-weight: 800; }
.hero-card__text{ margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.divider{ height: 1px; background: var(--border); margin: 14px 0; }
.hero-card__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric{
  padding: 12px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
}
.metric__kpi{ margin: 0; font-weight: 800; }
.metric__label{ margin: 2px 0 0; color: var(--muted); font-size: 13px; }

.dot{ width: 10px; height: 10px; border-radius: 999px; margin-top: 5px; }
.dot--green{ background: #c8c8c8; box-shadow: 0 0 0 4px rgba(200,200,200,0.12); }

.section{ padding: 52px 0; }
.section--alt{
  background: #0f0f0f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head h2{ margin: 0 0 8px; font-size: 28px; }
.section-head p{ margin: 0 0 22px; color: var(--muted); max-width: 70ch; }

.grid{ display: grid; gap: 16px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

.card, .panel{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.card h3, .panel h3{ margin: 0 0 10px; }
.card p, .panel p{ margin: 0 0 12px; color: var(--muted); }

.list{ margin: 0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }

.logo-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.logo{
  display: grid; place-items: center;
  min-height: 62px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #101010;
  color: #d0d0d0;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 10px;
}

.section--cta{
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(255,255,255,0.08), transparent 60%),
    #0c0c0c;
  border-top: 1px solid var(--border);
}
.cta{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.cta-box{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel-strong);
  padding: 18px;
}
.cta-label{ margin: 0; color: var(--muted); font-weight: 700; font-size: 12px; }
.cta-value{ margin: 6px 0 6px; font-weight: 800; font-size: 18px; }
.cta-hint{ margin: 0 0 14px; color: var(--muted); font-size: 13px; }

.site-footer{
  border-top: 1px solid var(--border);
  padding: 20px 0;
  background: #0b0b0b;
}
.footer-inner{
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.muted{ color: var(--muted); }

.hero-copy{ animation: slideUp 0.8s ease both; }
.hero-card{ animation: slideUp 0.8s ease both; animation-delay: 0.15s; }
.metric, .card, .panel, .logo, .cta-box{
  animation: riseFade 0.8s ease both;
}
.grid--3 .card:nth-child(1){ animation-delay: 0.05s; }
.grid--3 .card:nth-child(2){ animation-delay: 0.12s; }
.grid--3 .card:nth-child(3){ animation-delay: 0.19s; }
.grid--3 .card:nth-child(4){ animation-delay: 0.26s; }
.grid--3 .card:nth-child(5){ animation-delay: 0.33s; }
.grid--3 .card:nth-child(6){ animation-delay: 0.4s; }
.logo-grid .logo:nth-child(1){ animation-delay: 0.05s; }
.logo-grid .logo:nth-child(2){ animation-delay: 0.08s; }
.logo-grid .logo:nth-child(3){ animation-delay: 0.11s; }
.logo-grid .logo:nth-child(4){ animation-delay: 0.14s; }
.logo-grid .logo:nth-child(5){ animation-delay: 0.17s; }
.logo-grid .logo:nth-child(6){ animation-delay: 0.2s; }
.logo-grid .logo:nth-child(7){ animation-delay: 0.23s; }
.logo-grid .logo:nth-child(8){ animation-delay: 0.26s; }
.logo-grid .logo:nth-child(9){ animation-delay: 0.29s; }
.logo-grid .logo:nth-child(10){ animation-delay: 0.32s; }
.logo-grid .logo:nth-child(11){ animation-delay: 0.35s; }

@keyframes slideUp{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes riseFade{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
  .logo-grid{ grid-template-columns: repeat(2, 1fr); }
  h1{ font-size: 34px; }
  .nav{ gap: 12px; }
}
