:root {
  --bg: #08080a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.5);
  --text-muted: rgba(255, 255, 255, 0.32);
  --green: #5cc9af;
  --amber: #f7ce46;
  --radius-card: 24px;
  --radius-chip: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Geist", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 24px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

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

.brand img {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 15px;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero .icon {
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  padding: 14px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: var(--green);
}

.hero .lead {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}

.store-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.store-cta img {
  height: 52px;
}

.store-cta .note {
  font-size: 14px;
  color: var(--text-muted);
}

/* Feature grid */
.features {
  padding: 40px 0 72px;
}

.features h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}

.card .emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 22px;
  background: var(--surface-strong);
  border-radius: var(--radius-chip);
  margin-bottom: 14px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

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

/* Privacy band */
.band {
  background: linear-gradient(135deg, rgba(92, 201, 175, 0.12), rgba(92, 201, 175, 0.04));
  border: 1px solid rgba(92, 201, 175, 0.25);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  margin-top: 14px;
}

.band h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.band p {
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

/* Legal pages */
.page {
  padding: 40px 0 72px;
  max-width: 720px;
  margin: 0 auto;
}

.page h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.page .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.page h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.page p, .page li {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page .callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}

.page .callout p {
  margin: 0;
  color: var(--text);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  margin-top: 24px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer nav a {
  color: var(--text-secondary);
  font-size: 14px;
}

@media (max-width: 560px) {
  .site-nav {
    gap: 16px;
  }

  .hero {
    padding: 48px 0 40px;
  }
}
