body{
  min-height:100vh;
  overflow-x:hidden;
  background:#000;
}

.bg-overlay{
  position:fixed;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.38) 38%, rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 18% 18%, rgba(var(--accent-rgb),.18), transparent 36%),
    radial-gradient(circle at 82% 28%, rgba(255,255,255,.06), transparent 28%);
  z-index:-1;
}

.page-noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:90px 90px;
  mask-image:radial-gradient(circle at center, black 45%, transparent 100%);
}

.splash-header{
  position:relative;
  z-index:5;
  padding:24px 0;
}

.splash-header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}

.brand-mark{
  display:inline-flex;
  align-items:center;
}

.brand-logo{
  width:164px;
}

.splash-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:28px;
  padding:12px 18px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  background:rgba(8,8,10,.34);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.splash-nav a,
.text-link{
  position:relative;
  text-decoration:none;
  color:var(--color-text-2);
  font-size:14px;
  font-weight:500;
  transition:color var(--dur-2) var(--ease-out);
}

.splash-nav a:hover,
.text-link:hover{
  color:var(--color-text);
}

.text-link::after,
.splash-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:1px;
  background:rgba(var(--accent-rgb),.75);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--dur-2) var(--ease-out);
}

.text-link:hover::after,
.splash-nav a:hover::after{
  transform:scaleX(1);
}

.splash-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-call{
  height:40px;
  padding:0 18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--color-text);
  transition:
    transform var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out),
    background var(--dur-2) var(--ease-out);
}

.header-call:hover{
  transform:translateY(-2px);
  border-color:rgba(var(--accent-rgb),.38);
  background:rgba(var(--accent-rgb),.08);
}

.splash-main{
  min-height:calc(100vh - 96px);
  display:flex;
  align-items:center;
}

.hero-shell{
  width:100%;
  padding:28px 0 64px;
}

.hero-panel{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(320px, .8fr);
  gap:32px;
  align-items:stretch;
}

.hero-copy,
.hero-side{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.hero-copy{
  padding:clamp(34px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(13,13,14,.58), rgba(5,5,6,.72)),
    radial-gradient(circle at top left, rgba(var(--accent-rgb),.16), transparent 34%);
  box-shadow:0 24px 80px rgba(0,0,0,.28);
}

.hero-copy::before,
.hero-side::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.14), transparent 28%, transparent 72%, rgba(255,255,255,.04));
}

.hero-copy h1{
  max-width:10.5ch;
  margin-bottom:20px;
  font-size:clamp(48px, 7vw, 82px);
  line-height:.98;
  letter-spacing:-.045em;
}

.hero-lead{
  max-width:58ch;
  font-size:18px;
  line-height:1.75;
  margin-bottom:30px;
}

.hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:28px;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-meta span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:var(--color-text-2);
  font-size:13px;
  letter-spacing:.02em;
}

.hero-side{
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:linear-gradient(180deg, rgba(18,18,20,.62), rgba(8,8,9,.74));
}

.hero-side h2{
  font-size:clamp(26px, 3vw, 34px);
  line-height:1.08;
  max-width:12ch;
  margin-bottom:16px;
}

.side-topline{
  margin-bottom:18px;
  color:var(--color-text-3);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.stat-list{
  display:grid;
  gap:14px;
  margin:26px 0 28px;
}

.stat-item{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
}

.stat-item strong{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:14px;
  background:rgba(var(--accent-rgb),.12);
  color:var(--color-text);
  font-size:16px;
}

.stat-item span{
  color:var(--color-text-2);
  font-size:15px;
  line-height:1.45;
}

@media (max-width: 1120px){
  .splash-header-inner{
    grid-template-columns:1fr;
    justify-items:start;
  }

  .splash-nav{
    order:3;
    justify-self:stretch;
    justify-content:space-between;
    width:100%;
  }

  .splash-actions{
    order:2;
  }

  .hero-panel{
    grid-template-columns:1fr;
  }

  .hero-copy h1{
    max-width:12ch;
  }

  .hero-side h2{
    max-width:16ch;
  }
}

@media (max-width: 768px){
  .splash-header{
    padding:16px 0;
  }

  .splash-nav{
    gap:14px;
    padding:10px 14px;
    flex-wrap:wrap;
    border-radius:22px;
  }

  .splash-actions{
    flex-wrap:wrap;
  }

  .header-call{
    width:100%;
  }

  .hero-shell{
    padding:12px 0 36px;
  }

  .hero-copy,
  .hero-side{
    padding:24px;
    border-radius:20px;
  }

  .hero-copy h1{
    font-size:clamp(40px, 12vw, 56px);
    max-width:12ch;
  }

  .hero-lead{
    font-size:16px;
    line-height:1.65;
  }

  .hero-cta-row{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-cta-row .btn{
    width:100%;
  }

  .hero-meta{
    gap:10px;
  }

  .hero-meta span{
    width:100%;
    justify-content:center;
  }

  .stat-item{
    grid-template-columns:44px 1fr;
    padding:12px 14px;
  }

  .stat-item strong{
    width:44px;
    height:44px;
    border-radius:12px;
  }
}
