:root {
    --purple-deep: #4A2E8C;
    --purple-deeper: #362368;
    --purple-bright: #8B6FE8;
    --purple-tint-90: #EDE7F9;
    --purple-tint-80: #DCD0F5;

    --gray-95: #F2F2F2;
    --gray-90: #E0E0E0;
    --gray-80: #B8B8B8;
    --gray-70: #9A9A9A;
    --gray-60: #7A7A7A;
    --gray-50: #5C5C5C;
    --gray-40: #454548;
    --gray-30: #3A3A3C;
    --gray-20: #2C2C2E;
    --gray-10: #1C1C1E;
    --gray-05: #121212;

    --target-red: #D6362B;
    --target-red-dark: #8E1F17;

    --stagecut-magenta: #C6379B;
    --stagecut-blue: #35B8E0;

    --chordseek-amber: #E0932A;
}

body {
    background: var(--gray-95);
    color: var(--gray-10);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ===================== NAVBAR ===================== */
.navbar.bg-dark {
    background: var(--gray-05) !important;
    border-bottom: 1px solid var(--gray-20);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 30px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--gray-90) !important;
    font-weight: 500;
    transition: color 0.15s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--purple-bright) !important;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    background: radial-gradient(circle at 20% 20%, var(--purple-deep) 0%, var(--gray-05) 65%);
    color: white;
    padding: 100px 20px 90px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
    pointer-events: none;
}

.hero::before {
    width: 14px;
    height: 14px;
    background: var(--purple-bright);
    top: 18%;
    left: 12%;
    box-shadow: 0 0 18px 4px var(--purple-bright);
}

.hero::after {
    width: 8px;
    height: 8px;
    background: var(--purple-tint-80);
    bottom: 22%;
    right: 16%;
    box-shadow: 0 0 14px 3px var(--purple-tint-80);
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
}

.hero-logo-video {
    width: 320px;
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero .lead {
    color: var(--gray-90);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}

.hero-cta {
    margin-top: 32px;
}

/* ===================== BUTTONS ===================== */
.btn-brand {
    background: var(--purple-deep);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 999px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.btn-brand:hover {
    background: var(--purple-bright);
    color: white;
    transform: translateY(-1px);
}

.btn-outline-brand {
    background: transparent;
    border: 1px solid var(--gray-60);
    color: var(--gray-10);
    font-weight: 600;
    padding: 9px 27px;
    border-radius: 999px;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-outline-brand:hover {
    border-color: var(--purple-deep);
    color: var(--purple-deep);
}

.btn-disabled-pill {
    display: inline-block;
    background: var(--gray-90);
    color: var(--gray-60);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 999px;
    cursor: default;
}

/* ===================== SECTIONS ===================== */
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--purple-deep);
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* ===================== APP CARDS ===================== */
.card {
    border: none;
    border-radius: 20px;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(74, 46, 140, 0.18) !important;
}

.app-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.app-card-title {
    font-weight: 700;
    margin: 0;
}

.app-card-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.badge-live {
    background: var(--purple-tint-90);
    color: var(--purple-deep);
}

.badge-soon {
    background: var(--gray-90);
    color: var(--gray-50);
}

.app-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.app-card-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: var(--gray-40);
    font-size: 0.95rem;
}

.app-card-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-bright);
}

.app-card--target .app-card-features li::before {
    background: var(--target-red);
}

.app-card--stagecut .app-card-features li::before {
    background: var(--stagecut-magenta);
}

.app-card--chordseek .app-card-features li::before {
    background: var(--chordseek-amber);
}

.app-card-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-60);
    margin-top: 2px;
}

.app-card-banner {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* ===================== ABOUT / VALUES ===================== */
.about-section {
    background: var(--gray-05);
    color: var(--gray-90);
    padding: 80px 0;
}

.about-section .section-eyebrow {
    color: var(--purple-bright);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
    font-size: 1.4rem;
}

.value-card h4 {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
}

.value-card p {
    color: var(--gray-70);
    font-size: 0.95rem;
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--gray-05);
    color: var(--gray-70);
    border-top: 1px solid var(--gray-20);
}

footer a {
    color: var(--gray-80);
    text-decoration: none;
}

footer a:hover {
    color: var(--purple-bright);
}

footer .footer-wordmark {
    height: 20px;
    width: auto;
    opacity: 0.85;
    margin-bottom: 10px;
}

/* ===================== LEGAL PAGES ===================== */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 20px 96px;
}

.legal-page h1 {
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-page .updated {
    color: var(--gray-60);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
    color: var(--gray-40);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    .app-card-header {
        flex-wrap: wrap;
    }
}
