/* Zozo's Wheel — marketing site stylesheet.
   Designed to evoke the in-app palette: soft Fairy Meadow pinks on a warm
   off-white, lavender accents. Designer replaces these placeholder colors
   alongside hand-illustrated section assets before launch.
*/

:root {
    --bg: #fbf6fa;
    --bg-dark: #2c1b30;
    --ink: #2a1a2e;
    --ink-mute: #6e5872;
    --accent: #8b4a8f;
    --accent-soft: #f3d6e9;
    --rule: #ead5e3;
    --max: 780px;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.hero {
    background: linear-gradient(160deg, #fff0f8 0%, #f0d8eb 100%);
    padding: 24px 24px 80px;
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
}

.nav .brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
    text-decoration: none;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

.nav a {
    color: var(--ink-mute);
    text-decoration: none;
    font-size: 14px;
}

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

.hero-content {
    max-width: var(--max);
    margin: 0 auto;
}

h1 {
    font-size: clamp(40px, 8vw, 64px);
    line-height: 1.05;
    margin: 0 0 16px;
    color: var(--ink);
}

.lead {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--ink-mute);
    max-width: 540px;
    margin: 0 0 32px;
}

.cta {
    display: inline-block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    transition: transform 0.15s;
}

.cta:hover {
    transform: translateY(-1px);
}

.microcopy {
    font-size: 13px;
    color: var(--ink-mute);
}

.section {
    padding: 64px 24px;
    max-width: var(--max);
    margin: 0 auto;
}

.section h2 {
    font-size: clamp(24px, 4vw, 34px);
    margin: 0 0 16px;
}

.section.dark {
    background: var(--bg-dark);
    color: #f7ecf5;
    max-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

.section.dark h2 {
    color: #fff;
}

.section.dark .microcopy {
    color: #c4a8ca;
}

.no-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px 24px;
}

.no-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--rule);
    color: var(--ink-mute);
    font-size: 14px;
}

.no-list li::before {
    content: "✕";
    color: var(--accent);
    margin-right: 8px;
    font-weight: 700;
}

.price {
    background: linear-gradient(160deg, var(--accent-soft) 0%, #fff0f8 100%);
    max-width: none;
    padding: 80px 24px;
}

.price h2 {
    text-align: center;
    max-width: var(--max);
    margin: 0 auto 32px;
}

.price-card {
    max-width: 460px;
    margin: 0 auto 24px;
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 10px 40px rgba(139, 74, 143, 0.15);
}

.price-tag {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    line-height: 1;
}

.price-lede {
    text-align: center;
    color: var(--ink-mute);
    margin-bottom: 28px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    padding: 10px 0;
    border-top: 1px solid var(--rule);
}

.price-list li:first-child {
    border-top: none;
}

.price-list li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: 700;
}

.price .microcopy {
    text-align: center;
}

.footer {
    text-align: center;
    padding: 48px 24px;
    color: var(--ink-mute);
    font-size: 14px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer a {
    color: var(--ink-mute);
    text-decoration: none;
}

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

@media (prefers-reduced-motion: reduce) {
    .cta {
        transition: none;
    }
    .cta:hover {
        transform: none;
    }
}
