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

:root {
  --orange: #E65100;
  --gold: #F9A825;
  --dark: #1A1A1A;
  --text: #222;
  --muted: #666;
  --border: #E0E0E0;
  --bg: #FAFAFA;
  --surface: #FFF;
  --max: 720px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* ── Nav ── */
nav {
  background: var(--dark);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 52px;
}
nav .brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: -0.01em;
  text-decoration: none;
  margin-right: auto;
}
nav a {
  color: #CCC;
  font-size: 0.875rem;
  font-weight: 500;
}
nav a:hover { color: #FFF; text-decoration: none; }

/* ── Hero ── */
.hero {
  background: var(--dark);
  color: #FFF;
  padding: 72px 24px 64px;
  text-align: center;
}
.hero .badge {
  display: inline-block;
  background: var(--orange);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.05rem;
  color: #BBB;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.store-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF;
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none !important;
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.store-btn .coming { font-size: 0.72rem; color: var(--muted); display: block; font-weight: 500; }

/* ── Features ── */
.features {
  max-width: var(--max);
  margin: 56px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.feature .icon { font-size: 1.6rem; margin-bottom: 10px; }
.feature h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── Content pages ── */
.page {
  max-width: var(--max);
  margin: 48px auto;
  padding: 0 24px 64px;
}
.page h1 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.page .meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.page h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 32px 0 10px;
}
.page p, .page li {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.65;
  margin-bottom: 8px;
}
.page ul { padding-left: 20px; margin-bottom: 8px; }
.page .notice {
  background: #FFF8E1;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: #5D4037;
  margin-bottom: 28px;
}
.page hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
footer a { color: var(--muted); margin: 0 8px; }
footer a:hover { color: var(--text); }
