/* Wind Down — product mini-site */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

:root {
    --wd-ink: #0c0e14;
    --wd-ink-soft: #141820;
    --wd-ink-card: #1a1f2e;
    --wd-border: #1c2030;
    --wd-text: #a09880;
    --wd-text-bright: #f0ede8;
    --wd-gold: #ebd065;
    --wd-muted: #5a5448;
    --wd-font: 'DM Mono', monospace;
    --wd-radius: 16px;
    --wd-max: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--wd-font);
    font-size: 13px;
    line-height: 22px;
    color: var(--wd-text);
    background: var(--wd-ink);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    text-decoration: underline;
}

/* ── Nav ── */
.wd-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 14, 20, 0.92);
    border-bottom: 1px solid var(--wd-border);
    backdrop-filter: blur(10px);
}

.wd-nav-inner {
    max-width: var(--wd-max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.wd-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wd-text-bright);
    font-weight: 500;
    font-size: 13px;
}

.wd-nav-brand:hover {
    text-decoration: none;
    color: var(--wd-gold);
}

.wd-nav-plaque {
    height: 22px;
    width: auto;
    border-radius: 4px;
}

.wd-hero-plaque {
    max-width: min(100%, 360px);
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.wd-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 11px;
    color: var(--wd-muted);
}

.wd-nav-links a.active {
    color: var(--wd-gold);
}

/* ── Layout ── */
.wd-main {
    max-width: var(--wd-max);
    margin: 0 auto;
    padding: 0 24px 64px;
}

.wd-section {
    padding: 48px 0 0;
}

.wd-section-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wd-gold);
    margin-bottom: 12px;
}

.wd-section h2 {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: var(--wd-text-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.wd-section p {
    white-space: pre-line;
}

/* ── Hero ── */
.wd-hero {
    padding: 48px 0 32px;
    text-align: center;
}

.wd-hero h1 {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--wd-text-bright);
    margin-bottom: 8px;
}

.wd-hero .tagline {
    font-size: 12px;
    line-height: 16px;
    color: var(--wd-muted);
    margin-bottom: 24px;
}

.wd-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--wd-gold);
    color: var(--wd-ink);
    font-family: var(--wd-font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.wd-cta:hover {
    opacity: 0.9;
    text-decoration: none;
    color: var(--wd-ink);
}

.wd-cta.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.wd-hero-shot {
    margin-top: 32px;
    border-radius: var(--wd-radius);
    border: 1px solid var(--wd-border);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

/* ── Ritual steps ── */
.wd-steps {
    display: grid;
    gap: 12px;
}

.wd-step {
    padding: 16px 20px;
    background: var(--wd-ink-card);
    border: 1px solid var(--wd-border);
    border-left: 3px solid var(--wd-gold);
    border-radius: var(--wd-radius);
}

.wd-step h3 {
    font-size: 12px;
    font-weight: 500;
    color: var(--wd-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.wd-step p {
    font-size: 12px;
    line-height: 18px;
    color: var(--wd-text);
}

/* ── Pro box ── */
.wd-pro {
    padding: 20px 24px;
    background: var(--wd-ink-soft);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
}

/* ── Legal page ── */
.wd-page-legal {
    padding: 40px 0 64px;
    max-width: 600px;
    margin: 0 auto;
}

.wd-page-legal h1 {
    font-weight: 500;
    font-size: 15px;
    color: var(--wd-text-bright);
    text-align: center;
    margin-bottom: 8px;
}

.wd-page-legal .updated {
    font-size: 12px;
    color: var(--wd-muted);
    text-align: center;
    margin-bottom: 24px;
}

.wd-page-legal h2 {
    font-weight: 500;
    font-size: 13px;
    color: var(--wd-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0 8px;
}

.wd-page-legal p {
    white-space: pre-line;
}

.wd-page-legal ul {
    margin: 8px 0 0 18px;
}

.wd-page-legal li {
    margin-bottom: 6px;
}

/* ── Footer ── */
.wd-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--wd-border);
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: var(--wd-muted);
}

.wd-footer a {
    color: var(--wd-gold);
}

@media (max-width: 480px) {
    .wd-nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
