:root {
    --bg: #1b1b1d;
    --panel: #232326;
    --text: #ececec;
    --muted: #9a9a9e;
    --line: #34343a;
    --accent: #e05140;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

header { margin-bottom: 48px; }

h1 {
    margin: 0 0 8px;
    font-size: 34px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.tagline {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.hero {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.hero img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid var(--line);
    display: block;
    background: #2a2a2a;
    padding: 4px;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
}

.steps li {
    position: relative;
    padding: 0 0 20px 44px;
    counter-increment: step;
}

.steps li:last-child { padding-bottom: 0; }

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    display: grid;
    place-items: center;
}

.steps strong { display: block; }
.steps span { color: var(--muted); font-size: 15px; }

footer {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

a { color: var(--text); }
a:hover { color: var(--accent); }

/* Privacy page */
.doc h1 { margin-bottom: 4px; }
.doc .meta { color: var(--muted); font-size: 14px; margin: 0 0 40px; }
.doc h2 { font-size: 19px; margin: 36px 0 8px; }
.doc p, .doc li { color: #d4d4d6; }
.back { display: inline-block; margin-bottom: 32px; font-size: 14px; color: var(--muted); text-decoration: none; }
.back:hover { color: var(--accent); }

/* Email obfuscation: hidden odd spans are not selectable/copyable, so humans
   copy the real address while scrapers reading the raw text get garbage. */
.email span:nth-child(odd) { display: none; }

@media (max-width: 640px) {
    .wrap { padding: 40px 20px 56px; }
    .hero { grid-template-columns: 1fr; gap: 32px; }
    .hero img { max-width: 260px; margin: 0 auto; }
    h1 { font-size: 28px; }
}
