@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #ffffff;
    --bg-soft: #f7f6f2;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-strong: #ffffff;
    --surface-alt: #fbf8f2;
    --line: rgba(8, 46, 56, 0.12);
    --line-strong: rgba(8, 46, 56, 0.18);
    --text: #16343b;
    --text-strong: #0a262d;
    --muted: #68797d;
    --brand: #0f4952;
    --brand-strong: #0a343b;
    --brand-soft: #dbe9e8;
    --accent: #cf9f2f;
    --accent-soft: #f4e7bc;
    --accent-glow: rgba(207, 159, 47, 0.22);
    --success: #29664b;
    --danger: #9d4f42;
    --shadow-sm: 0 10px 24px rgba(10, 38, 45, 0.05);
    --shadow-md: 0 18px 40px rgba(10, 38, 45, 0.08);
    --shadow-lg: 0 28px 70px rgba(10, 38, 45, 0.10);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(207, 159, 47, 0.05), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #fcfbf8 58%, #f7f5ef 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

[x-cloak] {
    display: none !important;
}

.site-shell,
.site-header-inner,
.footer-inner {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-shell {
    padding: 28px 0 72px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 40px rgba(10, 38, 45, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.site-header-inner {
    display: grid;
    grid-template-columns: auto auto minmax(200px, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 66px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(15, 73, 82, 0.16);
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-family: "Fraunces", serif;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-strong);
}

.brand-subtitle {
    margin-top: 3px;
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(15, 73, 82, 0.08);
    color: var(--brand);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(15, 73, 82, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-search:focus-within {
    border-color: rgba(15, 73, 82, 0.28);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(15, 73, 82, 0.08);
}

.nav-search-icon {
    width: 18px;
    height: 18px;
    color: var(--muted);
    flex-shrink: 0;
}

.nav-search-input {
    width: 100%;
    min-width: 0;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--text);
    outline: none;
}

.nav-search-input::placeholder {
    color: #8a9698;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.nav-social {
    display: flex;
    gap: 6px;
}

.nav-social-btn,
.nav-icon-btn,
.nav-lang-btn,
.nav-user-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 32px;
    min-width: 32px;
    padding: 0 10px;
    border: 1px solid rgba(15, 73, 82, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--brand);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-social-btn:hover,
.nav-icon-btn:hover,
.nav-lang-btn:hover,
.nav-user-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.nav-social-btn svg,
.nav-icon-btn svg,
.nav-lang-btn svg {
    width: 12px;
    height: 12px;
}

.nav-user-wrapper,
.nav-lang-wrapper {
    position: relative;
}

.nav-user-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand) 0%, #1f6b74 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.nav-user-name {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-dropdown,
.nav-lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    border: 1px solid rgba(15, 73, 82, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
}

.nav-user-greeting,
.nav-user-item,
.nav-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--muted);
}

.nav-user-item svg {
    width: 16px;
    height: 16px;
}

.nav-user-item:hover,
.nav-lang-option:hover {
    background: rgba(15, 73, 82, 0.08);
    color: var(--brand);
}

.nav-user-item--danger:hover {
    background: rgba(157, 79, 66, 0.08);
    color: var(--danger);
}

.nav-user-sep {
    height: 1px;
    margin: 6px 0;
    background: rgba(15, 73, 82, 0.09);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 0.9rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary,
.button-cta-nav,
.plan-cta.primary,
.auth-submit-btn {
    color: #fff;
    background: linear-gradient(145deg, #1d6771 0%, var(--brand) 100%);
    box-shadow:
        0 8px 24px rgba(15, 73, 82, 0.22),
        0 4px 0 rgba(7, 34, 40, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:hover,
.button-cta-nav:hover,
.plan-cta.primary:hover,
.auth-submit-btn:hover {
    box-shadow:
        0 12px 32px rgba(15, 73, 82, 0.28),
        0 4px 0 rgba(7, 34, 40, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:active,
.button-cta-nav:active {
    transform: translateY(3px);
    box-shadow:
        0 4px 12px rgba(15, 73, 82, 0.18),
        0 1px 0 rgba(7, 34, 40, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.button-secondary,
.button-ghost-nav,
.plan-cta {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(15, 73, 82, 0.14);
    color: var(--brand);
}

.button-secondary:hover,
.button-ghost-nav:hover,
.plan-cta:hover {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.home-page {
    gap: 22px;
}

.band {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.band-shell {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
    padding: 56px 0;
}

.band-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.band-instruments {
    background: #ffffff;
    padding: 0;
}

.band-promo {
    background: #061e24;
}

.promo-bg-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.28;
}

.promo-bg-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(4px) saturate(1.3);
    transform: scale(1.08);
}

.promo-bg-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(207, 159, 47, 0.16) 0%, transparent 36%),
        radial-gradient(ellipse at 10% 90%, rgba(35, 133, 146, 0.22) 0%, transparent 40%),
        linear-gradient(135deg, rgba(6, 30, 36, 0.90) 0%, rgba(10, 56, 65, 0.84) 50%, rgba(16, 72, 82, 0.80) 100%);
    z-index: 1;
    pointer-events: none;
}

.band-story {
    background: linear-gradient(135deg, #165d6b 0%, #2f788a 100%);
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */

.band-testimonials {
    background:
        radial-gradient(ellipse at 50% -10%, rgba(207, 159, 47, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, #04161a 0%, #061e24 60%, #04161a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.band-shell-testimonials {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 64px;
    padding-bottom: 72px;
}

.testimonials-head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.testimonials-head h2 {
    margin: 8px 0 10px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.22;
}

.testimonials-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    cursor: pointer;
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.testimonials-nav-btn--prev {
    left: -22px;
}

.testimonials-nav-btn--next {
    right: -22px;
}

.testimonials-nav-btn:hover {
    background: rgba(207, 159, 47, 0.88);
    border-color: rgba(207, 159, 47, 0.60);
    color: #0a262d;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(207, 159, 47, 0.30);
}

.testimonials-track-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.testimonials-track-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 18px;
    padding: 28px 5vw 44px;
    width: max-content;
}

.testimonial-card {
    flex: none;
    width: 190px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transform: perspective(900px) rotateY(0deg) rotateX(2deg) translateY(0);
    transition: transform 320ms cubic-bezier(0.34, 1.26, 0.64, 1), box-shadow 320ms ease;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 8px 16px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    background: #0a2a32;
}

.testimonial-card:nth-child(odd) {
    transform: perspective(900px) rotateY(-5deg) rotateX(2deg) translateY(0);
}

.testimonial-card:nth-child(even) {
    transform: perspective(900px) rotateY(5deg) rotateX(2deg) translateY(4px);
}

.testimonial-card:hover {
    transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.04);
    box-shadow:
        0 40px 70px rgba(0, 0, 0, 0.65),
        0 12px 24px rgba(0, 0, 0, 0.40),
        0 0 0 1px rgba(207, 159, 47, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    z-index: 10;
}

.testimonial-video-shell {
    position: relative;
    aspect-ratio: 9 / 16;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 22, 26, 0.38);
    transition: background 260ms ease, opacity 260ms ease;
}

.testimonial-overlay.is-playing {
    background: transparent;
    opacity: 0;
}

.testimonial-card:hover .testimonial-overlay:not(.is-playing) {
    background: rgba(4, 22, 26, 0.25);
}

.testimonial-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.testimonial-mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(4, 22, 26, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #ffffff;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}

.testimonial-mute-btn:hover {
    background: rgba(207, 159, 47, 0.85);
    color: #0a262d;
    transform: scale(1.1);
}

.testimonial-mute-btn svg {
    display: block;
    flex-shrink: 0;
}

.testimonial-card:hover .testimonial-play-icon {
    background: rgba(207, 159, 47, 0.90);
    border-color: rgba(207, 159, 47, 0.60);
    color: #0a262d;
    transform: scale(1.12);
}

@media (max-width: 760px) {
    .testimonial-card {
        width: 155px;
    }
    .testimonials-head h2 {
        font-size: 1.35rem;
    }
}

.band-genres {
    background:
        radial-gradient(ellipse at 92% 12%, rgba(207, 159, 47, 0.12) 0%, transparent 38%),
        radial-gradient(ellipse at 5% 88%, rgba(15, 73, 82, 0.05) 0%, transparent 32%),
        linear-gradient(180deg, #fffefb 0%, #f5efe0 100%);
    border-top: 1px solid rgba(207, 159, 47, 0.12);
}

.band-shell-promo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 420px;
}

.band-shell-story {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: start;
    min-height: 360px;
}

.instrument-lead {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.instrument-lead h2 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.instrument-marquee {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.instrument-picker {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--brand-strong) 0%, #1b6a80 60%, #115564 100%);
}

.instrument-picker::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 88% 15%, rgba(207, 159, 47, 0.12) 0%, transparent 42%),
        radial-gradient(ellipse at 8% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 36%);
    pointer-events: none;
}

.instrument-picker::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.12));
    pointer-events: none;
}

.band-shell-picker {
    padding-top: 52px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.band-shell-stage {
    padding-top: 48px;
    padding-bottom: 60px;
}

.section-kicker-gold {
    color: rgba(207, 159, 47, 0.90);
}

.instrument-picker .instrument-lead {
    margin-bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.instrument-picker .instrument-lead h2 {
    color: #ffffff;
    font-size: clamp(1.7rem, 2.6vw, 2.9rem);
}

.instrument-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0;
    position: static;
    width: 100%;
}

.instrument-spot {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 16px 14px 12px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.68);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    min-width: 94px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.instrument-spot:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.26);
    transform: translateY(-3px);
}

.instrument-spot.is-active {
    color: var(--accent);
    background: rgba(207, 159, 47, 0.14);
    border-color: rgba(207, 159, 47, 0.52);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(207, 159, 47, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-4px) scale(1.03);
}

.instrument-spot.is-active .instrument-spot-icon {
    background: rgba(207, 159, 47, 0.22);
    border-color: rgba(207, 159, 47, 0.60);
    color: var(--accent);
    box-shadow: 0 0 0 2px rgba(207, 159, 47, 0.22), 0 6px 16px rgba(0, 0, 0, 0.18);
}

.instrument-spot-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.10);
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    transition: box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.instrument-spot-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.instrument-spot-name {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.instrument-stage {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
    padding-top: 10px;
}

.instrument-stage-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 470px;
}

.instrument-stage-copy h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.instrument-stage-products {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(15, 73, 82, 0.12);
}

.instrument-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 16px 6px;
    border-bottom: 1px solid rgba(15, 73, 82, 0.12);
    transition: padding-left 180ms ease, color 180ms ease, background 180ms ease;
}

.instrument-line:hover {
    padding-left: 12px;
    color: var(--brand);
    background: rgba(15, 73, 82, 0.025);
}

.instrument-line-title {
    font-family: "Fraunces", serif;
    font-size: 1.04rem;
    color: var(--text-strong);
}

.instrument-line-meta,
.instrument-line-price {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--muted);
}

.instrument-line-price {
    color: var(--brand);
    white-space: nowrap;
}

.story-points-light {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}

.story-point-light {
    padding: 0 0 0 18px;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-left: 2px solid rgba(207, 159, 47, 0.55);
}

.story-point-light strong,
.story-point-light span,
.story-copy-block h2,
.story-copy-block p {
    color: #ffffff;
}

.story-copy-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
}

.story-copy-block h2 {
    font-size: clamp(1.9rem, 2.8vw, 3rem);
}

.story-copy-block p {
    color: rgba(255, 255, 255, 0.84);
}

.genre-band-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.genre-band-head > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-copy h2,
.promo-copy p,
.promo-copy .section-kicker {
    color: #ffffff;
}

.promo-showcase-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.promo-showcase-head .promo-copy {
    max-width: 760px;
}

.promo-showcase-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-channel-button {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.promo-channel-button:hover {
    background: rgba(255, 255, 255, 0.18);
}

.promo-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
}

.promo-video-card {
    display: grid;
    grid-template-columns: 236px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 22px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-video-thumb {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 18px 34px rgba(3, 18, 22, 0.22);
}

.promo-video-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 220ms ease;
}

.promo-video-card:hover .promo-video-thumb img {
    transform: scale(1.03);
}

.promo-video-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.promo-video-eyebrow {
    margin: 0;
    color: rgba(255, 244, 216, 0.88);
    font-size: 0.82rem;
    font-weight: 700;
}

.promo-video-copy h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: -0.01em;
}

.promo-video-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.promo-video-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #cf9f2f 0%, #e6b84b 100%);
    color: #0a262d;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(207, 159, 47, 0.24);
}

.promo-video-button:hover {
    transform: translateY(-1px);
}

.promo-video-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 0.72rem;
}

.promo-video-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.promo-video-icon:hover {
    background: rgba(255, 255, 255, 0.12);
}

.home-band {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 38px 42px;
    box-shadow: var(--shadow-sm);
}

.home-band-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    gap: 34px;
    align-items: center;
    background: linear-gradient(135deg, #f8fbfb 0%, #fffefb 100%);
}

.home-band-guided {
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.home-band-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #0f4952 0%, #2f6f86 100%);
    color: #fff;
}

.home-band-story h2,
.home-band-story p,
.home-band-story strong,
.home-band-story span {
    color: inherit;
}

.home-band-genres {
    background: linear-gradient(180deg, #fffdfa 0%, #f7f2e8 100%);
}

.home-band-promo {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #082a31 0%, #0f4952 46%, #155e68 100%);
    color: #fff;
}

.home-band-promo h2,
.home-band-promo p {
    color: inherit;
}

.page.narrow {
    max-width: 920px;
    margin: 0 auto;
}

.section,
.page-hero,
.detail-panel,
.auth-card,
.empty-state,
.plan-card,
.product-card,
.feature-card,
.genre-card,
.stat-card,
.guidance-card,
.cart-card,
.library-card {
    border: 1px solid rgba(15, 73, 82, 0.10);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.page-hero,
.section {
    padding: 34px;
}

.page-hero.compact {
    padding: 28px 30px;
}

.hero-kicker {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255, 248, 220, 0.8) 100%);
    border: 1px solid rgba(207, 159, 47, 0.28);
    color: #7a5a0e;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(207, 159, 47, 0.12);
}

.section-kicker {
    margin: 0;
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.82);
}

.eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #805f14;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
.brand-name,
.section-title,
.detail-title {
    margin: 0;
    color: var(--text-strong);
    font-family: "Fraunces", serif;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.3rem, 3.4vw, 4.35rem);
    line-height: 1.02;
}

h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.7rem);
    line-height: 1.08;
}

h3 {
    font-size: 1.15rem;
    line-height: 1.16;
}

p {
    margin: 0;
    line-height: 1.68;
    color: var(--muted);
}

.section-header,
.section-header-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-header > div,
.section-header-row > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-visual,
.promo-visual {
    position: relative;
    min-height: 320px;
}

/* ── Carrossel hero fullscreen (estilo Tomplay) ───────────────────────────── */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 82vh;
    min-height: 82svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1100ms ease;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay escuro com vinheta — legibilidade do texto */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(8, 28, 36, 0.28) 0%, rgba(8, 28, 36, 0.72) 100%),
        linear-gradient(to bottom, rgba(8, 28, 36, 0.40) 0%, rgba(8, 28, 36, 0.30) 50%, rgba(8, 28, 36, 0.60) 100%);
}

/* Conteúdo (texto + CTAs) centrado sobre o overlay */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 100px;
    text-align: center;
}

.hero-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 780px;
}

.hero-content-inner h1 {
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.30);
    font-size: clamp(2.1rem, 3.6vw, 3.6rem);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 56ch;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

/* Botões sobre imagem */
.button-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: background 180ms ease, transform 140ms ease, box-shadow 180ms ease;
    box-shadow: 0 8px 28px rgba(207, 159, 47, 0.45);
    text-decoration: none;
}

.button-hero-primary:hover {
    background: #b8891a;
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(207, 159, 47, 0.55);
}

.button-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.70);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: border-color 180ms ease, background 180ms ease;
    text-decoration: none;
}

.button-hero-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}

/* Dots de navegação */
.hero-carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    padding: 0;
    transition: background 250ms ease, width 280ms ease;
}

.hero-dot.is-active {
    background: rgba(207, 159, 47, 0.95);
    width: 26px;
    border-radius: 999px;
}

/* ── Decoração de notas (promo/story) ─────────────────────────────────────── */
.guidance-art-circle,
.story-blob {
    position: absolute;
    border-radius: 50%;
}

.guidance-art-note {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 4px 4px 10px 10px;
    background: rgba(207, 159, 47, 0.58);
    transform: rotate(-18deg);
}

.guidance-art-note::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    right: 1px;
    top: -10px;
    background: inherit;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 30px;
    align-items: stretch;
    padding: 34px;
    border: 1px solid rgba(15, 73, 82, 0.10);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 1)),
        radial-gradient(circle at top right, rgba(207, 159, 47, 0.06), transparent 34%);
    box-shadow: var(--shadow-md);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-copy p {
    max-width: 62ch;
    font-size: 1.05rem;
}

.hero-actions,
.hero-trust,
.hero-kpis,
.detail-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-trust {
    margin-top: 8px;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border: 1px solid rgba(15, 73, 82, 0.10);
}

.hero-preview {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f9f7f1 100%);
    color: var(--text);
    border: 1px solid rgba(15, 73, 82, 0.10);
    box-shadow: var(--shadow-sm);
}

.hero-preview-header,
.preview-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.preview-badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 73, 82, 0.08);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.preview-sheet {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(15, 73, 82, 0.04);
}

.preview-line {
    height: 1px;
    background: rgba(15, 73, 82, 0.18);
}

.preview-notes {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.preview-note {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 73, 82, 0.14);
}

.preview-note.is-active {
    background: var(--accent);
}

.preview-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 73, 82, 0.08);
    color: var(--brand);
}

.preview-progress {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 73, 82, 0.10);
    overflow: hidden;
}

.preview-progress-fill {
    width: 48%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f2d16e 0%, var(--accent) 100%);
}

.hero-kpis {
    margin-top: 8px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
    padding: 16px 18px;
}

.stat-card strong {
    font-size: 1.35rem;
    color: var(--brand);
}

.guided-explorer {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.instrument-scroller {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.instrument-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(15, 73, 82, 0.10);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.instrument-chip:hover,
.instrument-chip.is-active {
    transform: translateY(-1px);
    border-color: rgba(15, 73, 82, 0.20);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.instrument-chip-mark {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 73, 82, 0.11), rgba(207, 159, 47, 0.15));
    color: var(--brand);
    font-weight: 800;
}

.instrument-chip-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.instrument-chip-name {
    font-weight: 800;
}

.instrument-chip-note {
    font-size: 0.78rem;
    color: var(--muted);
}

.guided-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.guidance-card {
    padding: 28px;
    position: sticky;
    top: 104px;
}

.guidance-card-visual {
    background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
}

.guidance-art {
    position: relative;
    height: 180px;
    margin-bottom: 18px;
}

.guidance-art-circle {
    width: 180px;
    height: 180px;
    background: #dfeaf0;
    top: 0;
    left: 24px;
}

.guidance-art-device-main {
    width: 170px;
    height: 110px;
    top: 26px;
    left: 76px;
    overflow: hidden;
}

.guidance-art-device-small {
    width: 70px;
    height: 100px;
    top: 56px;
    left: 28px;
    overflow: hidden;
}

.guidance-art-device-main::before,
.guidance-art-device-main::after,
.guidance-art-device-small::before,
.guidance-art-device-small::after {
    content: "";
    position: absolute;
}

.guidance-art-device-main::before {
    inset: 14px 14px auto;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 73, 82, 0.14);
}

.guidance-art-device-main::after {
    inset: 36px 14px 14px;
    border-radius: 12px;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(15, 73, 82, 0.15) 0 2px,
            transparent 2px 16px
        );
}

.guidance-art-device-small::before {
    inset: 12px 10px auto;
    height: 8px;
    border-radius: 999px;
    background: rgba(214, 59, 135, 0.20);
}

.guidance-art-device-small::after {
    inset: 30px 10px 12px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(15, 73, 82, 0.08), rgba(15, 73, 82, 0.16));
}

.note-a { left: 210px; top: 14px; }
.note-b { left: 178px; top: 120px; }

.guidance-card p + p {
    margin-top: 14px;
}

.guided-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 22px;
}

.guided-stat {
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 73, 82, 0.06) 0%, rgba(207, 159, 47, 0.04) 100%);
    border: 1px solid rgba(15, 73, 82, 0.09);
}

.guided-stat strong {
    display: block;
    color: var(--brand);
    font-size: 1.12rem;
}

.guided-stat span {
    color: var(--muted);
    font-size: 0.85rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.product-grid.product-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.library-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-media {
    position: relative;
    padding: 18px;
    min-height: 132px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    background:
        linear-gradient(135deg, rgba(15, 73, 82, 0.08), rgba(207, 159, 47, 0.10)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 233, 0.96));
}

.product-media::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 73, 82, 0.22), transparent);
}

.product-media-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.76);
    color: var(--brand);
    border: 1px solid rgba(15, 73, 82, 0.10);
    font-family: "Fraunces", serif;
    font-size: 1rem;
}

.product-badge {
    align-self: flex-start;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(15, 73, 82, 0.08);
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 20px 22px 22px;
}

.product-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-title {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    color: var(--text-strong);
    line-height: 1.14;
}

.product-copy {
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.meta-pill {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price {
    color: var(--brand);
    font-size: 1.08rem;
    font-weight: 800;
}

.feature-grid,
.plans-grid,
.genre-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.genre-card {
    padding: 24px;
}

.feature-icon,
.genre-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: linear-gradient(135deg, rgba(15, 73, 82, 0.10), rgba(207, 159, 47, 0.14));
}

.genre-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.story-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.story-points {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.story-point {
    display: grid;
    gap: 6px;
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.22);
}

.story-blob {
    width: 360px;
    height: 260px;
    right: 10px;
    top: 20px;
    background: rgba(255, 255, 255, 0.12);
}

.story-ring,
.story-wave,
.story-note {
    position: absolute;
}

.story-ring {
    border-radius: 50%;
    border: 16px solid rgba(255, 255, 255, 0.22);
}

.story-ring-a {
    width: 184px;
    height: 184px;
    top: 34px;
    left: 56px;
}

.story-ring-b {
    width: 110px;
    height: 110px;
    right: 78px;
    top: 132px;
    border-width: 12px;
}

.story-wave {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.story-wave-a {
    width: 180px;
    top: 72px;
    right: 68px;
    transform: rotate(-14deg);
}

.story-wave-b {
    width: 132px;
    bottom: 48px;
    left: 98px;
    transform: rotate(18deg);
}

.story-note {
    width: 18px;
    height: 18px;
    border-radius: 6px 6px 12px 12px;
    background: rgba(255, 255, 255, 0.34);
    transform: rotate(-18deg);
}

.story-note::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 18px;
    right: 2px;
    top: -12px;
    background: inherit;
}

.story-note-a {
    top: 56px;
    right: 108px;
}

.story-note-b {
    bottom: 66px;
    right: 48px;
}

.genre-pill {
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 73, 82, 0.12);
    color: var(--muted);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(10, 38, 45, 0.05);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.genre-pill:hover:not(.active) {
    background: #ffffff;
    color: var(--brand);
    border-color: rgba(15, 73, 82, 0.20);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(10, 38, 45, 0.09);
}

.genre-pill.active {
    background: linear-gradient(135deg, var(--accent) 0%, #e3b22a 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(207, 159, 47, 0.32);
    transform: translateY(-1px);
}

.promo-copy {
    position: relative;
    z-index: 1;
}

.promo-photo-frame {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
    border-radius: 34px;
    overflow: hidden;
    transform: perspective(1400px) rotateY(-9deg) rotateX(2deg);
    box-shadow:
        0 36px 72px rgba(3, 18, 22, 0.42),
        0 14px 28px rgba(207, 159, 47, 0.12);
}

.promo-photo-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 30, 34, 0.04) 0%, rgba(6, 30, 34, 0.46) 100%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0%, transparent 34%);
    z-index: 1;
}

.promo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.06) contrast(1.02);
}

.promo-glow {
    position: absolute;
    inset: auto -18% -12% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 159, 47, 0.42) 0%, rgba(207, 159, 47, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.promo-float-card {
    position: absolute;
    z-index: 2;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(4, 18, 22, 0.28);
}

.promo-float-card-top {
    top: 24px;
    left: 24px;
    max-width: 220px;
    padding: 14px 16px;
    border-radius: 22px;
}

.promo-float-card-top strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.05rem;
    line-height: 1.2;
}

.promo-float-label,
.promo-float-metric {
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promo-float-label {
    margin-bottom: 8px;
    color: rgba(255, 244, 216, 0.92);
}

.promo-float-card-bottom {
    right: 22px;
    bottom: 22px;
    padding: 12px 16px;
    border-radius: 999px;
}

.promo-copy .button-secondary {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.promo-copy .button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 28px rgba(4, 18, 22, 0.18);
}

.membership-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 30px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f1 100%);
    color: var(--text);
    border: 1px solid rgba(15, 73, 82, 0.10);
    box-shadow: var(--shadow-sm);
}

.membership-card h2,
.membership-card p,
.membership-card strong {
    color: var(--text-strong);
}

.membership-card p {
    color: var(--muted);
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
}

.plan-card.featured {
    border-color: rgba(207, 159, 47, 0.42);
    background: linear-gradient(180deg, rgba(255, 251, 241, 0.94), rgba(255, 255, 255, 0.98));
    box-shadow: var(--shadow-md);
}

.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #805f14;
    font-size: 0.74rem;
    font-weight: 800;
}

.plan-name {
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-price {
    display: flex;
    align-items: end;
    gap: 10px;
}

.plan-price strong {
    font-family: "Fraunces", serif;
    font-size: 2.2rem;
    color: var(--text-strong);
}

.plan-features,
.stack-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.plan-features li,
.stack-list li {
    display: flex;
    gap: 10px;
    color: var(--muted);
}

.plan-features svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 4px;
}

.plan-features .unavailable {
    opacity: 0.55;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 340px;
    gap: 20px;
    align-items: start;
}

.detail-panel {
    padding: 30px;
}

.detail-title {
    margin-top: 12px;
    margin-bottom: 12px;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-price {
    font-family: "Fraunces", serif;
    font-size: 2.4rem;
    color: var(--brand);
}

.auth-layout {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 180px);
}

.auth-card {
    width: min(100%, 560px);
    padding: 34px;
}

.auth-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.auth-brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.auth-subtitle,
.auth-legal,
.field-hint {
    color: var(--muted);
}

.auth-subtitle a,
.auth-legal a,
.auth-forgot a {
    color: var(--brand);
    font-weight: 700;
}

.auth-messages,
.errorlist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.auth-messages {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.auth-messages li,
.errorlist li {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(157, 79, 66, 0.08);
    color: var(--danger);
}

.form-field,
.form-field-check {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-field label,
.form-field-check label,
.pass-label-row label {
    color: var(--text-strong);
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea,
.pass-input-wrap input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(15, 73, 82, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.pass-input-wrap input:focus {
    border-color: rgba(15, 73, 82, 0.24);
    box-shadow: 0 0 0 4px rgba(15, 73, 82, 0.08);
}

.pass-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.pass-input-wrap {
    position: relative;
}

.pass-input-wrap input {
    padding-right: 52px;
}

.pass-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: var(--muted);
}

.pass-toggle svg {
    width: 18px;
    height: 18px;
}

.pass-bar-wrap {
    margin-top: 10px;
}

.pass-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 73, 82, 0.10);
    overflow: hidden;
}

.pass-bar-fill {
    height: 100%;
    border-radius: inherit;
}

.auth-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.auth-submit-btn {
    width: 100%;
    border: 0;
}

.auth-forgot {
    display: flex;
    justify-content: flex-end;
    margin-top: -6px;
    margin-bottom: 16px;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-link {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 73, 82, 0.10);
    color: var(--muted);
    font-weight: 700;
}

.tab-link:hover,
.tab-link.is-active {
    background: rgba(15, 73, 82, 0.08);
    color: var(--brand);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.empty-state {
    padding: 44px;
    text-align: center;
}

.empty-state-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 73, 82, 0.10), rgba(207, 159, 47, 0.14));
    color: var(--brand);
    font-family: "Fraunces", serif;
    font-size: 1.55rem;
}

.footer-block {
    margin-top: 46px;
    border-top: 1px solid rgba(15, 73, 82, 0.10);
    padding-top: 28px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 28px 0 16px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    color: var(--text-strong);
}

.footer-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 73, 82, 0.10);
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand);
    flex-shrink: 0;
}

.footer-social-btn svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.footer-col-title {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--text-strong);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav a {
    color: var(--muted);
}

.footer-nav a:hover {
    color: var(--brand);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 0 4px;
    color: var(--muted);
    font-size: 0.88rem;
}

/* ── Hamburger button ─────────────────────────────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 73, 82, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    transition: transform 220ms ease, opacity 220ms ease;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 16px;
    border-top: 1px solid rgba(15, 73, 82, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    padding: 12px 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-strong);
    border-bottom: 1px solid rgba(15, 73, 82, 0.06);
    -webkit-tap-highlight-color: transparent;
}

.nav-mobile-link:last-child { border-bottom: none; }

.nav-mobile-socials {
    display: flex;
    gap: 10px;
    padding: 12px 4px 4px;
}

.nav-mobile-actions {
    display: flex;
    gap: 10px;
    padding: 8px 4px 4px;
}

.nav-mobile-actions .button {
    flex: 1;
    justify-content: center;
    text-align: center;
}

/* ── Responsive 1180px ────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
    .site-header-inner {
        grid-template-columns: 1fr;
        padding: 12px 0 16px;
    }

    .site-nav,
    .nav-right {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .home-band-hero,
    .home-band-story,
    .home-band-promo,
    .guided-panel,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .guidance-card {
        position: static;
    }

    .product-grid.product-grid-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .band-shell-hero,
    .band-shell-promo,
    .band-shell-story,
    .instrument-stage,
    .story-points-light {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-shell,
    .site-header-inner,
    .footer-inner {
        width: min(calc(100% - 20px), var(--container));
    }

    .site-shell {
        padding: 18px 0 56px;
    }

    .home-band,
    .page-hero,
    .section,
    .detail-panel,
    .auth-card,
    .plan-card,
    .empty-state,
    .guidance-card {
        padding: 22px;
        border-radius: 24px;
    }

    /* Header mobile: linha única brand + hamburger */
    .site-header-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .brand { flex: 1; }

    .nav-hamburger { display: flex; }

    .site-nav,
    .nav-search,
    .nav-right {
        display: none;
    }

    .nav-social {
        display: none;
    }

    .product-grid,
    .product-grid.product-grid-wide,
    .plans-grid,
    .genre-grid,
    .guided-stats,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-bottom,
    .catalog-toolbar,
    .section-header,
    .section-header-row,
    .genre-band-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-layout {
        min-height: auto;
    }

    .hero-carousel,
    .story-visual,
    .promo-visual {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }

    .band-shell {
        width: min(calc(100% - 24px), var(--container));
        padding: 42px 0;
    }

    .band-shell-hero {
        min-height: auto;
        gap: 26px;
    }

    .band-shell-promo {
        min-height: auto;
        gap: 28px;
    }

    .promo-showcase-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-video-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .promo-video-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .promo-video-thumb {
        max-width: 360px;
    }

    .instrument-strip {
        gap: 8px;
    }

    .instrument-spot {
        min-width: 82px;
        padding: 12px 10px 10px;
    }

    .instrument-spot-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .instrument-spot-name {
        font-size: 0.74rem;
    }

    .band-shell-picker {
        padding-top: 38px;
        padding-bottom: 36px;
        gap: 24px;
    }

    .band-shell-stage {
        padding-top: 36px;
        padding-bottom: 44px;
    }

    .instrument-stage {
        gap: 24px;
    }

    .instrument-line {
        grid-template-columns: 1fr;
        gap: 6px;
        padding-left: 0;
    }

    .instrument-line:hover {
        padding-left: 0;
    }

    .story-point-light {
        padding-left: 14px;
    }

    .promo-video-actions {
        flex-wrap: wrap;
    }
}
