:root {
  color-scheme: dark;
  --wildpeep-page-background: #08070f;
  --wildpeep-page-background-soft: #0d0b1a;
  --wildpeep-elevated-background: #1e1a38;
  --wildpeep-card-background: #1a1535;
  --wildpeep-card-background-muted: #211a43;
  --wildpeep-card-border: #2a2050;
  --wildpeep-card-border-strong: #3d2d70;
  --wildpeep-text-primary: #ede8f5;
  --wildpeep-text-secondary: #e8efe9;
  --wildpeep-text-muted: #9f91ca;
  --wildpeep-text-low: #7060a0;
  --wildpeep-brand-light: #a78bfa;
  --wildpeep-brand-primary: #8b5cf6;
  --wildpeep-brand-deep: #4a3d70;
  --wildpeep-link: #e8efe9;
  --wildpeep-link-hover: #a78bfa;
  --wildpeep-focus-ring: #a78bfa;
  --wildpeep-warning: #f3c969;
  --wildpeep-shadow-panel: 0 22px 80px rgba(0, 0, 0, 0.22);
  --wildpeep-shadow-landing: 0 24px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(139, 92, 246, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--wildpeep-page-background), #090611 44rem);
  color: var(--wildpeep-text-primary);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
}

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

a:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--wildpeep-focus-ring);
  outline-offset: 4px;
}

.skip-link {
  background: var(--wildpeep-text-secondary);
  color: var(--wildpeep-page-background);
  left: 16px;
  padding: 10px 12px;
  position: fixed;
  top: -56px;
  z-index: 30;
}

.skip-link:focus {
  top: 16px;
}

.main {
  align-items: center;
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: 900px;
  min-height: 100vh;
  min-width: 0;
  padding: 68px 24px 56px;
  place-content: center;
  text-align: center;
  width: min(100%, 900px);
}

.hero {
  align-items: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
  width: min(100%, 760px);
}

.hero-mark {
  background: currentColor;
  color: var(--wildpeep-text-secondary);
  display: block;
  height: 96px;
  margin-bottom: 4px;
  mask-image: url("/assets/wildpeep-cardinal.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 172%;
  -webkit-mask-image: url("/assets/wildpeep-cardinal.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 172%;
  width: 96px;
}

.hero h1 {
  color: var(--wildpeep-text-secondary);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 850;
  line-height: 1;
  margin: 0;
  overflow-wrap: anywhere;
}

.product-subtitle,
.login-note,
.eyebrow {
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-subtitle {
  color: var(--wildpeep-brand-light);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.hero h2,
.info-tile h2,
.legal-panel h1 {
  color: var(--wildpeep-text-secondary);
  margin: 0;
  overflow-wrap: anywhere;
}

.hero h2 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  margin-top: 10px;
}

.hero p,
.info-tile p,
.legal-panel p {
  color: var(--wildpeep-text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 640px;
}

.login-note {
  color: var(--wildpeep-text-low);
  font-size: 11px;
  line-height: 1.45;
}

.info-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  margin: 0 auto;
  min-width: 0;
  width: 100%;
}

.info-tile,
.legal-panel {
  background: var(--wildpeep-card-background);
  border: 1px solid var(--wildpeep-card-border);
  border-radius: 12px;
  box-shadow: var(--wildpeep-shadow-panel);
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0;
  min-width: 0;
  padding: 26px;
  text-align: center;
}

.info-tile h2 {
  font-size: 24px;
  line-height: 1.2;
}

.email-link,
.legal-panel a,
.info-tile a {
  color: var(--wildpeep-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.email-link:hover,
.legal-panel a:hover,
.info-tile a:hover {
  color: var(--wildpeep-link-hover);
}

.legal-main {
  max-width: 860px;
}

.legal-panel {
  margin-top: 0;
}

.legal-panel h1 {
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1;
}

.eyebrow {
  color: var(--wildpeep-brand-light);
  font-size: 11px;
}

@media (max-width: 760px) {
  .main {
    gap: 20px;
    padding: 44px 16px 38px;
  }

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

  .info-tile,
  .legal-panel {
    padding: 20px;
  }

  .hero-mark {
    height: 72px;
    width: 72px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .main {
    padding-left: 8px;
    padding-right: 8px;
  }

  .info-tile,
  .legal-panel {
    padding: 14px;
  }

  .hero-mark {
    height: 62px;
    width: 62px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .product-subtitle,
  .login-note,
  .eyebrow {
    font-size: 10px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero p,
  .info-tile p,
  .legal-panel p {
    font-size: 14px;
  }
}
