/* Generated by easy_setup — restyle freely, this file is yours.
   Every color/shape knob lives here so a redesign rarely touches HTML. */
:root {
  --bg: #f2faff;
  --panel: #ffffff;
  --ink: #12303f;
  --ink-dim: #5b7684;
  --line: #d8ecf7;
  --accent: #1ba0e1;
  --radius: 16px;
  --maxw: 720px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1b22;
    --panel: #15272f;
    --ink: #eaf6fc;
    --ink-dim: #93b1bf;
    --line: #233b46;
    --accent: #4fc3f7;
  }
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui,
    sans-serif;
  line-height: 1.7;
  padding: 40px 20px 72px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; }

.site-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.site-header img { width: 44px; height: 44px; border-radius: 10px; }
.site-header .name { font-weight: 600; }
.site-header nav { margin-left: auto; display: flex; gap: 16px; }

a { color: var(--accent); }
nav a { color: var(--ink-dim); text-decoration: none; font-size: 14px; }
nav a:hover { color: var(--ink); }

.hero { text-align: center; padding: 24px 0 40px; }
.hero .app-icon {
  width: 96px; height: 96px; border-radius: 22px; margin-bottom: 20px;
}
.hero h1 { font-size: 32px; line-height: 1.35; letter-spacing: -0.02em; }
.hero .tagline { color: var(--ink-dim); margin-top: 12px; }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.feature { display: flex; gap: 12px; padding: 10px 0; }
.feature .dot { color: var(--accent); }

.store-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

h1 { font-size: 26px; letter-spacing: -0.02em; }
h2 { font-size: 18px; margin: 28px 0 8px; }
.dim { color: var(--ink-dim); }
ul { padding-left: 20px; }
li { margin: 4px 0; }

.footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 14px;
  text-align: center;
}
