:root {
  --bg: #0A0A0F;
  --card: #0E1015;
  --line: #1c2030;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --whisper: rgba(255, 255, 255, 0.40);
  --gold: #C8A96E;
  --grad: linear-gradient(141deg, #f5d76e, #fb6a5f, #c144ff, #5c7cfa);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* App icon — the real square icon so it reads as an "app" */
.appicon { display: block; border-radius: 22%; }
.appicon.nav-ico { width: 42px; height: 42px; }
.appicon.hero-ico {
  width: 104px; height: 104px; margin: 0 auto 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Top nav */
.nav {
  display: flex; align-items: center; gap: 12px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.nav .name {
  font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 500;
  letter-spacing: -0.3px;
}
.nav .spacer { flex: 1; }
.nav .links a { color: var(--muted); font-size: 14px; margin-left: 20px; }
.nav .links a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero { padding: 96px 0 80px; text-align: center; }
.hero h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: clamp(40px, 8vw, 68px); line-height: 1.05; letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.hero p { color: var(--muted); font-size: 19px; max-width: 460px; margin: 0 auto 40px; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}

.cta {
  display: inline-block; background: var(--gold); color: #15100A;
  font-weight: 600; font-size: 16px; padding: 15px 30px; border-radius: 999px;
}
.cta:hover { text-decoration: none; opacity: 0.92; }
.cta.soon { background: transparent; color: var(--muted); border: 1px solid var(--line); }

/* Feature points on landing */
.points { display: grid; gap: 14px; max-width: 420px; margin: 56px auto 0; text-align: left; }
.points div { color: var(--muted); padding-left: 26px; position: relative; }
.points div::before {
  content: ''; position: absolute; left: 0; top: 10px; width: 10px; height: 10px;
  border-radius: 999px; background: var(--grad);
}

/* Legal / content pages */
.doc { padding: 56px 0 96px; }
.doc h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: 38px; letter-spacing: -1px; margin: 0 0 8px;
}
.doc .updated { color: var(--whisper); font-size: 14px; margin-bottom: 40px; }
.doc h2 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: 23px; letter-spacing: -0.3px; margin: 40px 0 12px;
}
.doc h3 { font-size: 17px; font-weight: 600; margin: 28px 0 6px; }
.doc p, .doc li { color: var(--muted); }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--text); font-weight: 600; }
.doc hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }

/* Footer */
.foot {
  border-top: 1px solid var(--line); padding: 36px 0 56px;
  color: var(--whisper); font-size: 14px;
  display: flex; gap: 22px; flex-wrap: wrap; align-items: center;
}
.foot a { color: var(--muted); }
.foot .spacer { flex: 1; }
