:root {
  --night: #070908;
  --elevated: #121714;
  --border: #243029;
  --text: #F4F7F5;
  --text-secondary: #A8B5AD;
  --text-muted: #6F7B74;
  --accent: #8BFF9F;
  --accent-dim: #6B9B7A;
  --on-accent: #0E1110;
  --glow: rgba(139, 255, 159, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--night);
  color: var(--text);
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(720px 480px at 50% 18%, rgba(139, 255, 159, 0.08), transparent 60%),
    var(--night);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 14px;
}

.brand:hover { text-decoration: none; }

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

nav { display: flex; gap: 18px; }
nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
nav a:hover,
nav a[aria-current="page"] { color: var(--text); }

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

.logo-wrap {
  position: relative;
  width: 168px;
  height: 168px;
  margin-bottom: 28px;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 44px;
  background: radial-gradient(circle, var(--glow), transparent 68%);
  animation: breathe 4.8s ease-in-out infinite;
}

.logo-wrap img {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 38px;
  display: block;
}

@keyframes breathe {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dim);
  font-weight: 600;
  margin-bottom: 8px;
}

.wordmark {
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 12em;
}

.lead {
  max-width: 34em;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

.proof strong {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.proof span {
  color: var(--text-secondary);
  font-size: 15px;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  padding: 11px 16px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--elevated);
  color: var(--text);
}

.store:hover {
  text-decoration: none;
  border-color: var(--accent-dim);
}

.store.primary {
  background: var(--accent);
  color: var(--on-accent);
  border-color: transparent;
}

.store svg { flex-shrink: 0; }
.store .label { text-align: left; line-height: 1.15; }
.store small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.72;
  text-transform: uppercase;
}
.store b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.micro {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
}

.beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.beat {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px 16px;
  text-align: left;
}

.beat h2 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.beat p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 28px;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 8px 0 20px;
}

footer {
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

footer a { color: var(--text-secondary); }

.page h1 { text-align: left; max-width: none; font-size: clamp(28px, 5vw, 40px); }
.page .lead { text-align: left; font-size: 16px; }
.page p, .page li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.page h2 {
  font-size: 20px;
  margin: 28px 0 8px;
}
.page ul { padding-left: 1.15em; margin-bottom: 16px; }
.page li { margin-bottom: 8px; }

.callout {
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--elevated);
  border-radius: 16px;
}
.callout strong { color: var(--text); }

@media (max-width: 640px) {
  .beats { grid-template-columns: 1fr; }
  .logo-wrap, .logo-wrap img { width: 148px; height: 148px; }
  .logo-wrap img { border-radius: 34px; }
  .store { flex: 1 1 160px; justify-content: center; }
}
