:root {
  color-scheme: dark;
  --bg: #07090b;
  --panel: #101418;
  --panel-2: #151a1f;
  --text: #f4f4ef;
  --muted: #aeb7bb;
  --red: #f2361d;
  --red-2: #ff6a39;
  --cyan: #00d7ff;
  --line: rgba(255,255,255,.14);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(242,54,29,.12) 36.2% 36.5%, transparent 36.7%),
    radial-gradient(circle at 78% 28%, rgba(0,215,255,.16), transparent 28rem),
    radial-gradient(circle at 8% 76%, rgba(242,54,29,.2), transparent 32rem);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; position: relative; }
.top {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7,9,11,.82);
  backdrop-filter: blur(18px);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 9px;
  background: linear-gradient(145deg, #090b0d, #171c20);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(242,54,29,.32);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 20px;
  width: 18px;
  height: 18px;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 50% 72%, 0 100%);
}
.links { display: flex; gap: 22px; align-items: center; color: #dce2e3; font-size: 14px; }
.links a { opacity: .86; }
.links a:hover { opacity: 1; color: var(--red-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, var(--red), #b9160b);
  color: white;
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(242,54,29,.34);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn.secondary { background: #11161a; box-shadow: none; border-color: rgba(0,215,255,.35); }
.hero {
  min-height: 100svh;
  display: grid;
  align-items: start;
  padding: 116px 0 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: center;
}
h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 112px);
  line-height: .76;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1 span { display: block; color: var(--red); }
.lead {
  max-width: 540px;
  margin: 32px 0 28px;
  color: #d4dddf;
  font-size: clamp(20px, 2.5vw, 30px);
}
.hero-art {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #090c0e;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.hero-art img { width: 100%; aspect-ratio: 14/9; max-height: calc(100svh - 180px); object-fit: cover; }
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip a, .strip span {
  padding: 22px;
  color: #e8eeee;
  font-weight: 800;
  border-right: 1px solid var(--line);
}
.strip a:last-child, .strip span:last-child { border-right: 0; }
.section { padding: 88px 0; }
.section.tight { padding-top: 46px; }
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: center;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}
h3 { margin: 0 0 12px; font-size: 24px; }
p { margin: 0 0 18px; color: var(--muted); font-size: 18px; }
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17,22,26,.92), rgba(9,12,15,.92));
  border-radius: 12px;
  padding: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  min-height: 220px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(160deg, rgba(20,25,30,.92), rgba(8,10,12,.96));
  border-radius: 8px;
  padding: 26px;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(0,215,255,.42);
  margin-bottom: 24px;
  position: relative;
}
.icon::before { content: ""; position: absolute; inset: 13px; border: 3px solid var(--cyan); border-radius: 50%; }
.icon.paper::before { border-radius: 2px; border-color: var(--red-2); }
.cta-band {
  border: 1px solid rgba(242,54,29,.4);
  background: linear-gradient(120deg, rgba(242,54,29,.22), rgba(8,10,12,.86));
  border-radius: 10px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.page-hero {
  min-height: 70svh;
  padding: 132px 0 62px;
  display: grid;
  align-items: center;
}
.page-hero h1 { font-size: clamp(58px, 10vw, 116px); }
.policy h1 { font-size: clamp(48px, 8vw, 88px); }
.policy p, .policy li { color: #cbd3d5; font-size: 17px; }
.policy ul { margin: 0 0 24px; padding-left: 20px; }
.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: #8d979b;
  font-size: 14px;
}
.footer .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .nav { height: 64px; }
  .links { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 96px; }
  .hero-art img { max-height: none; }
  h1 { font-size: clamp(54px, 16vw, 70px); }
  .strip, .cards { grid-template-columns: 1fr; }
  .strip a, .strip span { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-band { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 62px 0; }
}
