:root{
  --bg:#070707;
  --bg2:#0D0D0D;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.12);
  --brand:#D9D9D9;
  --brand2:#7A7A7A;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius:16px;
  --radius2:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: transparent;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.28)),
    url("./assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity:1;
  pointer-events:none;
  z-index:-1;
  filter: saturate(1) contrast(1.05);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(0,0,0,.55);
}
.skip-link:focus{left:12px; z-index:10}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(14px);
  background:rgba(7,10,18,.55);
  border-bottom:0;
  box-shadow: none;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand.small{font-weight:700}
.header-banner{
  width: 220px;
  height: auto;
  display:block;
  opacity:.9;
  filter: grayscale(1) contrast(1.05);
}
.brand.small .header-banner{width: 160px; opacity:.85}
.brand-name{letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:18px; color:var(--muted); font-weight:500}
.nav a{padding:8px 10px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.nav a[aria-current="page"]{
  background:rgba(255,255,255,.10);
  color:var(--text);
  border:0;
}

.hero{padding:56px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:0;
  background:rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  margin:0 0 14px;
}
.ribbon{
  border-radius: 18px;
  border:0;
  background:
    radial-gradient(520px 220px at 10% 10%, rgba(255,255,255,.08), transparent 62%),
    radial-gradient(520px 220px at 90% 30%, rgba(255,255,255,.05), transparent 62%),
    rgba(255,255,255,.04);
  padding: 12px 14px;
  margin: 0 0 14px;
}
.ribbon-title{
  font-weight: 800;
  letter-spacing: -.2px;
}
.ribbon-sub{
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}
.hero h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16.5px;
  line-height:1.6;
  max-width: 60ch;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:0 0 16px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:0;
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:600;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.btn-primary{
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(200,200,200,.86));
  color:#070707;
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

.hero-points{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  color:var(--muted);
  font-weight:500;
}
.hero-points li{
  padding:8px 10px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:0;
}

.section{padding:52px 0}
.section-alt{
  background: transparent;
  border-top:0;
  border-bottom:0;
}
.section-head{max-width: 78ch; margin-bottom:22px}
.section-head h2{
  margin:0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing:-.3px;
}
.section-head p{margin:0; color:var(--muted); line-height:1.7}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

.feature, .panel{
  border-radius: var(--radius);
  border:0;
  background: rgba(255,255,255,.04);
  padding:16px;
}
.panel-soon{
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(255,255,255,.07), transparent 62%),
    radial-gradient(520px 220px at 80% 30%, rgba(255,255,255,.05), transparent 62%),
    rgba(255,255,255,.04);
}
.panel-vision{
  background:
    radial-gradient(620px 260px at 10% 0%, rgba(255,255,255,.07), transparent 64%),
    radial-gradient(620px 260px at 100% 40%, rgba(255,255,255,.05), transparent 64%),
    rgba(255,255,255,.04);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius: 999px;
  border:0;
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.70);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.feature h3, .panel h3{margin:0 0 8px; letter-spacing:-.2px}
.feature p{margin:0; color:var(--muted); line-height:1.65}
.actions{margin-top:12px}
.hint{margin-top:10px; color:rgba(255,255,255,.55); font-size:13px; line-height:1.55}

.list{
  margin:0;
  padding-left: 18px;
  color:var(--muted);
  line-height:1.75;
}
.list li{margin:8px 0}

.news-root{display:flex; flex-direction:column; gap:14px}
.news-item{padding:0}
.news-date{
  color: rgba(255,255,255,.60);
  font-weight: 600;
  font-size: 13px;
  margin-top: 8px;
}

.callout{
  border-radius: 22px;
  padding:18px;
  background:
    radial-gradient(640px 280px at 10% 10%, rgba(255,255,255,.08), transparent 64%),
    radial-gradient(640px 280px at 90% 30%, rgba(255,255,255,.05), transparent 64%),
    rgba(255,255,255,.04);
  border:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.callout-title{font-weight:800; font-size:18px}
.callout-sub{color:var(--muted); margin-top:6px; line-height:1.6; max-width: 80ch}

.site-footer{
  border-top:0;
  background:transparent;
  backdrop-filter: none;
  padding:18px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.muted{color:var(--muted)}
.foot-right{display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:600}
.sep{opacity:.5}

@media (max-width: 960px){
  .hero-grid{grid-template-columns: 1fr; gap:18px}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .nav{display:none}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto}
  .pulse{animation:none}
}

