:root {
    --bg: #0b0b0f;
    --surface: rgba(18, 18, 24, 0.85);
    --card: #141419;
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #f5f5f7;
    --muted: rgba(245, 245, 247, 0.7);
    --accent: linear-gradient(135deg, #52ffd5, #7b61ff);
    --accent-solid: #7b61ff;
    --accent-soft: rgba(123, 97, 255, 0.16);
    --max-width: 1100px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 12px 32px rgba(5, 8, 15, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: var(--text);
    background:
        radial-gradient(
            circle at top left,
            rgba(123, 97, 255, 0.18),
            transparent 45%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(82, 255, 213, 0.15),
            transparent 40%
        ),
        var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 2.5rem, var(--max-width));
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(11, 11, 15, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.nav-links a:hover,
.nav-cta:hover {
    color: #ffffff;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 19;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.mobile-nav-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: min(340px, 90%);
    background: #0b0b0f;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -12px 0 35px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition:
        transform 0.25s ease,
        visibility 0.25s ease;
    z-index: 20;
    display: flex;
    flex-direction: column;
    padding: calc(1.25rem + env(safe-area-inset-top, 0px)) 1.5rem
        calc(2rem + env(safe-area-inset-bottom, 0px));
    gap: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-close {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
}

.mobile-nav-links,
.mobile-nav-actions {
    display: grid;
    gap: 0.9rem;
    font-size: 1rem;
}

.mobile-nav-actions {
    margin-top: auto;
}

.mobile-nav .nav-cta {
    text-align: center;
}

.no-scroll {
    overflow: hidden;
}

.nav-actions .btn.secondary {
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
}

.nav-cta {
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    background: rgba(123, 97, 255, 0.18);
}

/* Seasonal Banner */
.seasonal-banner {
    background: linear-gradient(90deg, rgba(123, 97, 255, 0.2), rgba(82, 255, 213, 0.15));
    border-bottom: 1px solid rgba(123, 97, 255, 0.3);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text);
}

.seasonal-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.1rem;
}

/* New Suno-Inspired Hero */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero-centered h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.hero-centered .hero-actions {
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-visual-showcase {
    margin-top: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--muted);
}

.hero-feature .feature-icon {
    font-size: 1.1rem;
}

/* Legacy hero grid support */
.hero-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 3.9rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(245, 245, 247, 0.55);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn.primary {
    background: var(--accent);
    color: #05080f;
    box-shadow: 0 12px 24px rgba(123, 97, 255, 0.35);
}

.btn.primary:hover {
    transform: translateY(-2px);
}

.btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn.tertiary {
    color: var(--accent-solid);
    background: rgba(123, 97, 255, 0.1);
    border: 1px solid rgba(123, 97, 255, 0.4);
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-trust .stat {
    font-weight: 600;
    color: #ffffff;
}

/* New Stats Bar */
.stats-bar {
    padding: 2rem 0;
    border-bottom: 1px solid var(--card-border);
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--card-border);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: rgba(20, 20, 26, 0.6);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card blockquote {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #05080f;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-info strong {
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Song Lists Section */
.song-lists {
    padding: 5rem 0;
}

.song-lists h2 {
    text-align: center;
}

.song-lists .eyebrow {
    text-align: center;
}

.song-lists .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.song-lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.song-list-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.song-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.song-list-cover {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.song-list-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.song-list-content {
    padding: 1.5rem;
}

.song-list-content h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.song-list-meta {
    color: var(--accent-solid);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.song-list-description {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.song-lists-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Legacy Trust Strip (keep for compatibility) */
.trust-strip {
    padding: 3rem 0 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.trust-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-card);
}

.trust-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(245, 245, 247, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.trust-value {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.trust-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-visual .hero-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
}

.hero-card-title {
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    color: #ffffff;
}

.hero-card .icon {
    margin-right: 0.75rem;
}

.social-proof {
    padding: 4.5rem 0 4rem;
}

.social-proof h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: var(--muted);
}

.logo {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(20, 20, 25, 0.6);
}

.testimonial {
    max-width: 650px;
    margin: 2.5rem auto 0;
    text-align: center;
    color: var(--muted);
    font-style: italic;
}

.testimonial-meta {
    font-style: normal;
    margin-top: 1rem;
    color: rgba(245, 245, 247, 0.65);
}

.section-intro {
    max-width: 720px;
    color: var(--muted);
    margin-bottom: 3rem;
}

.feature-reassurance {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(123, 97, 255, 0.12);
    border: 1px solid rgba(123, 97, 255, 0.35);
    border-radius: var(--radius-sm);
    color: #d7d0ff;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.reassurance-icon {
    font-size: 1.1rem;
}

/* New Simplified Feature Grid */
.feature-grid-simple {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 3rem;
}

.feature-block {
    text-align: center;
    padding: 2rem;
}

.feature-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #05080f;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.feature-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.feature-block p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

.features h2 {
    text-align: center;
}

.features .eyebrow {
    text-align: center;
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Legacy feature grid */
.feature-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-note,
.step-note {
    color: rgba(245, 245, 247, 0.5);
    font-size: 0.85rem;
    margin-top: 1.2rem;
}

.feature-highlight {
    padding: 5rem 0;
    background: rgba(20, 20, 26, 0.85);
}

.highlight-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.highlight-visual {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    color: var(--muted);
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 4rem 0 0;
    display: grid;
    gap: 2.5rem;
}

.timeline li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    font-weight: 600;
    color: #ffffff;
}

.step-content h3 {
    margin: 0 0 0.75rem;
}

.security {
    background: rgba(12, 12, 18, 0.85);
}

.security-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.security-grid article {
    background: rgba(20, 20, 26, 0.85);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
}

.pricing {
    background: rgba(14, 14, 19, 0.9);
}

.pricing-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan {
    background: rgba(20, 20, 26, 0.9);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1rem;
    color: var(--muted);
}

.plan-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.plan.featured {
    border: 1px solid rgba(123, 97, 255, 0.5);
    position: relative;
    background: linear-gradient(
        160deg,
        rgba(123, 97, 255, 0.25),
        rgba(20, 20, 26, 0.95)
    );
}

.badge {
    background: rgba(82, 255, 213, 0.2);
    color: #52ffd5;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.tag {
    background: rgba(123, 97, 255, 0.22);
    color: #b8a6ff;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-left: 0.35rem;
}

.pricing-note {
    margin-top: 2.5rem;
    color: var(--muted);
    text-align: center;
}

/* Built for Groups Section */
.built-for-groups {
    background: rgba(12, 12, 18, 0.85);
}

.groups-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.group-card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
}

.group-card .icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.group-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.group-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* How it Works CTA */
.how-it-works-cta {
    margin-top: 3rem;
    text-align: center;
}

/* USPs Section */
.usps {
    padding: 4rem 0;
    background: rgba(12, 12, 18, 0.6);
    text-align: center;
}

.usps h2 {
    margin-bottom: 2.5rem;
}

.usps .eyebrow {
    text-align: center;
}

.usps-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.usp-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.usp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.usp-card h3 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.usp-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.usps-cta {
    margin-top: 2.5rem;
    text-align: center;
}

@media (min-width: 720px) {
    .usps-cta {
        margin-top: 3rem;
    }

    .usps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .usp-card {
        padding: 2.5rem 2rem;
    }

    .usp-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .usp-card h3 {
        font-size: 1.25rem;
    }
}

/* Use Cases Section */
.use-cases {
    padding: 4rem 0;
    text-align: center;
    background: rgba(20, 20, 26, 0.6);
}

.use-cases h2 {
    margin-bottom: 2rem;
}

.use-cases-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.use-case-tag {
    padding: 0.6rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text);
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.use-case-tag:hover {
    border-color: rgba(123, 97, 255, 0.5);
    background: var(--accent-soft);
}

/* Use Case Cards */
.use-cases-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.use-case-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.use-case-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.use-case-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    background: rgba(123, 97, 255, 0.12);
    padding: 5rem 0;
}

.cta-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-centered h2 {
    margin-bottom: 0.75rem;
}

.cta-centered > p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.cta-centered .cta-actions {
    justify-content: center;
}

/* Legacy CTA container */
.cta-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 10, 0.85);
}

.footer-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: center;
}

.footer-copy {
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--muted);
}

.footer-meta {
    color: rgba(245, 245, 247, 0.45);
    font-size: 0.85rem;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

.pricing-hero .subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 2rem 0 5rem;
}

.pricing-plans .pricing-grid {
    max-width: 800px;
    margin: 0 auto;
}

.plan .price {
    margin: 1rem 0 0.25rem;
}

.plan .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}

.plan .price-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan .plan-cta {
    width: 100%;
    margin-bottom: 1.5rem;
}

.plan ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.plan .check {
    color: #52ffd5;
    font-weight: 600;
    flex-shrink: 0;
}

.pricing-plans .pricing-note {
    margin-top: 3rem;
}

.pricing-plans .pricing-note a {
    color: var(--accent-solid);
    text-decoration: underline;
}

/* Pricing Anchors and Notes */
.price-anchor {
    font-size: 0.85rem;
    color: #52ffd5;
    margin: 0.25rem 0 1rem;
    font-weight: 500;
}

.plan-upgrade-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.plan-value-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.9rem;
    color: var(--text);
    text-align: center;
    font-weight: 500;
}

.badge-muted {
    background: rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

/* FAQ Section */
.pricing-faq {
    padding: 5rem 0;
    background: rgba(20, 20, 26, 0.85);
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid var(--card-border);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* How It Works Page Styles */
.how-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.how-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

.how-hero .subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.how-steps {
    padding: 2rem 0 5rem;
}

.step-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.step-detailed:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #05080f;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-detail-content h2 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
}

.step-detail-content > p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.step-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
}

.step-features li::before {
    content: "✓";
    color: #52ffd5;
    font-weight: 600;
    flex-shrink: 0;
}

/* Roles Section */
.how-roles {
    padding: 5rem 0;
    background: rgba(20, 20, 26, 0.85);
}

.how-roles h2 {
    text-align: center;
}

.how-roles .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.roles-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 800px;
    margin: 0 auto;
}

.role-card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.role-card .icon-wrap {
    margin: 0 auto 1rem;
}

.role-card h3 {
    margin-bottom: 0.75rem;
}

.role-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Active nav link */
.nav-links a.active {
    color: #ffffff;
}

.step-icon {
    justify-self: start;
}

.step-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
}

.pricing-hero,
.how-hero {
    padding: 5rem 0 3rem;
}

@media (min-width: 720px) {
    .nav-links {
        display: flex;
    }

    .nav-actions {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-nav,
    .mobile-nav-backdrop {
        display: none;
    }

    .nav-container {
        padding: 1.25rem 0;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 6rem 0 5rem;
    }

    .timeline li {
        grid-template-columns: auto 1fr;
    }

    .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-detailed {
        grid-template-columns: auto 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .pricing-hero,
    .how-hero {
        padding: 7rem 0 4rem;
    }

    /* New responsive styles */
    .stats-row {
        gap: 3rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .song-lists-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-grid-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Preset Songs Page Styles */
.preset-songs-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.preset-songs-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

.preset-songs-hero .subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.preset-songs-section {
    padding: 2rem 0 5rem;
}

.preset-songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.preset-song-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.preset-song-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.preset-song-cover {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preset-song-icon {
    font-size: 3.5rem;
    opacity: 0.85;
}

.preset-song-content {
    padding: 1.5rem;
}

.preset-song-content h3 {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
}

.preset-song-meta {
    color: var(--accent-solid);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.preset-song-description {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 720px) {
    .preset-songs-hero {
        padding: 7rem 0 4rem;
    }

    .preset-songs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 719px) {
    .stat-divider {
        display: none;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .hero-feature {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .use-cases-row {
        gap: 0.75rem;
    }

    .use-case-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.legal-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

.legal-hero .subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted);
}

.legal-content {
    padding: 2rem 0 5rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}

.legal-intro p {
    margin: 0 0 1rem;
    color: var(--text);
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.legal-section h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text);
}

.legal-section p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-solid);
    font-weight: bold;
}

.legal-section ul.list-negative li::before {
    content: "✕";
    color: #ff6b6b;
}

.legal-section a {
    color: var(--accent-solid);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover {
    color: #52ffd5;
}

/* Legal Tables */
.legal-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.legal-table th {
    background: rgba(123, 97, 255, 0.1);
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.legal-table td {
    color: var(--muted);
    background: var(--card);
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table a {
    color: var(--accent-solid);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.legal-table a:hover {
    color: #52ffd5;
}

/* Legal Callout Box */
.legal-callout {
    background: rgba(123, 97, 255, 0.08);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.legal-callout h4 {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-size: 1rem;
}

.legal-callout p {
    margin-bottom: 0.75rem;
}

.legal-callout ul {
    margin-bottom: 0;
}

/* Legal Disclaimer Box */
.legal-disclaimer {
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.25);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1rem 0;
}

.legal-disclaimer p {
    color: var(--text);
    font-weight: 500;
}

.legal-disclaimer ul li {
    color: var(--muted);
}

/* Legal Footer Note */
.legal-footer-note {
    text-align: center;
    color: var(--muted);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

@media (min-width: 720px) {
    .legal-hero {
        padding: 7rem 0 4rem;
    }

    .legal-table {
        font-size: 0.95rem;
    }
}

@media (max-width: 719px) {
    .legal-table th,
    .legal-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-intro {
        padding: 1.25rem 1.5rem;
    }

    .legal-callout,
    .legal-disclaimer {
        padding: 1.25rem;
    }
}
