/* Landing pública — línea base visual v2. La versión v1 queda registrada en docs/UI_BASELINES.md. */
.landing-shell {
    overflow-x: hidden;
    background: #07080c;
}

.landing-shell main {
    padding: 0;
}

.landing-v2 {
    --sonar-bg: #07080c;
    --sonar-surface: #101219;
    --sonar-surface-2: #171923;
    --sonar-ink: #f6f5f7;
    --sonar-muted: #aaaab6;
    --sonar-magenta: #d936b8;
    --sonar-cyan: #15cfe0;
    --sonar-blue: #4c76e8;
    --sonar-line: rgba(255, 255, 255, 0.11);
    color: var(--sonar-ink);
    background: var(--sonar-bg);
    font-family: 'Inter', sans-serif;
}

.landing-v2 *,
.landing-v2 *::before,
.landing-v2 *::after {
    box-sizing: border-box;
}

.landing-v2__container {
    width: min(100% - 48px, 1240px);
    margin-inline: auto;
}

.landing-v2__hero {
    position: relative;
    display: grid;
    min-height: min(820px, calc(100svh - 42px));
    overflow: hidden;
    background: #06070b;
}

.landing-v2__hero-media,
.landing-v2__hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.landing-v2__hero-media {
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.landing-v2__hero-media::before,
.landing-v2__hero-media::after {
    position: absolute;
    inset: 0;
    content: '';
    pointer-events: none;
}

.landing-v2__hero-media::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 5, 9, 0.72) 0%, rgba(4, 5, 9, 0.56) 38%, rgba(4, 5, 9, 0.16) 75%, rgba(4, 5, 9, 0.32) 100%),
        linear-gradient(180deg, rgba(4, 5, 9, 0.18) 0%, transparent 36%, rgba(4, 5, 9, 0.45) 100%);
}

.landing-v2__hero-media::after {
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 100px 14px rgba(0, 0, 0, 0.52);
}

.landing-v2__hero-video {
    z-index: 0;
    object-fit: cover;
    opacity: 0;
    filter: saturate(0.9) brightness(0.9);
    transition: opacity 620ms ease-in-out;
}

.landing-v2__hero-video.is-active {
    opacity: 1;
}

.landing-v2__hero-grid {
    display: grid;
    align-items: center;
    padding-block: clamp(78px, 10vw, 132px) 96px;
    position: relative;
    z-index: 1;
}

.landing-v2__hero-copy {
    --hero-copy-offset: clamp(32px, 5vh, 64px);
    position: relative;
    max-width: 690px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.92);
    transform: translateY(var(--hero-copy-offset));
    transition: opacity 180ms ease, transform 180ms ease;
}

.landing-v2__hero-copy.is-transitioning {
    opacity: 0;
    transform: translateY(calc(var(--hero-copy-offset) + 14px));
}

.landing-v2__eyebrow,
.landing-v2__kicker {
    margin: 0 0 18px;
    color: var(--sonar-cyan);
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.landing-v2__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.76);
}

.landing-v2__eyebrow > [aria-hidden] {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--sonar-magenta), var(--sonar-cyan));
    box-shadow: 0 0 14px rgba(21, 207, 224, 0.48);
}

.landing-v2__hero-title {
    max-width: 690px;
    margin: 0;
    color: var(--sonar-ink);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.92;
    text-wrap: balance;
}

.landing-v2__hero-title em {
    display: block;
    color: transparent;
    font-style: normal;
    background: linear-gradient(100deg, #f074d5 4%, #55ddeb 78%);
    background-clip: text;
    -webkit-background-clip: text;
}

.landing-v2__hero-text {
    max-width: 590px;
    margin: 28px 0 0;
    color: #c4c3cc;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}

.landing-v2__actions,
.landing-v2__cta-actions,
.landing-v2__card-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-v2__actions {
    margin-top: 34px;
}

.landing-v2__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.landing-v2__button--primary {
    background: linear-gradient(115deg, #bd2aa5, #197eae);
    box-shadow: 0 12px 32px rgba(29, 143, 179, 0.18);
}

.landing-v2__button--secondary {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(8, 9, 14, 0.62);
}

.landing-v2__button:hover,
.landing-v2__button:focus-visible {
    color: #fff;
    transform: translateY(-2px);
}

.landing-v2__button--primary:hover,
.landing-v2__button--primary:focus-visible {
    box-shadow: 0 16px 38px rgba(34, 193, 211, 0.25);
}

.landing-v2__button--secondary:hover,
.landing-v2__button--secondary:focus-visible {
    border-color: var(--sonar-cyan);
    background: rgba(21, 207, 224, 0.08);
}

.landing-v2 a:focus-visible,
.landing-v2 button:focus-visible,
.landing-v2 audio:focus-visible {
    outline: 3px solid #f2d753;
    outline-offset: 4px;
}

.landing-v2__scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.landing-v2__scroll-cue:hover { color: var(--sonar-cyan); }

.landing-v2__section {
    position: relative;
    padding-block: clamp(76px, 9vw, 126px);
}

.landing-v2__section::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, 1240px);
    height: 1px;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(21, 207, 224, 0.25), rgba(217, 54, 184, 0.22), transparent);
    transform: translateX(-50%);
}

.landing-v2__intro {
    background: radial-gradient(circle at 80% 20%, rgba(76, 118, 232, 0.07), transparent 32%);
}

.landing-v2__intro-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
    gap: clamp(48px, 8vw, 112px);
    align-items: start;
}

.landing-v2__section-heading h2,
.landing-v2__section-header h2,
.landing-v2__beta-card h2,
.landing-v2__cta h2 {
    margin: 0;
    color: var(--sonar-ink);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-transform: none;
}

.landing-v2__section-heading > p:last-child,
.landing-v2__section-header > p,
.landing-v2__beta-card p,
.landing-v2__cta p {
    color: var(--sonar-muted);
    line-height: 1.7;
}

.landing-v2__section-heading > p:last-child {
    margin: 25px 0 0;
    font-size: 1.05rem;
}

.landing-v2__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--sonar-line);
}

.landing-v2__feature {
    min-width: 0;
    padding: 24px 22px 10px;
    border-left: 1px solid var(--sonar-line);
}

.landing-v2__feature > span {
    color: var(--sonar-cyan);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.landing-v2__feature h3 {
    margin: 36px 0 10px;
    color: #fff;
    font-size: 1.15rem;
}

.landing-v2__feature p {
    margin: 0;
    color: var(--sonar-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.landing-v2__beta {
    padding-block: 0 90px;
}

.landing-v2__beta::before { display: none; }

.landing-v2__beta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: linear-gradient(118deg, rgba(217, 54, 184, 0.1), rgba(16, 18, 25, 0.92) 45%, rgba(21, 207, 224, 0.08));
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.25);
}

.landing-v2__beta-card h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); }
.landing-v2__beta-card p:not(.landing-v2__kicker) { max-width: 700px; margin: 15px 0 0; }

.landing-v2__beta-status {
    display: flex;
    min-width: 190px;
    flex-direction: column;
    padding-left: 28px;
    border-left: 1px solid var(--sonar-line);
}

.landing-v2__beta-status strong {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
}

.landing-v2__beta-status span { margin-top: 2px; color: var(--sonar-muted); }
.landing-v2__beta-status a { margin-top: 18px; color: var(--sonar-cyan); font-weight: 800; }

.landing-v2__ranking { background: #0b0c11; }

.landing-v2__section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 42px;
}

.landing-v2__section-header > p {
    width: min(100%, 390px);
    margin: 0;
    text-align: right;
}

.landing-v2__band-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.landing-v2__band-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--sonar-line);
    border-radius: 8px;
    background: var(--sonar-surface);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-v2__band-card:hover,
.landing-v2__band-card:focus-within {
    border-color: rgba(21, 207, 224, 0.42);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.4), 0 0 24px rgba(21, 207, 224, 0.05);
    transform: translateY(-4px);
}

.landing-v2__band-image-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #090a0e;
}

.landing-v2__band-image-link::after {
    position: absolute;
    inset: 40% 0 0;
    content: '';
    background: linear-gradient(transparent, rgba(5, 6, 9, 0.82));
}

.landing-v2__band-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 360ms ease;
}

.landing-v2__band-card:hover .landing-v2__band-image-link img { transform: scale(1.025); }

.landing-v2__rank,
.landing-v2__has-track {
    position: absolute;
    z-index: 2;
    top: 14px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.landing-v2__rank {
    left: 14px;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(5, 6, 9, 0.78);
    backdrop-filter: blur(8px);
}

.landing-v2__has-track {
    right: 14px;
    padding: 7px 9px;
    border: 1px solid rgba(21, 207, 224, 0.4);
    border-radius: 4px;
    background: rgba(5, 6, 9, 0.76);
    color: #9ceaf0;
    text-transform: uppercase;
}

.landing-v2__band-body { padding: 22px; }
.landing-v2__band-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }

.landing-v2__band-heading h3 {
    min-width: 0;
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.landing-v2__band-heading h3 a { color: #fff; text-decoration: none; }
.landing-v2__band-heading h3 a:hover { color: var(--sonar-cyan); }
.landing-v2__band-heading p { flex: 0 0 auto; margin: 0; color: var(--sonar-muted); font-size: 0.78rem; }

.landing-v2__genres {
    display: flex;
    min-height: 30px;
    flex-wrap: wrap;
    gap: 7px;
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
}

.landing-v2__genres li {
    padding: 5px 8px;
    border: 1px solid rgba(217, 54, 184, 0.22);
    border-radius: 4px;
    color: #d3cbd4;
    font-size: 0.7rem;
}

.landing-v2__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 20px;
    padding: 15px 0;
    border-block: 1px solid var(--sonar-line);
}

.landing-v2__stats div { display: flex; min-width: 0; flex-direction: column-reverse; gap: 2px; }
.landing-v2__stats dt { color: var(--sonar-muted); font-size: 0.67rem; line-height: 1.25; }
.landing-v2__stats dd { margin: 0; color: #fff; font-family: 'Outfit', sans-serif; font-size: 1.08rem; font-weight: 800; }

.landing-v2__card-actions { justify-content: space-between; }

.landing-v2__featured-track {
    min-width: 0;
    margin: 0 0 17px;
}

.landing-v2__featured-track > p {
    margin: 0 0 7px;
    overflow: hidden;
    color: #f4f1f5;
    font-size: 0.78rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-v2__featured-track .sonar-audio-player {
    --sonar-wave-height: 48px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
}

.landing-v2__featured-track .sonar-audio-player__toggle {
    width: 42px;
    height: 42px;
}

.landing-v2__profile-link,
.landing-v2__text-link {
    color: #e5e1e7;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.landing-v2__profile-link:hover,
.landing-v2__text-link:hover { color: var(--sonar-cyan); }

.landing-v2__events { background: radial-gradient(circle at 10% 20%, rgba(217, 54, 184, 0.06), transparent 30%); }
.landing-v2__event-list { border-top: 1px solid var(--sonar-line); }

.landing-v2__event-card {
    display: grid;
    grid-template-columns: 90px minmax(220px, 0.72fr) minmax(260px, 1fr);
    gap: clamp(22px, 4vw, 58px);
    align-items: center;
    padding: 26px 10px;
    border-bottom: 1px solid var(--sonar-line);
    transition: background-color 180ms ease, padding 180ms ease;
}

.landing-v2__event-card:hover { padding-inline: 20px; background: rgba(255, 255, 255, 0.025); }

.landing-v2__event-card time {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 0 7px;
    color: var(--sonar-cyan);
}

.landing-v2__event-card time strong { font-family: 'Outfit', sans-serif; font-size: 2.35rem; line-height: 1; }
.landing-v2__event-card time span { font-weight: 800; text-transform: uppercase; }
.landing-v2__event-card time small { grid-column: 2; color: var(--sonar-muted); }
.landing-v2__event-copy p { margin: 0 0 5px; color: var(--sonar-magenta); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.landing-v2__event-copy h3 { margin: 0 0 5px; color: #fff; font-size: 1.25rem; }
.landing-v2__event-copy > span { color: #c6c4ca; font-size: 0.85rem; }
.landing-v2__event-description { margin: 0; color: var(--sonar-muted); font-size: 0.9rem; line-height: 1.6; }

.landing-v2__empty {
    padding: 58px 24px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.landing-v2__empty > span { color: var(--sonar-cyan); font-size: 2.1rem; }
.landing-v2__empty h3 { margin: 14px 0 7px; color: #fff; }
.landing-v2__empty p { margin: 0; color: var(--sonar-muted); }

.landing-v2__cta {
    overflow: hidden;
    background: linear-gradient(120deg, rgba(147, 30, 128, 0.32), rgba(12, 13, 19, 0.98) 48%, rgba(12, 126, 151, 0.25));
}

.landing-v2__cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
}

.landing-v2__cta h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.landing-v2__cta p:not(.landing-v2__kicker) { max-width: 600px; margin: 20px 0 0; }
.landing-v2__cta-actions { justify-content: flex-start; }
.landing-v2__text-link { width: 100%; margin-top: 8px; color: #fff; }

.whatsapp-channel-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(32px, 6vw, 84px);
    align-items: center;
    width: min(100% - 48px, 1240px);
    margin: 0 auto;
    padding: clamp(34px, 5vw, 66px) clamp(24px, 5vw, 64px);
    border-top: 1px solid rgba(244, 67, 54, 0.45);
    border-bottom: 1px solid rgba(244, 67, 54, 0.2);
    background: radial-gradient(circle at 92% 50%, rgba(244, 67, 54, 0.14), transparent 42%), #08090e;
}

.whatsapp-channel-cta__content h2 {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 0.98;
}

.whatsapp-channel-cta__subtitle {
    max-width: 480px;
    margin: 22px 0 0;
    color: #d9d7dd;
    font-size: 1.08rem;
    line-height: 1.55;
}

.whatsapp-channel-cta__support {
    margin: 12px 0 24px;
    color: #a9a7b0;
    font-size: 0.92rem;
}

.whatsapp-channel-cta__button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 24px;
    border: 1px solid #ff5b55;
    border-radius: 6px;
    background: #e53935;
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.24);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-channel-cta__button:hover,
.whatsapp-channel-cta__button:focus-visible {
    background: #f04b45;
    box-shadow: 0 16px 36px rgba(229, 57, 53, 0.34);
    color: #fff;
    transform: translateY(-2px);
}

.whatsapp-channel-cta__icon { width: 24px; height: 24px; fill: currentColor; }

.whatsapp-channel-cta__visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #000;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.whatsapp-channel-cta__image { display: block; width: 100%; height: auto; }

@media (max-width: 1024px) {
    .landing-v2__hero-title { font-size: clamp(3rem, 6vw, 4.8rem); }
    .landing-v2__intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .landing-v2__band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .landing-v2__cta-inner { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 768px) {
    .landing-v2__container { width: min(100% - 32px, 1240px); }
    .landing-v2__hero { min-height: auto; }
    .landing-v2__hero-grid { grid-template-columns: 1fr; padding-block: 76px 88px; }
    .landing-v2__hero-copy { text-align: center; }
    .landing-v2__eyebrow, .landing-v2__actions { justify-content: center; }
    .landing-v2__hero-text { margin-inline: auto; }
    .landing-v2__scroll-cue { display: none; }
    .landing-v2__section { padding-block: 76px; }
    .landing-v2__features { grid-template-columns: 1fr; }
    .landing-v2__feature { padding: 22px 16px; border-bottom: 1px solid var(--sonar-line); }
    .landing-v2__feature h3 { margin-top: 14px; }
    .landing-v2__beta { padding-top: 0; }
    .landing-v2__beta-card { grid-template-columns: 1fr; gap: 26px; }
    .landing-v2__beta-status { padding: 22px 0 0; border-top: 1px solid var(--sonar-line); border-left: 0; }
    .landing-v2__section-header { align-items: start; flex-direction: column; gap: 18px; }
    .landing-v2__section-header > p { text-align: left; }
    .landing-v2__band-grid { grid-template-columns: 1fr; }
    .landing-v2__event-card { grid-template-columns: 80px 1fr; gap: 22px; }
    .landing-v2__event-description { grid-column: 2; }
    .whatsapp-channel-cta {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 1240px);
    }
}

@media (max-width: 480px) {
    .landing-v2__container { width: min(100% - 24px, 1240px); }
    .landing-v2__hero-grid { padding-top: 48px; }
    .landing-v2__hero-title { font-size: clamp(2.65rem, 14vw, 3.6rem); }
    .landing-v2__actions { align-items: stretch; flex-direction: column; }
    .landing-v2__button { width: 100%; }
    .landing-v2__section { padding-block: 62px; }
    .landing-v2__beta { padding-top: 0; }
    .landing-v2__band-body { padding: 18px; }
    .landing-v2__band-heading { align-items: start; flex-direction: column; gap: 6px; }
    .landing-v2__card-actions { align-items: stretch; flex-direction: column; }
    .landing-v2__profile-link { padding-block: 9px; text-align: center; }
    .landing-v2__event-card { grid-template-columns: 70px 1fr; padding-inline: 0; }
    .landing-v2__event-card:hover { padding-inline: 0; }
    .landing-v2__event-description { grid-column: 1 / -1; }
    .landing-v2__cta-actions { align-items: stretch; flex-direction: column; }
    .whatsapp-channel-cta {
        width: min(100% - 24px, 1240px);
        padding: 42px 18px;
    }
    .whatsapp-channel-cta__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .landing-v2 *,
    .landing-v2 *::before,
    .landing-v2 *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .landing-v2__hero-media { display: none; }
}
