:root{
  --bg:#0b0b0d;
  --panel:#121218;
  --card:#161622;
  --text:#f3f4f6;
  --muted:#b7bcc7;
  --brand:#e11d2e; /* red */
  --brand2:#16a34a; /* green */
  --gold:#d4af37;
  --line:rgba(255,255,255,.10);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:24px;
  --max:1120px;
  --focus:rgba(225,29,46,.35);
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(225,29,46,.22), transparent 60%),
              radial-gradient(1000px 600px at 90% 10%, rgba(22,163,74,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:54px 0}
.section.tight{padding:32px 0}
.section.border-top{border-top:1px solid var(--line)}
.section.border-bottom{border-bottom:1px solid var(--line)}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,13,.72);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:66px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:42px; height:42px}
.brand .name{font-weight:800; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px}
.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{font-size:14px; color:var(--muted); padding:10px 10px; border-radius:12px}
.navlinks a.active, .navlinks a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.actions{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}
.btn:hover{background:rgba(255,255,255,.08)}
.btn.primary{
  background:linear-gradient(135deg, rgba(225,29,46,.98), rgba(225,29,46,.72));
  border-color:rgba(225,29,46,.55);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.secondary{
  background:linear-gradient(135deg, rgba(22,163,74,.95), rgba(22,163,74,.60));
  border-color:rgba(22,163,74,.55);
}
.btn.ghost{background:transparent}
.btn.small{padding:10px 12px; font-size:13px; border-radius:12px}
.btn:focus{outline:3px solid var(--focus); outline-offset:2px}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.burger svg{width:22px; height:22px}
.mobilemenu{
  display:none;
  padding:12px 18px 18px;
  border-top:1px solid var(--line);
}
.mobilemenu a{
  display:block; padding:12px 12px;
  border-radius:14px; color:var(--muted);
}
.mobilemenu a.active,.mobilemenu a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.mobilemenu .row{display:flex; gap:10px; flex-wrap:wrap; padding:10px 6px 0}
.mobilemenu .row .btn{flex:1}

.hero{
  padding:58px 0 26px;
}
.hero-grid{
  display:grid; gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:stretch;
}
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:26px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; color:var(--muted);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:8px 12px;
  border-radius:999px;
}
.kicker .dot{width:8px; height:8px; border-radius:50%; background:var(--brand)}
h1{margin:14px 0 10px; line-height:1.08; font-size:40px; letter-spacing:-.6px}
.lead{color:var(--muted); font-size:16px; max-width:58ch}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.stats{
  display:grid; gap:12px;
  grid-template-columns: repeat(2,1fr);
}
.stat{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}
.stat strong{display:block; font-size:15px}
.stat span{display:block; font-size:12px; color:var(--muted); margin-top:4px}

.grid3{display:grid; gap:14px; grid-template-columns:repeat(3,1fr)}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.icon{
  width:38px; height:38px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(225,29,46,.18);
  border:1px solid rgba(225,29,46,.25);
  margin-bottom:10px;
}
.icon.green{background:rgba(22,163,74,.16); border-color:rgba(22,163,74,.25)}
.icon.gold{background:rgba(212,175,55,.15); border-color:rgba(212,175,55,.23)}

.two{display:grid; gap:18px; grid-template-columns: 1fr 1fr}
.badges{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:12px
}
.badge{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}

.list{
  display:grid; gap:10px;
}
.list .item{
  display:flex; gap:12px;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.list .item strong{display:block}
.list .item span{display:block; color:var(--muted); font-size:13px; margin-top:3px}

.mapbox{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  min-height:320px;
}
.mapbox iframe{width:100%; height:360px; border:0}

.footer{
  padding:40px 0 26px;
}
.footergrid{
  display:grid; gap:18px; grid-template-columns: 1.3fr .7fr;
  align-items:start;
}
.small{color:var(--muted); font-size:13px}
.footer .links{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
.footer a.link{color:var(--muted); font-size:13px; padding:8px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.03)}
.footer a.link:hover{color:var(--text); background:rgba(255,255,255,.06)}
.copy{margin-top:14px; color:rgba(255,255,255,.45); font-size:12px}

.awards{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  margin-top:12px;
}
.awards img{
  height:56px;
  width:auto;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  padding:6px;
  filter:saturate(1.02) contrast(1.02);
}

.pagehead{
  padding:34px 0 10px;
}
.pagehead h1{font-size:34px}
.breadcrumbs{font-size:12px; color:var(--muted)}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs a:hover{color:var(--text)}

.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:8px}
label{font-size:13px; color:var(--muted)}
input,select,textarea{
  width:100%;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
}
textarea{min-height:110px; resize:vertical}
input:focus,select:focus,textarea:focus{outline:3px solid var(--focus); outline-offset:1px}
.help{color:var(--muted); font-size:12px}
.notice{
  padding:14px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.18);
  color:var(--muted);
  background:rgba(255,255,255,.03);
}
.success{border-color:rgba(22,163,74,.35); color:#d1fae5}
.error{border-color:rgba(225,29,46,.35); color:#fee2e2}
.hidden{display:none}

.stickybar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  display:none;
  padding:10px 14px;
  background:rgba(11,11,13,.82);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--line);
}
.stickybar .wrap{display:flex; gap:10px}
.stickybar .btn{flex:1}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:36px}
  .grid3{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .footergrid{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .navlinks, .actions{display:none}
  .burger{display:inline-flex; align-items:center; justify-content:center}
  .mobilemenu.show{display:block}
  .stickybar{display:block}
}
