* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #f5f7ff;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(108, 92, 231, 0.28), transparent 34%),
    radial-gradient(circle at right bottom, rgba(0, 209, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #070814 0%, #0e1220 50%, #070814 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  opacity: 0.34;
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.55;
}

.orb-1 {
  top: -100px;
  right: -90px;
  background: rgba(108, 92, 231, 0.38);
}

.orb-2 {
  bottom: -120px;
  left: -120px;
  background: rgba(0, 209, 255, 0.22);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6c5ce7, #00d1ff);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 36px rgba(108, 92, 231, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: rgba(245, 247, 255, 0.68);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(245, 247, 255, 0.72);
}

.nav a,
.link-btn {
  transition: color 160ms ease, transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

.topbar-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6c5ce7, #00d1ff);
  color: white;
  box-shadow: 0 16px 40px rgba(0, 209, 255, 0.16);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #f5f7ff;
  border-color: rgba(255, 255, 255, 0.12);
}

.primary-btn:hover,
.ghost-btn:hover,
.link-btn:hover {
  transform: translateY(-2px);
}

.page-grid {
  display: grid;
  gap: 18px;
  padding-bottom: 34px;
}

.card,
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card {
  border-radius: 28px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding: 28px;
  align-items: center;
}

.hero-copy h1,
.section-tag,
.summary-icon,
.toc h2,
.policy-section h2,
.contact-card h2,
.footer p:first-child {
  margin: 0;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: rgba(245, 247, 255, 0.66);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 14px 0 16px;
}

.hero-copy p,
.policy-section p,
.contact-card p,
.quick-list li,
.footer p,
.summary-card p {
  color: rgba(245, 247, 255, 0.72);
  line-height: 1.7;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.meta-pill {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-label {
  display: block;
  color: rgba(245, 247, 255, 0.58);
  font-size: 0.78rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.meta-pill strong {
  font-size: 0.98rem;
}

.hero-aside {
  border-radius: 24px;
  padding: 20px;
}

.aside-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff9d;
  box-shadow: 0 0 16px rgba(0, 255, 157, 0.8);
}

.quick-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.quick-list strong {
  color: #ffffff;
}

.quote-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-box p {
  margin: 0;
  color: rgba(245, 247, 255, 0.9);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.summary-card {
  padding: 22px;
}

.summary-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  font-weight: 800;
  color: #8beaff;
}

.summary-card h2,
.policy-section h2,
.contact-card h2,
.toc h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.content-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 18px;
  padding: 20px;
  border-radius: 24px;
  display: grid;
  gap: 10px;
}

.toc a {
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(245, 247, 255, 0.76);
  border: 1px solid transparent;
}

.toc a:hover,
.toc a.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.policy-stack {
  display: grid;
  gap: 16px;
}

.policy-section {
  padding: 24px;
}

.policy-section ul,
.policy-section ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(245, 247, 255, 0.72);
  display: grid;
  gap: 10px;
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.bullet-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 255, 0.8);
}

.section-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: #8beaff;
  margin-bottom: 12px;
}

.contact-card {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  padding: 10px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .hero-card,
  .content-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

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

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .topbar-actions,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }
}
