:root{
  --bg:#0b0b12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text:#f2f2f7;
  --muted: rgba(242,242,247,.72);
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);

  --red:#b3202a;
  --red2:#8f1a22;
  --gold:#d4af37;

  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(900px 700px at 10% 0%, rgba(179,32,42,.22), transparent 55%),
              radial-gradient(900px 700px at 90% 10%, rgba(212,175,55,.14), transparent 55%),
              var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

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

.bg-orb{
  position:fixed;
  width:520px; height:520px;
  border-radius:999px;
  filter: blur(60px);
  opacity:.35;
  z-index:-1;
  pointer-events:none;
}
.orb1{ left:-180px; top:120px; background: rgba(179,32,42,.9); }
.orb2{ right:-220px; top:-40px; background: rgba(212,175,55,.85); }

a{ color:inherit; }
.a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.35);
}
.a:hover{ opacity:.9; }

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,11,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 18px;
  max-width: var(--max);
  margin:0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand__dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--gold), #fff);
  box-shadow: 0 0 0 6px rgba(212,175,55,.10);
}
.brand__name{ font-weight:800; letter-spacing:.2px; }

.nav{
  display:flex;
  gap:16px;
}
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight:700;
  font-size: 14px;
}
.nav a:hover{ color:#fff; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-2px); opacity:.95; }

.btn--primary{
  color:#111;
  background: linear-gradient(135deg, var(--gold), #ffe7a6);
  border-color: rgba(0,0,0,.1);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color:#fff;
}
.btn--full{ width:100%; background: rgba(255,255,255,.10); color:#fff; }

.hero{
  padding: 46px 0 30px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items:start;
}

.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:800;
  font-size: 13px;
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 60px);
  line-height:1.05;
  letter-spacing:.2px;
}
.hero__year{
  background: linear-gradient(135deg, #fff, #ffd77a);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.chips{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 14px;
}
.chip{
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.chip--accent{
  background: rgba(212,175,55,.10);
  border-color: rgba(212,175,55,.22);
}
.chip__k{ font-size: 12px; color: var(--muted); font-weight:800; text-transform: uppercase; letter-spacing:.9px; }
.chip__v{ margin-top:6px; font-weight:800; }
.chip__link{
  display:inline-block;
  margin-top: 10px;
  color:#fff;
  opacity:.9;
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,255,255,.35);
}
.chip__link:hover{ opacity:1; }

.hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.countdown{
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.countdown__label{ font-weight:800; color: var(--muted); font-size: 13px; }
.countdown__grid{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}
.count{
  flex: 1;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  text-align:center;
}
.count span{ font-size: 20px; font-weight:900; display:block; }
.count small{ color: var(--muted); font-weight:800; }

.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.card--glass{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  backdrop-filter: blur(12px);
}
.card--plain{
  background: rgba(255,255,255,.06);
  padding: 16px;
}
.card__title{
  font-size: 16px;
  font-weight: 900;
  padding: 16px 16px 6px;
}
.card__sub{
  padding: 0 16px 8px;
  color: var(--muted);
  font-weight:700;
}

.note{
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight:700;
}

.qrWrap{ display:flex; justify-content:center; padding: 8px 0 14px; }
.qrcode{
  background:#fff;
  padding: 12px;
  border-radius: 16px;
}

.section{
  padding: 34px 0;
}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section__head{
  margin-bottom: 16px;
}
.section__head h2{
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing:.2px;
}
.section__head p{
  margin:0;
  color: var(--muted);
  font-weight:700;
  max-width: 75ch;
}

.grid{ display:grid; gap: 12px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.mini{
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.mini__k{ color: var(--muted); font-weight:900; font-size: 12px; text-transform: uppercase; letter-spacing: .9px; }
.mini__v{ margin-top:8px; font-weight:800; }

.tableWrap{
  overflow-x:auto;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 620px;
}
.table th, .table td{
  padding: 16px 18px;
  text-align:left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.table thead th{
  position: sticky;
  top: 0;
  background: rgba(11,11,18,.85);
  backdrop-filter: blur(10px);
  font-weight: 900;
}
.table tbody tr:nth-child(odd){
  background: rgba(255,255,255,.03);
}
.table--grid th, .table--grid td{
  border-right: 1px solid rgba(255,255,255,.08);
}
.table--grid th:last-child, .table--grid td:last-child{ border-right:none; }

.ctaRow{
  display:flex;
  justify-content:center;
  margin-top: 16px;
}

.cardList{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contactBox{
  padding: 18px;
}
.contactTitle{
  font-weight: 900;
  margin-bottom: 10px;
}
.contactLine{
  color: var(--muted);
  font-weight: 800;
  margin: 8px 0;
}
.divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 16px 0;
}

.footer{
  padding: 26px 0 40px;
  color: rgba(255,255,255,.75);
}
.footer__inner{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }

.reveal{ opacity:0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

@media (max-width: 940px){
  .nav{ display:none; }
  .hero__inner{ grid-template-columns: 1fr; }
  .chips{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .cardList{ grid-template-columns: 1fr; }
}