﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


:root{
  --black:#000000;
  --red:#bc2006;
  --white:#FFFFFF;
  --gray:#888888;
  --bg:#0b0b0b;
}


*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}


a{ color: inherit; text-decoration:none; }


.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}


.topbar{
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand .name{
  font-weight: 700;
  letter-spacing: 0.5px;
}
.brand .tag{
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}


.nav{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.nav a{
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--white);
}


.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .08s ease, background .12s ease, border .12s ease;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }


.btn-primary{
  background: var(--red);
  color: var(--black);
}
.btn-primary:hover{ filter: brightness(0.95); }


.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn-outline:hover{
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}


.hero{
  padding: 44px 0 22px;
  background:
    radial-gradient(800px 320px at 30% 0%, rgba(255,130,0,0.16), transparent 60%),
    radial-gradient(900px 340px at 80% 10%, rgba(188,32,6,0.16), transparent 60%);
}
.hero h1{
  margin:0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}
.hero p{
  margin: 12px 0 0;
  color: rgba(255,255,255,0.80);
  max-width: 60ch;
}
.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}


.badges{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.badge{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}


.badge-featured{
  border-color: rgba(255,130,0,0.55);
  box-shadow: 0 0 0 2px rgba(255,130,0,0.12) inset;
}






.section{
  padding: 26px 0;
}
.section h2{
  margin:0 0 12px;
  font-size: 22px;
}
.section p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.80);
}


.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card{
  grid-column: span 12;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px;
}
.card h3{
  margin:0 0 8px;
  font-size: 18px;
}
.card ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.82);
}
.card li{ margin: 6px 0; }


@media (min-width: 900px){
  .card.span-6{ grid-column: span 6; }
  .card.span-4{ grid-column: span 4; }
  .card.span-8{ grid-column: span 8; }
}


.note{
  border-left: 4px solid var(--red);
  padding: 12px 14px;
  background: rgba(188,32,6,0.10);
  border-radius: 14px;
  color: rgba(255,255,255,0.90);
}


.callout{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 12px;
}


.footer{
  padding: 22px 0 30px;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.10);
  background: var(--black);
  margin-top: 20px;
}
.small{ font-size: 12px; color: rgba(255,255,255,0.65); }


.highlight{
  color: var(--red);
  font-weight: 700;
}