:root{
  --base: #07080c;
  --bg0: #07080c;
  --bg1: #0b0c10;
  --panel: #141824;
  --panel2: rgba(0,0,0,.22);
  --stroke: rgba(255,255,255,.10);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);

  --purple: #b06cff;
  --pink: #ff4fd8;

  --radius: 16px;
  --shadow: 0 14px 36px rgba(0,0,0,.55);
  --glow: 0 0 18px rgba(176,108,255,.25);
}

*{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  min-height: 100%;
  background:
    radial-gradient(1200px 700px at 70% 30%, rgba(176,108,255,.18), transparent 60%),
    radial-gradient(900px 500px at 30% 70%, rgba(255,79,216,.14), transparent 60%),
    var(--base);
  background-repeat:no-repeat;
  background-attachment: fixed;
}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75));
  overflow-x:hidden;
}

main{ position:relative; z-index:1; flex:1; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, calc(100% - 40px)); margin-inline:auto; }

.fx-grain, .fx-streaks{ display:none !important; }
body::after{ display:none !important; }

.header{
  position: sticky; top:0; z-index:20;
  background: rgba(11,12,16,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{
  width:42px; height:42px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.brand__name{ font-weight: 950; letter-spacing:.3px; }
.brand__sub{ font-size:12px; color: var(--muted); margin-top:2px; }

.nav{ display:flex; gap:10px; align-items:center; }
.nav a{
  position:relative;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.nav a:hover{
  border-color: rgba(176,108,255,.35);
  background: rgba(176,108,255,.08);
  transform: translateY(-1px);
}
.nav a.cta{
  border-color: rgba(176,108,255,.45);
  background: linear-gradient(90deg, rgba(176,108,255,.22), rgba(255,79,216,.14));
  font-weight: 900;
}

.nav a.active{
  border-color: rgba(176,108,255,.55);
  background: linear-gradient(90deg, rgba(176,108,255,.20), rgba(255,79,216,.12));
  color: rgba(255,255,255,.95);
}
.nav a.active::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:6px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(176,108,255,.7), rgba(255,79,216,.6), transparent);
  opacity:.9;
}

.burger{
  display:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 10px;
  cursor:pointer;
}
.burger span{
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.85);
  margin: 5px 0;
  border-radius: 999px;
}

.hero{
  position:relative;
  padding: 52px 0 22px;
  overflow:hidden;
}

.heroBg{
  position:absolute;
  inset:-12% -8% -28% -8%;
  background-image: url("assets/skyline.png");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  opacity: .38;
  filter: saturate(1.06) contrast(1.08);
  transform: translate3d(var(--bgx,0px), var(--bgy,0px), 0) scale(1.06);

  pointer-events:none;
  z-index:0;
}
.heroBg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 52%,
    rgba(0,0,0,.50) 76%,
    rgba(0,0,0,.86) 90%,
    var(--base) 100%
  );
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(900px 520px at 70% 25%, rgba(176,108,255,.12), transparent 60%),
    radial-gradient(800px 480px at 30% 70%, rgba(255,79,216,.09), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.68));
}

.hero::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height: 190px;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(600px 140px at 50% 0%, rgba(176,108,255,.10), transparent 70%),
    linear-gradient(to bottom,
      rgba(0,0,0,0),
      rgba(0,0,0,.35),
      rgba(0,0,0,.72),
      var(--base)
    );
  opacity: .75;
}


.hero__grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: start;
}

.pillRow{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 14px; }
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.78);
}
.pill--soft{ color: var(--muted); }
.dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.35);
  box-shadow: 0 0 0 6px rgba(176,108,255,.10);
}

.h1{
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: .6px;
}
.h1 span{
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(176,108,255,.90), rgba(255,79,216,.90));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 0 18px rgba(176,108,255,.16);
}

.lead{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 62ch;
}

.ctaRow{ display:flex; gap:10px; flex-wrap:wrap; }

.btn{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:11px 16px;
  border-radius: 12px;
  cursor:pointer;
  font-weight: 950;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn:hover{
  border-color: rgba(176,108,255,.35);
  box-shadow: var(--glow);
  background: rgba(176,108,255,.08);
  transform: translateY(-1px);
}
.btn.primary{
  border-color: rgba(176,108,255,.45);
  background: linear-gradient(90deg, rgba(176,108,255,.22), rgba(255,79,216,.14));
}

.btn::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity:0;
}
.btn:hover::before{ animation: shine .7s ease; }
@keyframes shine{
  0%{ left:-60%; opacity:0; }
  20%{ opacity:.40; }
  100%{ left:140%; opacity:0; }
}

.btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  opacity:0;
  background: radial-gradient(600px 240px at var(--x, 50%) var(--y, 50%),
    rgba(176,108,255,.16), transparent 55%);
  transition: opacity .16s ease;
}
.btn:hover::after{ opacity:1; }

.ipBox{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  cursor:pointer;
  user-select:none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.ipBox:hover{
  transform: translateY(-2px);
  border-color: rgba(255,79,216,.22);
  box-shadow: 0 0 16px rgba(255,79,216,.12);
}
.ipTop{ color: var(--muted); font-size: 12px; }
.ipBottom{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top: 6px;
  font-weight: 950;
}
.ipHint{ color: var(--muted); font-weight: 800; }

.glassCard{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.glassCard:hover{
  transform: translateY(-2px);
  border-color: rgba(176,108,255,.28);
  box-shadow: var(--shadow), 0 0 18px rgba(176,108,255,.16);
}
.glassTop{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.glassTitle{ font-weight: 950; color: rgba(255,255,255,.88); }
.glassKpi{
  font-size: 26px;
  font-weight: 950;
  text-shadow: 0 0 10px rgba(176,108,255,.14);
}
.muted{ color: rgba(255,255,255,.55); }

.miniGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  border-radius: 14px;
  padding: 12px;
}
.miniLabel{ color: var(--muted); font-size: 12px; font-weight: 800; }
.miniValue{ margin-top: 6px; font-weight: 950; font-size: 16px; }

.section{ padding: 22px 0 46px; }
.sectionHead h2{ margin:0 0 6px; font-weight: 950; letter-spacing:.2px; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card{
  padding: 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(176,108,255,.28);
  box-shadow: 0 14px 34px rgba(0,0,0,.55), 0 0 16px rgba(176,108,255,.12);
}
.card h3{ margin: 0 0 6px; font-size: 14px; font-weight: 950; }
.card p{ margin: 0; color: var(--muted); line-height: 1.55; font-size: 13px; }

.section--cta{ padding-top: 0; }
.ctaBanner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(176,108,255,.18), rgba(255,79,216,.12));
  box-shadow: 0 14px 40px rgba(0,0,0,.50), 0 0 18px rgba(176,108,255,.12);
}
.ctaTitle{ font-weight: 950; font-size: 16px; }
.ctaSub{ color: var(--muted); margin-top: 4px; }
.ctaBtns{ display:flex; gap: 10px; flex-wrap:wrap; }

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  background: rgba(11,12,16,.92);
}
.footerInner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  color: var(--muted);
  font-size: 12px;
}
.footerLinks{ display:flex; gap: 12px; }
.footerLinks a:hover{ color: rgba(255,255,255,.92); }

.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: #141824;
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .ctaBanner{ flex-direction: column; align-items: stretch; }
  .ctaBtns{ justify-content: flex-start; }
}
@media (max-width: 720px){
  .nav{
    position:absolute;
    right: 20px;
    top: 62px;
    width: min(320px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    gap:8px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(11,12,16,.96);
    border: 1px solid rgba(255,255,255,.10);
    z-index: 30;
  }
  .nav.open{ display:flex; }
  .burger{ display:block; }
}

@media (prefers-reduced-motion: reduce){
  .btn, .card, .glassCard, .ipBox, .nav a{ transition:none !important; }
}
