:root {
  --bg: #000000;
  --bg-glow: #171717;
  --text: #f5f2eb;
  --muted: rgba(245, 242, 235, 0.56);
  --muted-strong: rgba(245, 242, 235, 0.78);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 18%, var(--bg-glow), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "SF Pro Display", "Helvetica Neue", sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}

.icon-shell  {
  width: 256px;
  height: 256px;
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 60px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 24px 60px -26px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.app-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.55);
  corner-shape: squircle;
}

@supports (corner-shape: squircle) {
  .icon-shell, .app-icon {
    /* Supported in Chrome/Edge 139+ */
    corner-shape: squircle;
    border-radius: 100%;
  }
}

.eyebrow {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-footer {
  padding: 1.1rem 1.5rem 1.4rem;
  text-align: center;
}

.site-footer a,
.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
}

.legal-layout {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.legal-header {
  margin-bottom: 2.5rem;
}

.legal-header h1 {
  margin: 1rem 0 0.6rem;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.legal-header p,
.legal-section p,
.legal-section li {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-section {
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.legal-section + .legal-section {
  margin-top: 1.4rem;
}

.legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 1rem;
  }

  .legal-layout {
    padding-inline: 1rem;
  }
}
