
:root{
  --bg:#020617;
  --bg-soft:#030712;
  --text:#f9fafb;
  --muted:#9ca3af;
  --accent:#e11d48;
  --accent-soft:rgba(225,29,72,0.18);
  --accent-strong:#fb7185;
  --radius-xl:18px;
  --border-soft:rgba(148,163,184,0.35);
  --shadow-soft:0 18px 45px rgba(0,0,0,0.75);
  --maxw:1120px;
  --font: system-ui,-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}

html,body{
  margin:0;
  padding:0;
  min-height:100%;
  background:radial-gradient(circle at top,#020617 0,#000 55%);
  color:var(--text);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  font-size:15px;
}

a{color:inherit;text-decoration:none;}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(18px);
  background:linear-gradient(to bottom,rgba(2,6,23,0.96),rgba(2,6,23,0.8),transparent);
  border-bottom:1px solid rgba(15,23,42,0.9);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0 10px;
}

.brand{
  font-weight:800;
  letter-spacing:0.16em;
  font-size:13px;
  text-transform:uppercase;
}

.brand span{color:var(--accent-strong);}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.nav a{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:background .18s,color .18s,border-color .18s,transform .18s;
}

.nav a:hover{
  color:var(--text);
  border-color:var(--border-soft);
  background:rgba(15,23,42,0.95);
  transform:translateY(-1px);
}

/* HERO */

main{padding-bottom:64px;}

.hero-shell{padding-top:70px;}

.hero{
  position:relative;
  border-radius:26px;
  padding:52px 22px 40px;
  background:
    radial-gradient(circle at top left,rgba(225,29,72,0.32),transparent 55%),
    radial-gradient(circle at bottom right,rgba(8,47,73,0.8),transparent 60%),
    #020617;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(15,23,42,0.7),rgba(15,23,42,0.96));
  opacity:.9;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:620px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 12px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.5);
  background:rgba(15,23,42,0.95);
  font-size:10px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}

.hero-kicker-dot{
  width:7px;height:7px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 16px rgba(248,113,113,0.9);
}

.hero h1{
  font-size:38px;
  line-height:1.04;
  margin:0 0 8px;
}

.hero h1 span{color:var(--accent-strong);}

.tagline{
  font-size:17px;
  color:var(--muted);
  margin:0 0 6px;
  animation:floatTagline 8s ease-in-out infinite;
}

.hero-sub{
  font-size:13px;
  color:var(--muted);
  max-width:420px;
}

/* BUTTONS WITH ICONS */

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 17px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  border:none;
  transition:transform .18s,box-shadow .18s,background .18s,color .18s;
}

.btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,0.7);
  background:rgba(15,23,42,0.98);
  font-size:10px;
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-strong));
  color:#fff;
  box-shadow:0 14px 24px rgba(248,113,113,0.3);
}

.btn-primary .btn-icon{
  border-color:rgba(248,250,252,0.45);
  background:rgba(15,23,42,0.94);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 32px rgba(248,113,113,0.45);
}

.btn-ghost{
  background:rgba(15,23,42,0.95);
  color:var(--text);
  border:1px solid var(--border-soft);
}

.btn-ghost .btn-icon{
  border-color:rgba(148,163,184,0.6);
  background:rgba(15,23,42,1);
}

.btn-ghost:hover{
  background:rgba(15,23,42,1);
}

/* META TAGS BELOW HERO */

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
  font-size:10px;
}

.hero-meta span{
  padding:4px 9px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.45);
  color:var(--muted);
}

/* SECTIONS */

.section{margin-top:34px;}

.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:6px;
}

.section-title{font-size:17px;font-weight:600;}
.section-kicker{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:var(--muted);
}
.section-sub{
  font-size:13px;
  color:var(--muted);
  margin:0 0 12px;
}

/* GRID + CARDS */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}

.card{
  position:relative;
  border-radius:18px;
  padding:14px 14px 14px;
  background:radial-gradient(circle at top,rgba(51,65,85,0.4),rgba(15,23,42,1));
  border:1px solid rgba(148,163,184,0.25);
  box-shadow:0 18px 40px rgba(15,23,42,0.9);
  transform:translateY(6px);
  opacity:0;
  animation:fadeUp .9s ease-out forwards;
}

.card-inner{position:relative;z-index:1;}

.card h3{
  font-size:14px;
  margin:0 0 6px;
}

.card p{
  margin:0;
  font-size:12px;
  color:var(--muted);
}

.card-footer{
  margin-top:10px;
  font-size:11px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.card:hover{
  transform:translateY(-3px);
  border-color:rgba(248,113,113,0.75);
}

.chip{
  display:inline-flex;
  align-items:center;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.45);
  font-size:10px;
  color:var(--muted);
}

/* TEXT BLOCKS */

.text-block{
  border-radius:18px;
  padding:18px 16px;
  background:radial-gradient(circle at top,rgba(30,64,175,0.4),rgba(15,23,42,1));
  border:1px solid rgba(148,163,184,0.3);
  box-shadow:0 18px 40px rgba(15,23,42,0.95);
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

/* LISTS & SOCIALS */

.list{list-style:none;margin:10px 0 0;padding:0;font-size:12px;color:var(--muted);}
.list li{margin-bottom:6px;}

.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.social-pill{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.35);
  color:var(--muted);
}

/* EMBED */

.embed-shell{
  border-radius:16px;
  border:1px solid rgba(148,163,184,0.4);
  background:rgba(15,23,42,0.98);
  padding:10px;
  margin-top:10px;
}

.embed-shell iframe{
  width:100%;
  border:0;
  border-radius:12px;
}

/* CONTACT & SUPPORT CARDS */

.contact-card,
.support-card{
  border-radius:18px;
  padding:16px 16px 18px;
  border:1px solid rgba(148,163,184,0.35);
  box-shadow:0 18px 40px rgba(15,23,42,0.9);
  font-size:13px;
  color:var(--muted);
}

.contact-card{background:radial-gradient(circle at top,rgba(52,211,153,0.18),rgba(15,23,42,1));}
.support-card{background:radial-gradient(circle at top,rgba(56,189,248,0.2),rgba(15,23,42,1));}

/* SUPPORT ACTIONS */

.support-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.support-actions .btn{
  font-size:11px;
  padding:8px 14px;
}

/* FOOTER */

.footer{
  border-top:1px solid rgba(148,163,184,0.22);
  padding:24px 0 30px;
  font-size:11px;
  color:var(--muted);
  text-align:center;
  margin-top:34px;
}

/* ADMIN EMBED TEXT */

.embed-code{
  font-family:monospace;
  font-size:11px;
  background:#020617;
  border-radius:8px;
  border:1px solid rgba(148,163,184,0.6);
  padding:8px;
  overflow:auto;
  white-space:nowrap;
}

/* ANIMATIONS */

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

@keyframes floatTagline{
  0%,100%{transform:translateY(0);text-shadow:0 0 0 rgba(248,113,113,0);}
  50%{transform:translateY(-3px);text-shadow:0 0 12px rgba(248,113,113,0.45);}
}

/* RESPONSIVE */

@media (max-width:768px){
  .hero{padding:40px 18px 32px;}
  .hero h1{font-size:30px;}
  .nav{justify-content:flex-end;gap:4px;}
  .nav a{font-size:10px;padding:5px 8px;}
}
