:root {
  color-scheme: dark;
  --bg: #070812;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f7f8ff;
  --muted: rgba(229, 234, 255, 0.72);
  --soft: rgba(229, 234, 255, 0.54);
  --pink: #ff3f88;
  --violet: #8c4dff;
  --blue: #1687ff;
  --green: #30d979;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(140, 77, 255, 0.30), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(22, 135, 255, 0.26), transparent 24rem),
    radial-gradient(circle at 54% 92%, rgba(255, 63, 136, 0.20), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: #9fc7ff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--stroke);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(140, 77, 255, 0.20), rgba(22, 135, 255, 0.10));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.brand-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--pink), var(--violet) 48%, var(--blue));
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(78, 68, 255, 0.34);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: #9fc7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 900;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 17px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.panel,
.policy-header,
.policy-card {
  border: 1px solid var(--stroke);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.panel {
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
}

.panel p:last-child,
.policy-header p:last-child,
.policy-card p:last-child {
  margin-bottom: 0;
}

.panel-highlight,
.panel-wide {
  grid-column: 1 / -1;
}

.panel-highlight {
  background:
    linear-gradient(135deg, rgba(255, 63, 136, 0.16), rgba(22, 135, 255, 0.08)),
    var(--panel-strong);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.safety-note {
  border-color: rgba(48, 217, 121, 0.26);
  background: linear-gradient(135deg, rgba(48, 217, 121, 0.13), rgba(255, 255, 255, 0.06));
}

.policy-header {
  margin-top: 42px;
  padding: 30px;
  border-radius: 24px;
}

.policy-header .updated {
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.policy-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.policy-card {
  padding: 22px 24px;
  border-radius: 18px;
}

.policy-card h3 {
  color: #ffffff;
}

.policy-card p {
  font-size: 15px;
}

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

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

  .brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 28px;
  }

  .content-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .panel,
  .policy-header,
  .policy-card {
    padding: 20px;
  }
}
