
:root{
  --bg:#050505;
  --bg2:#0b0b0f;
  --card:#0f1118;
  --card2:#121528;
  --text:#f5f5f7;
  --muted:#b7b7c2;
  --gold:#F2C94C;
  --gold2:#e0b93e;
  --line:rgba(242,201,76,.22);
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 600px at 50% -120px, rgba(242,201,76,.08), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, rgba(115,125,255,.06), transparent 60%),
              linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--text);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 48px)); margin:0 auto}
.section{padding:84px 0}
.section.light{
  background: linear-gradient(180deg, #efe9de, #f6f1e7);
  color:#111;
}
.section.light .muted{color: rgba(0,0,0,.55)}
.section.light .card{background:#ffffff; border:1px solid rgba(0,0,0,.08)}
.section.light .card p{color: rgba(0,0,0,.75)}
.section.light .card h3{color:#111}
.section.light .btn.ghost{border-color: rgba(0,0,0,.2); color:#111}
.section.light .btn.ghost:hover{background: rgba(0,0,0,.06)}
.section.light .pill{background: rgba(0,0,0,.06); color:#111}
.section.light .divider{border-color: rgba(0,0,0,.12)}

.muted{color:var(--muted)}
.h-eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.24em;
  color:rgba(242,201,76,.9);
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.h-eyebrow::before{
  content:"";
  width:26px;height:1px;
  background:rgba(242,201,76,.7);
}
h1,h2,h3{
  margin:0 0 12px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: -0.02em;
}
h1{font-size: clamp(40px, 5vw, 62px); line-height:1.05}
h2{font-size: clamp(28px, 3.2vw, 40px); line-height:1.15}
h3{font-size: 20px; line-height:1.2}
p{margin: 0 0 14px}

.topbar{
  position:sticky;
  top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(5,5,7,.65);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 230px;
}
.brand img{
  width:42px; height:42px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand .t{display:flex; flex-direction:column; gap:2px}
.brand .t strong{font-size:13px; letter-spacing:.12em}
.brand .t span{font-size:12px; color: rgba(255,255,255,.72)}
.links{display:flex; flex-wrap:wrap; gap:18px; justify-content:center; align-items:center}
.links a{
  font-size:13px; color: rgba(255,255,255,.84);
  padding:8px 10px; border-radius: 999px;
}
.links a:hover{background: rgba(255,255,255,.06)}
.links a[aria-current="page"]{background: rgba(242,201,76,.14); color: var(--text); border:1px solid rgba(242,201,76,.22)}
.actions{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color:#111;
  box-shadow: 0 14px 35px rgba(242,201,76,.18);
}
.btn.primary:hover{box-shadow: 0 18px 46px rgba(242,201,76,.24)}
.btn.ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn.ghost:hover{background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18)}
.btn.small{padding:9px 12px; font-size:13px}

.hero{
  position:relative;
  min-height: 78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hero::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(800px 380px at 55% 35%, rgba(242,201,76,.14), transparent 65%),
    radial-gradient(900px 480px at 10% 15%, rgba(120,120,255,.08), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.82));
  z-index:1;
}
.hero .bg{
  position:absolute; inset:0;
  background: url("./img/7142a46b-e02d-42c2-9467-e4670488732c.png") center/cover no-repeat;
  filter: saturate(.95) contrast(1.05) brightness(.75);
  transform: scale(1.06);
}
.hero .fog{
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 55% 40%, rgba(255,255,255,.06), transparent 42%),
              radial-gradient(circle at 30% 70%, rgba(255,255,255,.04), transparent 42%);
  filter: blur(10px);
  opacity:.9;
  z-index:2;
}
.hero .content{
  position:relative; z-index:3;
  padding: 86px 0 62px;
}
.hero .logoFloat{
  width:92px; height:92px;
  border-radius: 26px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(242,201,76,.22);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.hero .logoFloat img{
  width:70px; height:70px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}
.hero p.lead{
  max-width: 760px;
  font-size: 18px;
  color: rgba(255,255,255,.86);
}
.hero .cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 22px;
}
.hero .meta{
  display:flex;
  gap:18px;
  margin-top: 22px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(242,201,76,.12);
}
.scrollHint{
  position:absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  z-index:4;
  display:flex; align-items:center; gap:10px;
  font-size:12px; letter-spacing:.2em;
  text-transform:uppercase;
  color: rgba(255,255,255,.78);
}
.scrollHint .ring{
  width:12px; height:12px; border-radius:999px;
  border:2px solid rgba(242,201,76,.9);
  box-shadow: 0 0 0 8px rgba(242,201,76,.12);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform: scale(1); opacity:.9}
  50%{transform: scale(1.25); opacity:.55}
}

.grid{
  display:grid;
  gap:18px;
}
.grid.two{grid-template-columns: repeat(2, minmax(0,1fr))}
.grid.three{grid-template-columns: repeat(3, minmax(0,1fr))}
@media (max-width: 900px){
  .grid.two, .grid.three{grid-template-columns: 1fr}
  .scrollHint{display:none}
  .brand{min-width:auto}
  .links{display:none}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 44px rgba(0,0,0,.35);
}
.card.soft{background: rgba(255,255,255,.04)}
.card h3{margin-bottom:10px}
.card p{color: rgba(255,255,255,.78)}
.card .kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color: rgba(242,201,76,.88);
  margin-bottom: 8px;
}
.card .img{
  border-radius: 18px;
  overflow:hidden;
  height: 168px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}
.card .img img{width:100%; height:100%; object-fit:cover; display:block}
.card .row{display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top: 12px}
.badge{
  font-size:12px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(242,201,76,.22);
  background: rgba(242,201,76,.10);
  color: rgba(255,255,255,.92);
}

.divider{
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 18px 0;
}

.stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 900px){.stats{grid-template-columns: repeat(2, minmax(0,1fr))}}
.stat{
  border-radius: 18px;
  padding: 16px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.10);
}
.stat strong{
  display:block;
  font-size: 30px;
  letter-spacing:-.02em;
  margin-bottom: 4px;
  font-family: ui-serif, Georgia, serif;
}
.stat span{font-size:13px; color: rgba(255,255,255,.78)}

.marquee{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  overflow:hidden;
}
.marquee .track{
  display:flex; gap:26px;
  white-space:nowrap;
  padding: 14px 0;
  animation: scroll 22s linear infinite;
}
.marquee .item{
  display:inline-flex; align-items:center; gap:10px;
  padding: 6px 12px;
  border:1px solid rgba(242,201,76,.18);
  border-radius: 999px;
  background: rgba(242,201,76,.06);
  color: rgba(255,255,255,.9);
  font-size: 13px;
}
@keyframes scroll{
  0%{transform: translateX(0)}
  100%{transform: translateX(-50%)}
}

.footer{
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.footer .row{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center;
}
.footer a{color: rgba(255,255,255,.78)}
.footer a:hover{color: var(--text)}

.modal{
  position:fixed; inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center; justify-content:center;
  padding: 22px;
  z-index: 80;
}
.modal.open{display:flex}
.modal .panel{
  width: min(860px, 100%);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20,22,32,.96), rgba(10,11,18,.96));
  border:1px solid rgba(242,201,76,.16);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal .panel header{
  padding: 16px 18px;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.modal .panel header strong{font-size: 16px; letter-spacing:.02em}
.modal .panel .body{padding: 18px}
.modal .close{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  cursor:pointer;
}

.form{
  display:grid; gap:12px;
}
.input{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}
textarea.input{min-height: 130px; resize: vertical}
.input:focus{border-color: rgba(242,201,76,.35); box-shadow: 0 0 0 6px rgba(242,201,76,.10)}
.helper{font-size: 12px; color: rgba(255,255,255,.72)}
.copyline{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 12px;
}
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(20,22,32,.92);
  border:1px solid rgba(255,255,255,.12);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: rgba(255,255,255,.9);
  display:none;
  z-index: 90;
  font-size: 13px;
}
.toast.show{display:block}

.audioBtn{
  position: fixed;
  right: 18px;
  top: 92px;
  z-index: 60;
}
