:root {
  color-scheme: dark;
  --background: #040406;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-border: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --quiet: rgba(255, 255, 255, 0.45);
  --pink: #ff2e7a;
  --orange: #ff8530;
  --purple: #a32bd4;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 46, 122, 0.2), transparent 38rem),
    radial-gradient(circle at 0% 100%, rgba(255, 133, 48, 0.12), transparent 34rem),
    var(--background);
}

a {
  color: inherit;
}

.shell {
  width: min(100% - 40px, 960px);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--text);
  font-family: "Arial Black", "Helvetica Neue", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a,
.footer-links a,
.inline-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

main {
  flex: 1;
}

.hero {
  min-height: min(650px, 72vh);
  display: grid;
  place-items: center;
  padding: 70px 0 90px;
  text-align: center;
}

.hero-inner {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.legal h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
}

.lede {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.65;
}

.actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  color: var(--text);
  background: var(--surface);
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  border-color: rgba(255, 46, 122, 0.52);
  background: linear-gradient(135deg, rgba(255, 46, 122, 0.85), rgba(128, 31, 184, 0.86));
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 100px;
}

.card,
.legal-card {
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.card {
  min-height: 180px;
  padding: 24px;
}

.card-mark {
  width: 12px;
  height: 12px;
  margin-bottom: 36px;
  border-radius: 4px;
  background: var(--pink);
  box-shadow: 0 0 24px rgba(255, 46, 122, 0.5);
}

.card:nth-child(2) .card-mark {
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 133, 48, 0.45);
}

.card:nth-child(3) .card-mark {
  background: var(--purple);
  box-shadow: 0 0 24px rgba(163, 43, 212, 0.45);
}

.card h2,
.legal-card h2 {
  margin: 0;
  font-size: 1.12rem;
}

.card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.legal {
  padding: 64px 0 90px;
}

.updated {
  margin: 22px 0 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.legal-card {
  max-width: 760px;
  margin-top: 48px;
  padding: clamp(24px, 5vw, 44px);
}

.legal-card section + section {
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 22px;
}

.support-action {
  margin-top: 24px;
}

.site-footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--quiet);
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, 960px);
  }

  .nav {
    min-height: 74px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    padding: 52px 0 70px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }

  .card {
    min-height: 150px;
  }

  .card-mark {
    margin-bottom: 24px;
  }

  .legal {
    padding: 46px 0 70px;
  }

  .site-footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
