@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg: #07090e;
  --bg-2: #0b0f17;
  --panel: rgba(255,255,255,.04);
  --panel-strong: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.10);
  --text: #f4f7fb;
  --muted: #aab3c4;
  --accent: #ef233c;
  --accent-2: #ff4d5f;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.topbar.scrolled {
  background: rgba(7,9,14,.82);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: Rajdhani, sans-serif;
  font-weight: 800; font-size: 22px;
  background: linear-gradient(135deg, var(--accent), #a6081b);
  border: 1px solid rgba(255,255,255,.18);
  clip-path: polygon(12% 0,100% 0,88% 100%,0 100%);
  box-shadow: 0 8px 25px rgba(239,35,60,.28);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: Rajdhani, sans-serif; letter-spacing: .07em; font-size: 19px; }
.brand-copy small { margin-top: 5px; letter-spacing: .33em; color: var(--muted); font-size: 9px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: #d7dce6;
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}
.nav a:hover { color: #fff; }
.nav-panel {
  padding: 10px 16px;
  border: 1px solid rgba(239,35,60,.55);
  background: rgba(239,35,60,.08);
}
.menu-toggle { display:none; background:none; border:0; padding:8px; }
.menu-toggle span { display:block; width:25px; height:2px; margin:5px 0; background:#fff; }

.hero {
  min-height: 860px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(239,35,60,.14), transparent 26%),
    linear-gradient(180deg, #090c13 0%, #07090e 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}
.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .16;
}
.hero-glow-a { background: var(--accent); top: 80px; right: 7%; }
.hero-glow-b { background: #334dff; bottom: 0; left: -180px; opacity: .08; }

.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.eyebrow, .kicker {
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: .24em;
  font-weight: 800;
}
.hero h1 {
  margin: 18px 0 22px;
  max-width: 920px;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(62px, 8vw, 118px);
  line-height: .84;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.72);
}
.hero-text { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #bd1028);
  box-shadow: 0 14px 35px rgba(239,35,60,.23);
}
.btn-secondary {
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
}
.hero-badges {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1px;
  margin-top:70px;
  max-width:860px;
  background:var(--line);
  border:1px solid var(--line);
}
.hero-badges > div {
  background:rgba(10,13,20,.78);
  padding:22px;
  display:grid;
  grid-template-columns:40px 1fr;
  grid-template-rows:auto auto;
  column-gap:12px;
}
.hero-badges span {
  grid-row:1 / span 2;
  font-family:Rajdhani,sans-serif;
  font-size:26px;
  color:var(--accent);
  font-weight:700;
}
.hero-badges strong { font-size:14px; }
.hero-badges small { color:var(--muted); margin-top:4px; }

.cityline {
  position:absolute;
  right:0; bottom:-10px; left:0;
  height:300px;
  opacity:.20;
}
.cityline svg { width:100%; height:100%; }
.cityline path { fill:#fff; }

.section { padding:110px 0; }
.section-dark { background:#090c12; }
.section-heading { max-width:760px; margin-bottom:48px; }
.section-heading h2, .split-copy h2, .cta-box h2 {
  font-family:Rajdhani,sans-serif;
  font-size:clamp(42px,5vw,70px);
  line-height:.98;
  margin:12px 0 18px;
  letter-spacing:-.025em;
}
.section-heading p, .split-copy p, .cta-box p {
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}
.feature-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.feature-card, .news-card {
  padding:28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  min-height:240px;
  transition:.25s ease;
}
.feature-card:hover, .news-card:hover {
  transform:translateY(-5px);
  border-color:rgba(239,35,60,.38);
  background:linear-gradient(180deg, rgba(239,35,60,.07), rgba(255,255,255,.02));
}
.feature-card .icon { font-size:29px; margin-bottom:35px; }
.feature-card h3, .news-card h3 {
  font-family:Rajdhani,sans-serif;
  font-size:25px;
  margin:0 0 10px;
}
.feature-card p, .news-card p {
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.highlight-section {
  background:
    radial-gradient(circle at 85% 50%, rgba(239,35,60,.12), transparent 28%),
    #07090e;
}
.split {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:80px;
}
.check-list {
  list-style:none;
  padding:0;
  margin:28px 0;
  display:grid;
  gap:14px;
}
.check-list li {
  position:relative;
  padding-left:26px;
  color:#d6dce8;
}
.check-list li::before {
  content:"";
  position:absolute;
  width:8px; height:8px;
  left:0; top:.48em;
  background:var(--accent);
  transform:rotate(45deg);
}
.text-link { color:#fff; font-weight:700; font-size:14px; }
.text-link:hover { color:var(--accent-2); }

.visual-card {
  min-height:510px;
  padding:28px;
  border:1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(239,35,60,.13), transparent 35%),
    linear-gradient(180deg,#111722,#0a0d13);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.visual-card::after {
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:38px 38px;
  opacity:.45;
}
.visual-top,.visual-bottom {
  position:relative; z-index:2;
  display:flex; justify-content:space-between;
  color:var(--muted); font-size:11px; letter-spacing:.17em;
}
.live-dot { color:#fff; }
.live-dot::before {
  content:""; display:inline-block;
  width:7px; height:7px; border-radius:50%;
  background:var(--accent); margin-right:8px;
  box-shadow:0 0 18px var(--accent);
}
.visual-core {
  position:relative; z-index:2;
  min-height:395px;
  display:flex; align-items:center; justify-content:center; gap:24px;
}
.cp-emblem {
  width:128px; height:128px;
  display:grid; place-items:center;
  font-family:Rajdhani,sans-serif;
  font-size:58px; font-weight:800;
  background:var(--accent);
  clip-path:polygon(14% 0,100% 0,86% 100%,0 100%);
  box-shadow:0 25px 50px rgba(239,35,60,.24);
}
.visual-core small { display:block; color:var(--muted); letter-spacing:.18em; font-size:10px; }
.visual-core strong,.visual-core span {
  display:block; font-family:Rajdhani,sans-serif; font-size:46px; line-height:.8;
}
.visual-core span { color:transparent; -webkit-text-stroke:1px #fff; }

.row-heading {
  max-width:none;
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
}
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.news-card { min-height:220px; }
.news-tag {
  display:inline-block;
  margin-bottom:48px;
  color:var(--accent-2);
  font-size:10px;
  letter-spacing:.18em;
  font-weight:800;
}

.faq-section { background:#07090e; }
.faq-list { border-top:1px solid var(--line); }
details { border-bottom:1px solid var(--line); }
summary {
  cursor:pointer;
  list-style:none;
  padding:24px 0;
  font-family:Rajdhani,sans-serif;
  font-size:22px;
  font-weight:700;
}
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; float:right; color:var(--accent); }
details[open] summary::after { content:"–"; }
details p { color:var(--muted); line-height:1.7; margin:0 0 24px; max-width:800px; }

.cta-section { padding:0 0 100px; background:#07090e; }
.cta-box {
  padding:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  border:1px solid rgba(239,35,60,.35);
  background:
    radial-gradient(circle at 85% 30%, rgba(239,35,60,.14), transparent 30%),
    linear-gradient(135deg,#10141d,#0a0d13);
}
.cta-box h2 { font-size:46px; margin-bottom:8px; }
.cta-box p { margin:0; }

footer { border-top:1px solid var(--line); background:#06080c; padding:30px 0; }
.footer-grid {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
}
.footer-grid p { color:var(--muted); font-size:12px; text-align:center; }
.footer-links { justify-self:end; display:flex; gap:20px; font-size:13px; color:#cbd2df; }

@media (max-width: 920px) {
  .menu-toggle { display:block; }
  .nav {
    position:absolute;
    top:82px; left:20px; right:20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:20px;
    background:#0b0f17;
    border:1px solid var(--line);
  }
  .nav.open { display:flex; }
  .feature-grid, .news-grid { grid-template-columns:1fr 1fr; }
  .split { grid-template-columns:1fr; gap:50px; }
  .footer-grid { grid-template-columns:1fr; text-align:center; }
  .footer-brand,.footer-links { justify-self:center; }
}

@media (max-width: 650px) {
  .container { width:min(100% - 28px,1180px); }
  .nav-wrap { height:70px; }
  .nav { top:70px; }
  .hero { min-height:820px; }
  .hero-content { padding-top:80px; }
  .hero h1 { font-size:58px; }
  .hero-text { font-size:16px; }
  .hero-badges { grid-template-columns:1fr; }
  .feature-grid, .news-grid { grid-template-columns:1fr; }
  .section { padding:80px 0; }
  .visual-card { min-height:420px; padding:20px; }
  .visual-core { min-height:310px; gap:16px; }
  .cp-emblem { width:90px; height:90px; font-size:40px; }
  .visual-core strong,.visual-core span { font-size:34px; }
  .row-heading { display:block; }
  .row-heading .text-link { display:inline-block; margin-top:12px; }
  .cta-box { padding:34px 24px; display:block; }
  .cta-box .btn { margin-top:20px; width:100%; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
}


.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(239,35,60,.16));
  flex: 0 0 auto;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(239,35,60,.20));
  flex: 0 0 auto;
}

.footer-brand .brand-logo {
  width: 54px;
  height: 54px;
}

@media (max-width: 650px) {
  .brand-logo {
    width: 54px;
    height: 54px;
  }
  .hero-logo {
    width: 110px;
    height: 110px;
  }
}
