:root {
  color-scheme: dark;
  --bg: #050b14;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-strong: #0f172a;
  --text: #f8fafc;
  --muted: #b6c2d2;
  --soft: #7d8ba1;
  --red: #ff4057;
  --green: #22c55e;
  --amber: #f59e0b;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 64, 87, 0.22), transparent 30rem),
    radial-gradient(circle at 78% 0%, rgba(34, 197, 94, 0.14), transparent 26rem),
    linear-gradient(145deg, #050b14 0%, #07111f 46%, #0b1220 100%);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ff4057, #b91c1c);
  box-shadow: 0 14px 34px rgba(255, 64, 87, 0.28);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.brand-mark::after {
  inset: 18px;
  border: 0;
  background: #fff;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 18px;
}

.brand-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 36px;
  align-items: center;
  padding: 76px 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.10);
  font-size: 13px;
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #dbeafe;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 34px var(--shadow);
  transform: translateY(0);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.46);
}

.button.primary {
  border: 0;
  background: linear-gradient(145deg, #ff6677, var(--red) 45%, #a70f25);
}

.cockpit-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 64, 87, 0.22), transparent 14rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.radar {
  position: absolute;
  inset: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
}

.radar::after {
  inset: 116px;
}

.route-line {
  position: absolute;
  left: 20%;
  right: 22%;
  top: 52%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #eab308, var(--red));
  transform: rotate(-18deg);
  box-shadow: 0 0 32px rgba(255, 64, 87, 0.36);
}

.route-pin {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 34px rgba(255, 64, 87, 0.72);
}

.route-pin.one {
  left: 21%;
  top: 59%;
}

.route-pin.two {
  right: 25%;
  top: 38%;
}

.status-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(5, 11, 20, 0.72);
  backdrop-filter: blur(16px);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.status-row strong {
  color: #fff;
}

.section {
  padding: 52px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 64, 87, 0.14);
  color: #fecdd3;
  font-weight: 950;
}

.notice {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 26px;
  background: rgba(245, 158, 11, 0.08);
  color: #fde68a;
  line-height: 1.65;
}

.page-main {
  max-width: 880px;
  padding: 62px 0;
}

.page-main .lead {
  font-size: 19px;
}

.policy-card {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 25px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card ul,
.policy-card ol {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-card li + li {
  margin-top: 8px;
}

.meta {
  color: var(--soft);
  font-size: 14px;
  font-weight: 760;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 850;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .cockpit-card {
    min-height: 340px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 22px, 1120px);
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-links {
    gap: 10px;
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .cockpit-card {
    border-radius: 30px;
  }
}
