:root{
  --cream:#F3E7D1;
  --oxide:#B34A2D;
  --line:rgba(255,255,255,.18);
  --shadow: 0 18px 70px rgba(0,0,0,.35);
  --radius: 22px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--cream);
  background:#070707;
}
a{color:inherit}

/* HERO */
.hero{
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 46%, rgba(0,0,0,.05) 100%),
    radial-gradient(900px 500px at 18% 20%, rgba(179,74,45,.28), transparent 60%),
    url("/assets/img/hero/cover.jpg") 65% 35%/cover no-repeat;
  position:relative;
  overflow:hidden;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 18px 44px;
  position:relative;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 8px 0 28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.logo{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:16px;
  background: rgba(243,231,209,.95);
  padding:6px;
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
  flex:0 0 auto;
}

.name{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.tag{
  font-size: 12px;
  opacity:.82;
  margin-top:2px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.pill.primary{
  background: var(--oxide);
  border-color: transparent;
}

.dot{
  width:8px;height:8px;border-radius:50%;
  background: var(--oxide);
  box-shadow: 0 0 0 3px rgba(179,74,45,.22);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 0;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.20);
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 11px;
  width:fit-content;
}

.bolt{
  width:14px;height:14px;
  background: linear-gradient(180deg, #d36a4b, #7f2e1b);
  clip-path: polygon(45% 0, 65% 0, 52% 40%, 74% 40%, 30% 100%, 44% 56%, 26% 56%);
  opacity:.95;
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -1px;
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
  animation: fadeUp .9s ease forwards;
}

.lead{
  margin:0;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.7;
  opacity:.92;
  text-shadow: 0 16px 50px rgba(0,0,0,.5);
  animation: fadeUp .9s ease forwards;
  animation-delay: .06s;
}

.actions{
  margin-top: 18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  animation: fadeUp .9s ease forwards;
  animation-delay: .12s;
  opacity:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}

.btn.primary{
  background: var(--oxide);
  border-color: transparent;
}

.arrow{
  width:18px;height:18px;border-radius:10px;
  background: rgba(255,255,255,.10);
  display:inline-flex;align-items:center;justify-content:center;
  font-size: 14px;
  line-height: 1;
}

button.btn{
  cursor:pointer;
  color:inherit;
  font: inherit;
}

.panel{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  transition: transform .25s ease, opacity .25s ease;
}

.panel h3{
  margin:0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity:.9;
  display:flex;align-items:center;gap:10px;
}

.rule{flex:1;height:1px;background: var(--line);opacity:.7}

.cards{display:grid;gap:10px}

.card{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 12px 12px;
  background: rgba(0,0,0,.16);
}

.card .t{margin:0 0 4px;font-weight: 950}
.card .d{margin:0;font-size: 13px;line-height:1.5;opacity:.88}

.panel.is-hidden{
  opacity:0;
  transform: translateY(12px);
  pointer-events:none;
  height:0;
  padding:0;
  border:0;
  overflow:hidden;
}

.hero-footer{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  font-size: 12px;
  color: rgba(243,231,209,.78);
  animation: fadeUp .9s ease forwards;
  animation-delay: .16s;
  opacity:0;
}

@media (max-width: 760px){
  header{flex-direction:column;align-items:flex-start}
}

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