:root {
    --bg: #060606;
    --bg-soft: #101010;
    --panel: #111111;
    --panel-soft: #171717;
    --panel-border: rgba(255, 255, 255, 0.12);
    --text: #f2f2f2;
    --muted: #9b9b9b;
    --accent: #f2f2f2;
    --accent-pink: #fa90e0;
    --accent-cyan: #4bd7ff;
    --accent-gradient: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-cyan) 100%);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(250, 144, 224, 0.11), transparent 26%),
        radial-gradient(circle at top left, rgba(75, 215, 255, 0.1), transparent 24%),
        linear-gradient(180deg, #000000 0%, #060606 45%, #0b0b0b 100%);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

.site-navbar {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--panel-border);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    padding-block: 0.25rem;
}

.brand-logo {
    display: block;
    height: 46px;
    width: auto;
    object-fit: contain;
}

.nav-links .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus {
    color: #ffffff;
}

.cover-hero {
    position: relative;
    width: 100vw;
    min-height: clamp(520px, 78vh, 860px);
    margin-top: -1.5rem;
    margin-right: calc(50% - 50vw);
    margin-bottom: 3rem;
    margin-left: calc(50% - 50vw);
    padding: 6.5rem 1.5rem 5rem;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(4, 4, 4, 0.46) 0%, rgba(6, 6, 6, 0.64) 42%, rgba(4, 4, 4, 0.9) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 40%),
        var(--cover-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cover-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.16) 22%, rgba(4, 4, 4, 0.48) 68%, rgba(4, 4, 4, 0.86) 100%),
        radial-gradient(circle at 50% 42%, rgba(255, 245, 235, 0.08), transparent 28%);
    pointer-events: none;
}

.cover-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: calc(clamp(520px, 78vh, 860px) - 11.5rem);
    text-align: center;
}

.cover-hero-date,
.cover-hero-title,
.cover-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.cover-hero-date {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    line-height: 1.15;
    letter-spacing: 0.06em;
    font-weight: 500;
    text-transform: uppercase;
}

.cover-hero-title {
    max-width: 12ch;
    margin: 1.8rem 0 0;
    font-size: clamp(3.7rem, 7vw, 7rem);
    line-height: 0.96;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.cover-hero-subtitle {
    max-width: 26ch;
    margin: 1.8rem 0 0;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    line-height: 1.5;
    font-weight: 400;
}

.thenx-hero {
    padding-top: 1rem;
}

.hero-panel,
.stack-panel,
.section-shell,
.cta-band,
.testimonial-card,
.product-card,
.system-main,
.mini-card,
.empty-panel,
.soft-card {
    border: 1px solid var(--panel-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-panel {
    padding: 2rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-kicker,
.section-kicker,
.mini-kicker,
.stack-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.hero-kicker,
.section-kicker,
.mini-kicker {
    background-image: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title,
.section-title,
.stack-card h2,
.step-card h3,
.product-card h3,
.closing-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.9;
    margin: 1rem 0 0;
    max-width: 10ch;
}

.hero-title span {
    background-image: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-copy,
.section-copy,
.stack-card p,
.product-card p,
.step-card p,
.mini-card p,
.testimonial-card p,
.empty-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-copy {
    max-width: 48rem;
    margin-top: 1.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.btn-accent {
    background: var(--accent-gradient);
    color: #081018;
    border: 0;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 999px;
    padding-inline: 1.4rem;
    box-shadow: 0 12px 30px rgba(75, 215, 255, 0.18);
}

.btn-accent:hover,
.btn-accent:focus {
    background: linear-gradient(135deg, #fface9 0%, #76e2ff 100%);
    color: #081018;
    box-shadow: 0 16px 36px rgba(250, 144, 224, 0.2);
}

.btn-outline-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 999px;
    padding-inline: 1.4rem;
}

.btn-outline-ghost:hover,
.btn-outline-ghost:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.hero-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1rem;
}

.hero-stat strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
}

.hero-stat span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.stack-panel {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.stack-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 1.35rem;
}

.stack-card-accent {
    background: linear-gradient(180deg, rgba(250, 144, 224, 0.14), rgba(75, 215, 255, 0.08));
}

.stack-tag {
    color: #ffffff;
    opacity: 0.66;
}

.stack-card h2 {
    margin: 0.75rem 0 0.5rem;
    font-size: 2rem;
}

.section-shell {
    padding: 1.6rem;
}

.section-headline {
    display: grid;
    gap: 0.85rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
    max-width: 14ch;
}

.section-copy {
    max-width: 44rem;
}

.product-card {
    padding: 1.5rem;
    min-height: 100%;
}

.product-card-top,
.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-pill {
    display: inline-flex;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.product-index {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
}

.product-card h3 {
    margin: 2rem 0 0.75rem;
    font-size: 2rem;
    max-width: 11ch;
}

.product-card-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-card-bottom strong {
    font-size: 1rem;
    letter-spacing: 0.06em;
}

.product-card-bottom span {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.design-cta-shell {
    position: relative;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: 1rem;
    padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem;
    scroll-margin-top: calc((100vh - clamp(300px, 30vw, 430px)) / 2);
    background: var(--accent-gradient);
}

.design-cta-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.design-cta-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

.design-cta-title {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 16ch;
    color: #ffffff;
    font-size: clamp(2.5rem, 5.8vw, 4.9rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.design-cta-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    min-width: 220px;
    min-height: 52px;
    padding: 0.8rem 1.4rem;
    border-radius: 0.85rem;
    background: #ffffff;
    color: #181818;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(10, 10, 10, 0.16);
}

.design-cta-button:hover,
.design-cta-button:focus {
    background: rgba(255, 255, 255, 0.94);
    color: #181818;
}

.youtube-section {
    padding: clamp(1.6rem, 3vw, 2rem);
    border: 1px solid var(--panel-border);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 14% 0%, rgba(250, 144, 224, 0.12), transparent 30%),
        radial-gradient(circle at 100% 12%, rgba(75, 215, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.youtube-section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

.youtube-section-head .section-kicker {
    grid-column: 1 / -1;
    margin: 0;
}

.youtube-section-title {
    max-width: 13ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 5vw, 4.1rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.youtube-channel-link,
.youtube-watch-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 0.28em;
}

.youtube-channel-link:hover,
.youtube-channel-link:focus,
.youtube-watch-link:hover,
.youtube-watch-link:focus {
    color: var(--accent-cyan);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.youtube-card {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
}

.youtube-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    background: #111111;
}

.youtube-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-card h3 {
    margin: 1rem 0 0.55rem;
    color: #ffffff;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.25;
    font-weight: 500;
}

.youtube-watch-link {
    display: inline-flex;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.youtube-empty {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
}

.youtube-empty p {
    margin: 0 0 0.7rem;
    color: var(--muted);
}

.artists-page-shell {
    padding: clamp(1.6rem, 3vw, 2rem);
    scroll-margin-top: 7rem;
    border: 1px solid var(--panel-border);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(250, 144, 224, 0.12), transparent 30%),
        radial-gradient(circle at 100% 12%, rgba(75, 215, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.artists-page-head {
    max-width: 760px;
}

.artists-page-title {
    max-width: 12ch;
    margin: 0.8rem 0 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.artists-page-copy {
    max-width: 44rem;
    margin: 1.2rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.artists-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.artist-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.035);
}

.artist-card-image {
    min-height: 380px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
        var(--artist-image);
    background-position: center;
    background-size: cover;
}

.artist-card-body {
    display: grid;
    align-content: center;
    padding: clamp(1.4rem, 3vw, 2.4rem);
}

.artist-card-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.artist-card h2,
.artist-card h3 {
    margin: 0.7rem 0 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.artist-card p {
    max-width: 32rem;
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.artist-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.site-footer {
    display: block;
    margin-top: 4rem;
    padding: 1.6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-brand {
    display: grid;
    gap: 1rem;
    /* width: min(100%, 44rem); */
    max-width: none;
}

.site-footer-brand span {
    display: inline-block;
    background-image: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.site-footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.6;
}

.site-footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 500;
}

.site-footer-phone-icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.site-footer-phone:hover,
.site-footer-phone:focus {
    color: #ffffff;
}

.site-footer-end {
    display: grid;
    width: 100%;
    justify-items: flex-start;
    gap: 1rem;
}

.site-footer-location {
    display: grid;
    gap: 0.45rem;
    width: 100%;
    padding: 1rem 1.1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    transition: border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.site-footer-location:hover,
.site-footer-location:focus {
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(250, 144, 224, 0.16), rgba(75, 215, 255, 0.12));
    color: #ffffff;
    transform: translateY(-2px);
}

.site-footer-map {
    overflow: hidden;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.site-footer-map-frame {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
    filter: grayscale(1) contrast(1.05) brightness(0.82);
}

.site-footer-location-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-location-icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.site-footer-location strong {
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 500;
}

.site-footer-location-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    font-weight: 500;
}

.site-footer-location-link:hover,
.site-footer-location-link:focus {
    color: #ffffff;
}

.site-footer-links,
.site-footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.site-footer-links {
    gap: 0.8rem 1.2rem;
}

.site-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    font-weight: 500;
}

.site-footer-socials {
    gap: 0.65rem;
}

.site-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.76);
}

.site-footer-links a:hover,
.site-footer-links a:focus,
.site-footer-socials a:hover,
.site-footer-socials a:focus {
    color: #ffffff;
}

.site-footer-socials a:hover,
.site-footer-socials a:focus {
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(250, 144, 224, 0.22), rgba(75, 215, 255, 0.16));
}

.site-footer-icon {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}

.contact-modal-dialog {
    max-width: min(720px, calc(100vw - 2rem));
}

.contact-modal-content {
    position: relative;
    border: 0;
    border-radius: 1.8rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        #0d0d0d;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    padding: 0.9rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08);
    filter: invert(1);
    opacity: 1;
}

.contact-modal-body {
    padding: clamp(2rem, 4vw, 3rem);
}

.contact-modal-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-modal-title {
    margin: 1rem 0 0;
    color: #ffffff;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1;
    font-weight: 500;
}

.contact-modal-copy {
    max-width: 34ch;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

.contact-modal-actions {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-card {
    display: grid;
    gap: 0.35rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    color: #ffffff;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.contact-card:hover,
.contact-card:focus {
    transform: translateY(-2px);
    color: #ffffff;
}

.contact-card-whatsapp {
    background: linear-gradient(135deg, rgba(250, 144, 224, 0.16), rgba(75, 215, 255, 0.12));
}

.contact-card-instagram {
    background: rgba(255, 255, 255, 0.03);
}

.contact-card-whatsapp:hover,
.contact-card-whatsapp:focus,
.contact-card-instagram:hover,
.contact-card-instagram:focus {
    border-color: rgba(255, 255, 255, 0.28);
    background-color: rgba(255, 255, 255, 0.06);
}

.contact-card-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-card-label-icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.contact-card-value {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.25;
    font-weight: 500;
}

.contact-card-meta {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.5;
}

.auth-modal-dialog {
    max-width: min(1120px, calc(100vw - 2rem));
}

.auth-modal-content {
    position: relative;
    border: 0;
    border-radius: 2rem;
    overflow: hidden;
    background: #fbfaf7;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    padding: 0.9rem;
    border-radius: 999px;
    background-color: rgba(18, 18, 18, 0.06);
    opacity: 1;
}

.auth-modal-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 660px;
}

.auth-modal-visual {
    padding: 1.25rem;
    background: #f7f4ef;
}

.auth-visual-surface {
    position: relative;
    height: 100%;
    padding: 1.75rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background:
        linear-gradient(rgba(60, 60, 60, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 60, 60, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #faf7f2 0%, #efe8df 100%);
    background-size: 32px 32px, 32px 32px, auto;
}

.auth-visual-copy,
.auth-preview-stage,
.auth-visual-trust {
    position: relative;
    z-index: 1;
}

.auth-visual-kicker {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #1e1e1e;
    font-size: 0.8rem;
    font-weight: 600;
}

.auth-visual-prompt {
    max-width: 13ch;
    margin: 1.25rem 0 0;
    color: #222222;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 500;
}

.auth-preview-stage {
    height: 290px;
    margin-top: 2.5rem;
}

.auth-preview-badge,
.auth-preview-action {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.auth-preview-badge {
    top: 0;
    left: 12%;
    background: #ffffff;
    color: #2561ff;
}

.auth-preview-action {
    right: 18%;
    bottom: 4%;
    background: #101010;
    color: #ffffff;
}

.auth-preview-card {
    position: absolute;
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.auth-preview-card-left {
    top: 48px;
    left: 12%;
    width: 36%;
    height: 168px;
    transform: rotate(-11deg);
    background:
        radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.32), transparent 40%),
        linear-gradient(135deg, #d8c6b6 0%, #6d564d 100%);
}

.auth-preview-card-main {
    top: 28px;
    left: 30%;
    width: 42%;
    height: 206px;
    background:
        radial-gradient(circle at 52% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(180deg, #302923 0%, #7a5f53 100%);
}

.auth-preview-card-right {
    top: 62px;
    right: 12%;
    width: 24%;
    height: 164px;
    transform: rotate(14deg);
    background:
        radial-gradient(circle at 48% 30%, rgba(255, 255, 255, 0.2), transparent 35%),
        linear-gradient(135deg, #6b5b56 0%, #1f1f1f 100%);
}

.auth-preview-mark {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    font-weight: 600;
}

.auth-visual-trust {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 3rem;
    color: #4d4d4d;
    font-size: 0.95rem;
}

.auth-visual-trust p {
    margin: 0;
    max-width: 25ch;
}

.auth-trust-avatars {
    display: inline-flex;
    align-items: center;
}

.auth-trust-avatars i {
    display: block;
    width: 2rem;
    height: 2rem;
    margin-left: -0.35rem;
    border: 2px solid #f7f4ef;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
}

.auth-trust-avatars i:first-child {
    margin-left: 0;
}

.auth-modal-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
}

.auth-panel-inner {
    width: 100%;
    max-width: 390px;
}

.auth-panel-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.auth-panel-title {
    margin: 1.15rem 0 0;
    color: #151515;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 600;
}

.auth-panel-subtitle {
    margin: 0.7rem 0 0;
    color: #6e6e6e;
    font-size: 1rem;
    line-height: 1.6;
}

.auth-modal-feedback {
    margin-top: 1.35rem;
    border: 0;
    border-radius: 1rem;
}

.auth-form {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.auth-field {
    min-height: 3.5rem;
    padding-inline: 1.15rem;
    border: 1px solid rgba(18, 18, 18, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: #151515;
}

.auth-field:focus {
    border-color: rgba(75, 215, 255, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(250, 144, 224, 0.12);
}

.auth-submit {
    width: 100%;
    min-height: 3.6rem;
    margin-top: 0.15rem;
    border-radius: 999px;
    background: #0f0f0f;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.auth-submit:hover,
.auth-submit:focus {
    background: #1b1b1b;
    color: #ffffff;
}

.auth-switch-copy,
.auth-terms-copy {
    margin: 1.2rem 0 0;
    text-align: center;
}

.auth-switch-copy {
    color: #666666;
    font-size: 0.96rem;
}

.auth-switch-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #121212;
    font-weight: 600;
    text-decoration: underline;
}

.auth-terms-copy {
    color: #8a8a8a;
    font-size: 0.85rem;
    line-height: 1.6;
}

.system-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.2rem;
}

.system-main {
    padding: 1.75rem;
}

.step-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.step-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card:first-child {
    border-top: 0;
    padding-top: 0;
}

.step-card span {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.34);
    font-weight: 500;
}

.step-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.system-side {
    display: grid;
    gap: 1rem;
}

.mini-card {
    padding: 1.4rem;
}

.mini-card-accent {
    background: linear-gradient(180deg, rgba(250, 144, 224, 0.14), rgba(75, 215, 255, 0.08));
}

.cta-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    padding: 1.75rem;
}

.cta-band-actions {
    display: grid;
    gap: 0.85rem;
    align-content: center;
}

.testimonial-shell {
    padding-bottom: 1rem;
}

.testimonial-card {
    padding: 1.5rem;
    min-height: 100%;
}

.quote-mark {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 500;
}

.testimonial-card span {
    display: inline-block;
    margin-top: 1rem;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.empty-panel {
    padding: 1.4rem;
}

.empty-panel strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.closing-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.closing-text {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.03em;
}

.soft-card {
    border-radius: 1.25rem;
}

.soft-card,
.product-card,
.testimonial-card,
.hero-panel,
.system-main,
.mini-card,
.section-shell,
.cta-band,
.stack-panel,
.empty-panel {
    color: var(--text);
}

.soft-card .text-muted,
.soft-card p.text-muted,
.soft-card small.text-muted,
.soft-card .table,
.soft-card .table th,
.soft-card .table td {
    color: var(--muted) !important;
}

.soft-card .form-label,
.soft-card .h1,
.soft-card .h2,
.soft-card .h3,
.soft-card .h4,
.soft-card .h5,
.soft-card .h6,
.soft-card h1,
.soft-card h2,
.soft-card h3,
.soft-card h4,
.soft-card h5,
.soft-card h6 {
    color: var(--text);
}

.soft-card .form-control,
.soft-card .form-select,
.soft-card textarea {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--text);
}

.soft-card .form-control:focus,
.soft-card .form-select:focus,
.soft-card textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(75, 215, 255, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(250, 144, 224, 0.14);
    color: var(--text);
}

.soft-card .form-control::placeholder,
.soft-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.soft-card .table {
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(255, 255, 255, 0.12);
}

.soft-card .badge.text-bg-dark {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.admin-sidebar a {
    text-decoration: none;
}

.alert {
    background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 991px) {
    .site-navbar .navbar-collapse {
        padding-top: 1rem;
    }

    .hero-stats,
    .system-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .auth-modal-grid {
        grid-template-columns: 1fr;
    }

    .auth-modal-visual {
        padding-bottom: 0;
    }

    .auth-modal-panel {
        padding-top: 1.25rem;
    }

    .cover-hero {
        padding-top: 5.5rem;
        padding-bottom: 4rem;
    }

    .cover-hero-inner {
        min-height: auto;
    }

    .youtube-section-head,
    .youtube-grid,
    .artist-card {
        grid-template-columns: 1fr;
    }

    .artist-card-image {
        min-height: 320px;
    }

    .site-footer-end {
        width: 100%;
        justify-items: flex-start;
    }

    .site-footer-location {
        max-width: none;
        width: 100%;
    }

    .site-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        height: 38px;
    }

    .hero-panel,
    .section-shell,
    .system-main,
    .cta-band,
    .product-card,
    .testimonial-card,
    .mini-card {
        padding: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .cta-band-actions .btn {
        width: 100%;
    }

    .design-cta-button {
        width: 100%;
        min-width: 0;
    }

    .contact-modal-dialog {
        max-width: calc(100vw - 1rem);
        margin: 0.5rem auto;
    }

    .contact-modal-body {
        padding: 1.5rem 1.1rem;
    }

    .auth-modal-dialog {
        max-width: calc(100vw - 1rem);
        margin: 0.5rem auto;
    }

    .auth-modal-content {
        border-radius: 1.4rem;
    }

    .auth-modal-visual,
    .auth-modal-panel {
        padding: 1rem;
    }

    .auth-visual-surface {
        padding: 1.25rem;
    }

    .auth-preview-stage {
        height: 230px;
        margin-top: 2rem;
    }

    .auth-preview-card-left {
        left: 4%;
        width: 40%;
    }

    .auth-preview-card-main {
        left: 26%;
        width: 48%;
    }

    .auth-preview-card-right {
        right: 4%;
        width: 28%;
    }

    .auth-preview-action {
        right: 8%;
    }

    .cover-hero {
        min-height: 460px;
        padding: 4.75rem 1.2rem 3rem;
    }

    .cover-hero-title {
        max-width: 10ch;
        margin-top: 1.3rem;
    }

    .cover-hero-subtitle {
        margin-top: 1.25rem;
    }

    .step-card {
        grid-template-columns: 1fr;
    }
}
