:root {
  --bg-0: #070809;
  --bg-1: #0b0d0e;
  --bg-2: #171b1d;
  --silver: #c9cccf;
  --silver-dim: #8b8f93;
  --gold: #cda45c;
  --gold-bright: #e6c07f;
  --text: #e9e9ea;
  --text-dim: #a7abae;
  --border: #232629;
  --max-width: 760px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background: radial-gradient(
    circle at 50% 42%,
    var(--bg-2) 0%,
    var(--bg-1) 58%,
    var(--bg-0) 100%
  );
  background-attachment: fixed;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 8px;
}

.hero img.logo {
  width: min(280px, 60vw);
  height: auto;
  animation: logo-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

h1 {
  margin: 0;
  font-size: 0;
}

.kicker {
  margin: 24px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.tagline {
  margin: 10px 0 0;
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 46ch;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 48px 0 8px;
}

.feature {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.02);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}

.updated {
  color: var(--silver-dim);
  font-size: 0.9rem;
  margin: 0 0 32px;
}

section.policy-section {
  margin-bottom: 26px;
}

section.policy-section h2 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 8px;
}

section.policy-section p {
  margin: 0;
  color: var(--text-dim);
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.contact-email {
  display: inline-block;
  margin: 18px 0 4px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.beta-note {
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  color: var(--silver-dim);
  font-size: 0.88rem;
}

footer nav {
  display: flex;
  gap: 20px;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 0.92rem;
  color: var(--silver-dim);
}

.back-link:hover {
  color: var(--gold-bright);
}
