/* Moonwake — site styles. Quiet navy night, warm moonlight gold. */
:root{
  --bg0:#0b1026; --bg1:#111737; --bg2:#1a2148; --warm:#f2c37e;
  --ink:#f3f1ec; --ink-dim:#cfd2e0; --ink-faint:#8f94ad;
  --teal:#63d6c9; --gold:#e9bf74; --indigo:#8f9bf2;
  --card:rgba(255,255,255,.05); --line:rgba(255,255,255,.12);
  --maxw:1080px; --radius:20px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,sans-serif;
  color:var(--ink); line-height:1.65; -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(1100px 680px at 50% -10%, rgba(233,191,116,.14), transparent 60%),
    radial-gradient(900px 620px at 88% 16%, rgba(143,155,242,.10), transparent 62%),
    radial-gradient(820px 640px at 8% 74%, rgba(99,214,201,.08), transparent 60%),
    linear-gradient(180deg,var(--bg0) 0%,var(--bg1) 48%,var(--bg2) 100%);
  background-attachment:fixed; min-height:100vh;
}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
a{color:inherit}

/* Header / nav */
header{position:sticky;top:0;z-index:20;backdrop-filter:blur(14px);
  background:rgba(11,16,38,.6);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand .mark{font-weight:700;font-size:23px;letter-spacing:.4px;color:var(--ink);line-height:1}
.brand .mark .oo{color:var(--gold)}
.nav-right{display:flex;align-items:center;gap:18px}
.nav-right a{font-size:14px;color:var(--ink-dim);text-decoration:none;font-weight:500}
.nav-right a:hover{color:var(--ink)}

.brand-icon{width:30px;height:30px;border-radius:8px;display:block}

/* Hero */
.hero{text-align:center;padding:74px 0 40px}
.hero-split{display:grid;grid-template-columns:1.15fr .85fr;gap:36px;align-items:center;padding:56px 0 26px}
.hero-copy{text-align:left}
.hero-copy .moon{margin:0 0 22px}
.hero-copy .subtag{margin:0;max-width:520px}
.hero-shot img{width:100%;max-width:340px;height:auto;display:block;margin:0 auto;border-radius:26px;
  border:1px solid var(--line);box-shadow:0 34px 90px rgba(0,0,0,.55), 0 0 70px rgba(233,191,116,.10)}

/* Screenshot rows */
.shots-row{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:880px;margin:0 auto}
.shot{width:100%;height:auto;border-radius:20px;border:1px solid var(--line);
  box-shadow:0 18px 50px rgba(0,0,0,.42)}
.watch-row{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.watch-shot{width:225px;height:auto;border-radius:22px;border:1px solid var(--line);
  box-shadow:0 18px 50px rgba(0,0,0,.42)}
.moon{width:110px;height:110px;margin:0 auto 24px;border-radius:50%;
  background:radial-gradient(circle at 38% 34%, #fdf4dd 0%, #f0d9a4 42%, #caa25e 78%, #8a6a3a 100%);
  box-shadow:0 0 60px rgba(233,191,116,.45), 0 0 140px rgba(233,191,116,.22)}
.tagline{font-weight:700;font-size:clamp(24px,4.6vw,36px);margin:12px 0 6px;letter-spacing:.3px}
.subtag{color:var(--ink-dim);max-width:560px;margin:0 auto;font-size:17px}
.cta{display:inline-flex;align-items:center;gap:10px;margin-top:28px;background:var(--gold);color:#241a05;
  font-weight:700;padding:14px 26px;border-radius:999px;text-decoration:none;font-size:16px;
  box-shadow:0 10px 30px rgba(233,191,116,.28)}
.cta.soon{background:rgba(233,191,116,.10);color:var(--gold);border:1px solid rgba(233,191,116,.42);box-shadow:none;cursor:default}

/* Features */
.section{padding:46px 0}
.section h2{font-weight:700;font-size:26px;text-align:center;margin-bottom:8px}
.section .lead{text-align:center;color:var(--ink-dim);max-width:560px;margin:0 auto 34px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px}
.card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:24px}
.card .ic{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  font-size:22px;margin-bottom:14px;background:rgba(255,255,255,.06)}
.card h3{font-weight:600;font-size:18px;margin-bottom:6px}
.card p{color:var(--ink-dim);font-size:15px}

/* Content pages (privacy / terms) */
.page{padding:54px 0 30px;max-width:760px;margin:0 auto}
.page h1{font-weight:700;font-size:32px;margin-bottom:6px}
.page .updated{color:var(--ink-faint);font-size:14px;margin-bottom:8px}
.page .note{background:var(--card);border:1px solid var(--line);border-radius:12px;padding:10px 14px;
  font-size:14px;color:var(--ink-dim);margin:14px 0 26px}
.page h2{font-weight:600;font-size:20px;margin:30px 0 8px;color:var(--ink)}
.page h3{font-weight:600;font-size:16px;margin:18px 0 4px}
.page p,.page li{color:var(--ink-dim);font-size:15.5px;margin-bottom:10px}
.page ul{padding-left:22px;margin-bottom:10px}
.page a{color:var(--teal);text-decoration:none}
.page a:hover{text-decoration:underline}
.email-pill{display:inline-flex;align-items:center;gap:9px;background:var(--card);border:1px solid var(--line);
  border-radius:999px;padding:11px 20px;text-decoration:none;color:var(--ink);font-weight:600;margin-top:6px}

/* Footer */
footer{border-top:1px solid var(--line);margin-top:40px;padding:30px 0 50px;text-align:center}
.foot-links{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;margin-bottom:12px}
.foot-links a{color:var(--ink-dim);text-decoration:none;font-size:14px}
.foot-links a:hover{color:var(--ink)}
.copy{color:var(--ink-faint);font-size:13px}

@media(max-width:760px){
  .hero-split{grid-template-columns:1fr;text-align:center;padding:44px 0 20px}
  .hero-copy{text-align:center}
  .hero-copy .moon{margin:0 auto 20px}
  .hero-copy .subtag{margin:0 auto}
  .hero-shot img{max-width:270px;margin-top:26px}
  .shots-row{grid-template-columns:1fr;max-width:320px}
}
@media(max-width:560px){
  .hero{padding:54px 0 30px}
  .nav-right{gap:12px}
}
