:root {
  --bg: #050609;
  --bg2: #090c12;
  --panel: rgba(14, 18, 28, .88);
  --panel2: rgba(21, 27, 41, .82);
  --stroke: rgba(255, 255, 255, .10);
  --muted: #9aa4b2;
  --text: #f7f8fb;
  --red: #e50935;
  --red2: #ff315c;
  --red3: #7b061d;
  --gold: #f7c86b;
  --green: #32d583;
  --shadow: 0 30px 100px rgba(0, 0, 0, .55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.hs-body {
  margin: 0;
  background:
    radial-gradient(circle at 15% -10%, rgba(229, 9, 53, .30), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(229, 9, 53, .14), transparent 34%),
    linear-gradient(180deg, #08090d 0%, #050609 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.hs-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(5, 6, 9, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0,0,0,.32);
}
.hs-brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.hs-brand-mark {
  width: 42px; height: 42px; border-radius: 15px;
  display: grid; place-items: center; font-weight: 900;
  background: linear-gradient(135deg, var(--red), #ff6886);
  box-shadow: 0 0 0 6px rgba(229,9,53,.12), 0 18px 34px rgba(229,9,53,.35);
}
.hs-brand strong { display: block; font-size: 16px; letter-spacing: .2px; }
.hs-brand em { color: var(--red2); font-style: normal; font-weight: 800; }
.hs-nav { display: flex; align-items: center; gap: 8px; }
.hs-nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
}
.hs-nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.hs-nav .hs-nav-cta { color: white; background: linear-gradient(135deg, var(--red), #ff315c); box-shadow: 0 14px 34px rgba(229,9,53,.30); }
.hs-main { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }
.hs-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 26px;
  align-items: center;
  padding: 72px 0 48px;
}
.hs-hero-bg {
  position: absolute; inset: 28px -80px 0;
  background:
    linear-gradient(120deg, rgba(229,9,53,.22), transparent 38%),
    radial-gradient(circle at 38% 34%, rgba(255,49,92,.22), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 80%);
  border-radius: 46px;
  border: 1px solid rgba(255,255,255,.06);
  z-index: -1;
  overflow: hidden;
}
.hs-hero-bg:before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, black 22%, black 75%, transparent);
}
.hs-hero-content { max-width: 760px; }
.hs-kicker, .hs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #ffb3c2;
  background: rgba(229,9,53,.10);
  border: 1px solid rgba(255,49,92,.28);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hs-kicker span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red2); box-shadow: 0 0 0 6px rgba(255,49,92,.18);
}
.hs-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -0.07em;
  max-width: 900px;
  overflow-wrap: anywhere;
}
.hs-hero-text {
  margin: 0;
  max-width: 720px;
  font-size: clamp(17px, 2vw, 22px);
  color: #c8d0dc;
}
.hs-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hs-btn, .hs-refresh, .hs-acquisition-card a {
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hs-btn:hover, .hs-refresh:hover, .hs-acquisition-card a:hover { transform: translateY(-2px); }
.hs-btn-primary { background: linear-gradient(135deg, var(--red), #ff315c); box-shadow: 0 20px 48px rgba(229,9,53,.38); }
.hs-btn-ghost { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: white; }
.hs-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hs-trust-row span {
  color: #d9dee8;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.hs-acquisition-card {
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    radial-gradient(circle at 18% 0, rgba(229,9,53,.35), transparent 45%),
    var(--panel);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 26px;
}
.hs-acquisition-card span { color: var(--red2); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.hs-acquisition-card strong { display: block; font-size: 30px; line-height: 1.05; margin: 12px 0; letter-spacing: -.04em; }
.hs-acquisition-card p { color: #c8d0dc; margin: 0 0 20px; }
.hs-acquisition-card a { width: 100%; color: white; background: linear-gradient(135deg, var(--red), #ff315c); box-shadow: 0 18px 42px rgba(229,9,53,.35); }
.hs-section { margin: 28px 0; }
.hs-section-head, .hs-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 16px;
}
.hs-section-head h2, .hs-panel-head h2, .hs-value h2, .hs-page-top h1 { margin: 8px 0 0; font-size: clamp(28px, 3vw, 46px); line-height: 1.04; letter-spacing: -.045em; }
.hs-refresh { color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.hs-refresh.is-loading { pointer-events: none; opacity: .65; }
.hs-cards { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.hs-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 0, rgba(229,9,53,.22), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
}
.hs-card span { display: block; color: var(--muted); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hs-card strong { display: block; margin: 18px 0 4px; font-size: clamp(31px, 4vw, 52px); line-height: .9; letter-spacing: -.06em; }
.hs-card small { color: #aeb7c5; }
.hs-card-danger { background: radial-gradient(circle at 20% 0, rgba(229,9,53,.45), transparent 48%), linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); }
.hs-grid-two { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 16px; }
.hs-panel {
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border-radius: 30px;
  padding: 18px;
  box-shadow: 0 24px 72px rgba(0,0,0,.26);
  overflow: hidden;
}
.hs-panel-head h2 { font-size: clamp(24px, 2.3vw, 34px); }
.hs-badge {
  padding: 8px 12px;
  background: rgba(50,213,131,.12);
  border: 1px solid rgba(50,213,131,.25);
  color: #a7f3c6;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.hs-map-shell { min-height: 450px; border-radius: 24px; border: 1px solid rgba(255,255,255,.08); overflow: hidden; background: #070a10; }
.hs-world-map { width: 100%; height: 450px; display: block; }
.hs-continent { fill: rgba(255,255,255,.075); stroke: rgba(255,255,255,.12); stroke-width: 2; }
.hs-map-marker .pulse { animation: hsPulse 2s ease-in-out infinite; transform-origin: center; }
@keyframes hsPulse { 0%,100%{opacity:.25; transform: scale(.8)} 50%{opacity:.9; transform: scale(1.3)} }
.hs-map-label { fill: #ffffff; font-weight: 900; font-size: 13px; paint-order: stroke; stroke: #050609; stroke-width: 5px; stroke-linejoin: round; }
.hs-map-caption { color: var(--muted); margin: 12px 4px 0; font-size: 13px; }
.hs-bars { display: grid; gap: 12px; padding: 4px; }
.hs-bar-row { display: grid; gap: 6px; }
.hs-bar-top { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; font-weight: 900; }
.hs-bar-shell { height: 12px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.hs-bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--red), #ff6d89); box-shadow: 0 0 24px rgba(255,49,92,.42); }
.hs-table-timeline { grid-template-columns: minmax(0, 1fr) 420px; }
.hs-table-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid rgba(255,255,255,.08); }
.hs-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.hs-table th, .hs-table td { padding: 14px 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
.hs-table th { color: #c5ccd9; background: rgba(255,255,255,.04); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hs-table td { color: #edf0f7; }
.hs-level { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: rgba(229,9,53,.13); color: #ffb3c2; font-size: 12px; font-weight: 900; }
.hs-timeline { display: grid; gap: 12px; }
.hs-timeline-item { position: relative; padding: 14px 14px 14px 42px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; }
.hs-timeline-item:before { content: ""; position: absolute; left: 15px; top: 20px; width: 10px; height: 10px; border-radius: 50%; background: var(--red2); box-shadow: 0 0 0 7px rgba(255,49,92,.14); }
.hs-timeline-item strong { display: block; font-size: 13px; color: #ffb3c2; }
.hs-timeline-item p { margin: 4px 0 0; color: #d8dde8; }
.hs-insights { padding: 22px 0; }
.hs-article-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.hs-article-card {
  min-height: 210px;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 16% 0, rgba(229,9,53,.18), transparent 45%),
    rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.hs-article-card:hover { transform: translateY(-4px); border-color: rgba(255,49,92,.42); background: rgba(255,255,255,.055); }
.hs-article-card span { color: var(--red2); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.hs-article-card strong { display: block; margin: 12px 0; font-size: 20px; line-height: 1.15; }
.hs-article-card p { margin: 0; color: var(--muted); }
.hs-value {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  padding: 28px;
  margin-bottom: 50px;
  background: radial-gradient(circle at 0 0, rgba(229,9,53,.24), transparent 42%), linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.hs-value p { color: #c8d0dc; max-width: 740px; }
.hs-value ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.hs-value li { padding: 12px 14px; border: 1px solid rgba(255,255,255,.10); border-radius: 16px; background: rgba(255,255,255,.04); font-weight: 800; }
.hs-value li:before { content: "•"; color: var(--red2); margin-right: 8px; }
.hs-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 24px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--muted);
}
.hs-footer strong { color: var(--text); margin-right: 8px; }
.hs-footer a { color: #ffb3c2; font-weight: 900; }
.hs-page-main { padding: 56px 0; }
.hs-page-article { max-width: 920px; margin: 0 auto; }
.hs-page-top {
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(circle at 0 0, rgba(229,9,53,.22), transparent 44%), rgba(255,255,255,.04);
}
.hs-page-top p { color: #c8d0dc; font-size: 18px; }
.hs-page-content {
  margin-top: 18px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}
.hs-page-content h2 { font-size: 28px; line-height: 1.1; margin-top: 34px; }
.hs-page-content p { color: #d5dae5; font-size: 18px; }
.hs-lead { font-size: 21px !important; color: #ffffff !important; }
.hs-note { margin-top: 30px; padding: 18px; border-radius: 18px; border: 1px solid rgba(255,49,92,.22); background: rgba(229,9,53,.08); color: #ffd7df; }
.hs-related { margin-top: 18px; padding: 24px; border-radius: 28px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.035); }
.hs-related h2 { margin-top: 0; }
.hs-related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.hs-related-grid a { padding: 14px; border-radius: 16px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); font-weight: 900; }
@media (max-width: 1040px) {
  .hs-hero, .hs-grid-two, .hs-table-timeline, .hs-value { grid-template-columns: 1fr; }
  .hs-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hs-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hs-acquisition-card { max-width: 520px; }
}
@media (max-width: 720px) {
  .hs-header { position: relative; flex-direction: column; align-items: flex-start; }
  .hs-nav { width: 100%; overflow-x: auto; padding-bottom: 3px; }
  .hs-hero { min-height: auto; padding-top: 38px; }
  .hs-hero-bg { inset: 16px -16px 0; border-radius: 28px; }
  .hs-hero h1 { font-size: clamp(44px, 13vw, 70px); letter-spacing: -.06em; }
  .hs-cards, .hs-article-grid, .hs-related-grid { grid-template-columns: 1fr; }
  .hs-world-map { height: 340px; }
  .hs-map-shell { min-height: 340px; }
  .hs-section-head, .hs-panel-head { align-items: flex-start; flex-direction: column; }
  .hs-footer { flex-direction: column; align-items: flex-start; }
}
