@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Nunito:wght@400;600;700;800;900&display=swap');

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

:root {
    --red:   #C83B36;
    --gold:  #E3A22D;
    --sage:  #9FAE78;
    --navy:  #28467F;
    --blue:  #B6DFE0;
    --dark:  #1a1a2e;
    --muted: #4a5a7a;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--blue);
    color: var(--dark);
    line-height: 1.6;
}

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

a:hover { text-decoration: underline; }

/* ── WORDMARK ── */
.wm-be      { color: var(--red); }
.wm-musical { color: var(--navy); }

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1;
}

nav .wm-musical { color: #fff !important; }

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
    text-decoration: none;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(11px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-11px); }

/* ── HERO ── */
.hero {
    position: relative;
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    overflow: hidden;
    background: var(--blue);
}

.hero-starburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: repeating-conic-gradient(rgba(40,70,127,0.06) 0deg 10deg, transparent 10deg 20deg);
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco {
    position: absolute;
    pointer-events: none;
}
.deco-tl { top: 20px; left: 20px; }
.deco-br { bottom: 20px; right: 20px; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.hero-wordmark {
    font-family: 'Righteous', cursive;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hero-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.65;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 2.25rem;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-instruments {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.inst-tag {
    background: rgba(40,70,127,0.09);
    border: 1.5px solid rgba(40,70,127,0.2);
    color: var(--navy);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    opacity: 0.7;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: 'Righteous', cursive;
    font-size: 1rem;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 20px rgba(200,59,54,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200,59,54,0.4);
    text-decoration: none;
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: 'Righteous', cursive;
    font-size: 1rem;
    letter-spacing: 0.4px;
    border: 2.5px solid var(--navy);
    opacity: 0.6;
    transition: opacity 0.2s;
}
.btn-outline:hover {
    opacity: 1;
    text-decoration: none;
    color: var(--navy);
}

/* ── ATOM DIVIDER ── */
.atom-divider {
    position: relative;
    height: 48px;
    background: var(--blue);
    display: flex;
    align-items: center;
}
.atom-divider::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 4px;
    background: var(--navy);
    transform: translateY(-50%);
}
.atom-divider::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blue);
    border: 4px solid var(--navy);
    box-shadow: 0 0 0 6px rgba(40,70,127,0.12), 0 0 0 11px rgba(40,70,127,0.05);
    z-index: 1;
}

/* ── FEATURES ── */
.features-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2,
.how-it-works h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.section-eyebrow {
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 0.6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 3px 16px rgba(40,70,127,0.10);
    border: 1.5px solid rgba(40,70,127,0.08);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
}

/* ── DETAIL SECTION (alt bg) ── */
.detail-section.alt-bg {
    background: rgba(40,70,127,0.06);
    padding: 5rem 2rem;
}

.detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.detail-text > p {
    color: var(--muted);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(40,70,127,0.10);
    color: var(--navy);
    border: 1.5px solid rgba(40,70,127,0.2);
    border-radius: 20px;
    padding: 4px 13px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* Prompt examples */
.prompt-examples {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prompt-example {
    background: var(--navy);
    border-radius: 14px;
    padding: 14px 18px;
    position: relative;
    overflow: hidden;
}

.pe-instrument {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(182,223,224,0.65);
    margin-bottom: 5px;
}

.pe-text {
    font-family: 'Righteous', cursive;
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.4;
}

.detail-deco {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── PRIVACY CALLOUT ── */
.privacy-callout {
    background: var(--navy);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-starburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: repeating-conic-gradient(rgba(255,255,255,0.025) 0deg 10deg, transparent 10deg 20deg);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.privacy-icon {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.privacy-callout h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.privacy-callout > .privacy-inner > p {
    color: rgba(182,223,224,0.7);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.privacy-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
}

.privacy-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.pp-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
    color: var(--white);
}

/* ── HOW IT WORKS ── */
.how-it-works {
    padding: 5rem 2rem;
    background: var(--blue);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 260px;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(200,59,54,0.3);
}

.step h3 {
    font-family: 'Righteous', cursive;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.55;
}

/* ── DOWNLOAD ── */
.download-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(40,70,127,0.06);
}

.download-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.download-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    max-width: 380px;
    margin: 2.5rem auto 0;
    box-shadow: 0 8px 32px rgba(40,70,127,0.12);
    border: 1.5px solid rgba(40,70,127,0.1);
}

.download-wordmark {
    font-family: 'Righteous', cursive;
    font-size: 2.4rem;
    margin-bottom: 0.25rem;
}

.download-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.5;
    margin-bottom: 1.75rem;
}

.coming-soon-badge {
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: 'Righteous', cursive;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.notify-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.75rem;
}


/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 2.5rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-wordmark {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: none;
}

.copyright {
    color: rgba(255,255,255,0.25);
    font-size: 0.78rem;
    font-weight: 600;
}

.copyright a {
    color: rgba(255,255,255,0.4);
}

.copyright a:hover {
    color: var(--white);
    text-decoration: none;
}

/* ── LEGAL PAGES ── */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem 5rem;
}

.legal-content h1 {
    font-family: 'Righteous', cursive;
    font-size: 2.6rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(40,70,127,0.12);
}

.legal-content p {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: var(--red);
    font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-inner {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .detail-deco { display: none; }

    .feature-tags { justify-content: center; }

    .prompt-examples { text-align: left; }
}

@media (max-width: 1024px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0; right: 0;
        background: var(--dark);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links a:last-child { border-bottom: none; }

    .nav-container { flex-wrap: wrap; position: relative; }
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }

    .steps { flex-direction: column; align-items: center; }

    .hero-instruments { gap: 0.4rem; }

    .privacy-points { flex-direction: column; align-items: flex-start; max-width: 260px; margin: 0 auto; }

    .download-card { padding: 2rem 1.75rem; }
}
