:root {
  --bg: #0f1424;
  --bg-deep: #070b18;
  --panel: rgba(20, 26, 45, 0.86);
  --text: #eceff3;
  --muted: #b8b3d4;
  --purple: #7c5cff;
  --blue: #3da5ff;
  --cyan: #2bd4b2;
  --line: rgba(236, 239, 243, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 30px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.75;
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 92, 255, 0.30), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(43, 212, 178, 0.20), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(61, 165, 255, 0.18), transparent 34%),
    linear-gradient(135deg, var(--bg-deep), var(--bg));
  overflow-x: hidden;
}

a {
  color: inherit;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  z-index: 0;
  filter: blur(2px);
}

.orb-one {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 110px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.46), transparent 65%);
}

.orb-two {
  width: 290px;
  height: 290px;
  left: -120px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(43, 212, 178, 0.28), transparent 65%);
}

.orb-three {
  width: 160px;
  height: 160px;
  right: 14%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(61, 165, 255, 0.18), transparent 67%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  margin-bottom: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(20, 26, 45, 0.95), rgba(15, 20, 36, 0.95));
  border: 1px solid rgba(236, 239, 243, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 38px rgba(0, 0, 0, 0.32);
}

.brand-ring {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 10px solid transparent;
  border-top-color: var(--purple);
  border-left-color: var(--purple);
  border-bottom-color: var(--blue);
  border-right-color: var(--cyan);
  transform: rotate(-20deg);
  filter: drop-shadow(0 0 15px rgba(124, 92, 255, 0.5));
}

.brand-ring::after {
  content: "";
  position: absolute;
  left: -9px;
  bottom: -11px;
  width: 15px;
  height: 15px;
  border-radius: 1px 11px 11px 11px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  transform: rotate(18deg);
}

.brand-play {
  position: absolute;
  left: 26px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--blue);
  filter: drop-shadow(0 0 10px rgba(61, 165, 255, 0.85));
}

.brand-dot {
  position: absolute;
  top: 16px;
  right: 17px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9b4ff, var(--cyan));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-name span,
.hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(124, 92, 255, 0.35);
  border-radius: 999px;
  background: rgba(20, 26, 45, 0.72);
  color: var(--text);
  font-size: 0.92rem;
  white-space: nowrap;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 18px rgba(43, 212, 178, 0.85);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  margin-bottom: 26px;
}

.hero-content,
.summary-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 26, 45, 0.88), rgba(15, 20, 36, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-content {
  position: relative;
  overflow: hidden;
  padding: 44px;
}

.hero-content::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  bottom: -120px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--purple), var(--blue), var(--cyan), var(--purple));
  opacity: 0.22;
  filter: blur(4px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 92, 255, 0.30);
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.12);
  color: #d9d2ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.meta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.meta-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(236, 239, 243, 0.055);
}

.meta-grid small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.meta-grid strong {
  color: var(--text);
}

.summary-card {
  min-height: 340px;
  padding: 30px;
}

.summary-card h2 {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.summary-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(236, 239, 243, 0.10);
  border-radius: 18px;
  background: rgba(236, 239, 243, 0.055);
}

.summary-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(124, 92, 255, 0.32);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.35), rgba(43, 212, 178, 0.20));
  color: var(--text);
  font-weight: 900;
}

.summary-item p {
  color: var(--muted);
}

.summary-item strong,
.policy-section strong {
  color: var(--text);
}

.policy-card {
  padding: 18px;
}

.policy-section {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  border-bottom: 0;
}

.section-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  box-shadow: 0 16px 35px rgba(124, 92, 255, 0.25);
}

.section-content h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-content p {
  margin-bottom: 12px;
  color: var(--muted);
}

.section-content ul,
.section-content ol {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  list-style: none;
}

.section-content li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(236, 239, 243, 0.08);
  border-radius: 18px;
  background: rgba(236, 239, 243, 0.045);
  color: var(--muted);
}

.section-content ul li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 18px rgba(43, 212, 178, 0.55);
}

.section-content ol {
  counter-reset: deletion-step;
}

.section-content ol li {
  counter-increment: deletion-step;
}

.section-content ol li::before {
  content: counter(deletion-step);
  position: absolute;
  left: 13px;
  top: 14px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
}

.section-content a,
.site-footer a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
}

.section-content a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.link-list a,
.contact-card {
  padding: 14px 16px;
  border: 1px solid rgba(43, 212, 178, 0.24);
  border-radius: 18px;
  background: rgba(43, 212, 178, 0.08);
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.contact-card p {
  margin: 0;
}

.site-footer {
  margin-top: 24px;
  color: rgba(236, 239, 243, 0.60);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
    padding-top: 20px;
  }

  .hero-content,
  .summary-card {
    padding: 24px;
  }

  .policy-card {
    padding: 10px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .section-number {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .brand-icon {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: 1.32rem;
  }

  .brand-tagline {
    font-size: 0.86rem;
  }

  .status-pill {
    white-space: normal;
  }
}
