:root {
    --bg: #07111f;
    --bg-soft: #10213a;
    --panel: rgba(11, 25, 46, 0.74);
    --panel-strong: rgba(8, 18, 34, 0.9);
    --text: #f7f1e3;
    --muted: #c8cfdd;
    --gold: #f4c86a;
    --saffron: #ff9b4d;
    --teal: #7fe7dc;
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top, rgba(126, 231, 220, 0.1), transparent 24%),
        radial-gradient(circle at 82% 8%, rgba(244, 200, 106, 0.14), transparent 20%),
        radial-gradient(circle at 20% 100%, rgba(255, 155, 77, 0.08), transparent 24%),
        linear-gradient(180deg, #030913 0%, #091320 38%, #050b14 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header,
header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(3, 10, 20, 0.72);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 12px;
}

.brand span {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.main-nav ul,
#mainNav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-link {
    color: var(--muted);
    font-size: 0.95rem;
    padding: 10px 0;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link-yugarts {
    position: relative;
    padding-left: 18px;
}

.nav-link-yugarts::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #34e4da, #ff8d3a 72%, #ff5a5f);
    box-shadow: 0 0 16px rgba(52, 228, 218, 0.35);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 1.25rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 80px;
    display: flex;
    align-items: center;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(4, 9, 18, 0.9) 6%, rgba(4, 9, 18, 0.58) 48%, rgba(4, 9, 18, 0.86) 100%),
        radial-gradient(circle at 22% 18%, rgba(255, 155, 77, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.18), rgba(7, 17, 31, 0.56));
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 36px;
    align-items: center;
}

.eyebrow,
.panel-label,
.band-kicker,
.book-label {
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Cinzel", serif;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin: 14px 0 20px;
    max-width: 11ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}

.yugarts-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
    padding: 10px 18px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(127, 231, 220, 0.12), rgba(255, 155, 77, 0.12));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.yugarts-inline-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 155, 77, 0.45);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.yugarts-inline-link img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.yugarts-inline-link span {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.yugarts-description {
    max-width: 54ch;
    margin-top: 14px;
    font-size: 0.98rem;
    color: var(--muted);
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

p {
    color: var(--muted);
}

.hero-text {
    max-width: 60ch;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #111827;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(244, 200, 106, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(244, 200, 106, 0.25);
    filter: brightness(1.04);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-stats div,
.hero-panel,
.glass-card,
.media-card,
.book-card,
.community-panel,
.feed-card {
    border: 1px solid var(--line);
    background: var(--panel);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.hero-stats div {
    padding: 16px 18px;
    border-radius: 18px;
}

.hero-stats strong,
.community-points strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.hero-stats span,
.community-points span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-panel {
    padding: 28px;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(9, 25, 44, 0.88), rgba(7, 17, 31, 0.92)),
        var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.panel-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.panel-list li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
}

.panel-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--gold));
}

.feature-band,
.section,
.site-footer {
    position: relative;
    z-index: 1;
}

.feature-band {
    margin-top: -36px;
    padding-bottom: 40px;
}

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

.band-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(11, 24, 42, 0.94), rgba(8, 18, 34, 0.86));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.band-grid p {
    margin-top: 12px;
}

.section {
    padding: 92px 0;
}

.alt-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-heading h2 {
    max-width: 16ch;
}

.section-heading p:last-child {
    max-width: 62ch;
    font-size: 1.04rem;
}

.section-heading.narrow {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.content-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.showcase-image img,
.media-card img,
.book-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.showcase-image,
.book-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    min-height: 520px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.watch-book-feature {
    grid-column: 1 / -1;
}

.watch-book-feature h3 {
    max-width: 18ch;
}

.watch-book-feature .btn {
    margin-top: 16px;
}

.watch-book-layout {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.watch-book-cover {
    width: 100%;
    max-width: 150px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.watch-book-copy p + p {
    margin-top: 12px;
}

.watch-book-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 14px;
}

.watch-book-highlights span {
    position: relative;
    padding-left: 16px;
    color: var(--text);
    font-size: 0.96rem;
}

.watch-book-highlights span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    transform: translateY(-50%);
}

.glass-card,
.feed-card,
.book-card {
    border-radius: 22px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(15, 28, 46, 0.88), rgba(9, 20, 35, 0.84));
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.07);
    color: var(--gold);
    margin-bottom: 18px;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 6px;
    color: var(--gold);
    font-weight: 700;
}

.text-link::after {
    content: "→";
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
}

.yugarts-section {
    background:
        radial-gradient(circle at right top, rgba(127, 231, 220, 0.1), transparent 24%),
        radial-gradient(circle at left center, rgba(255, 155, 77, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.yugarts-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.yugarts-copy h2 {
    max-width: 14ch;
}

.yugarts-copy > p {
    max-width: 62ch;
}

.yugarts-copy .yugarts-inline-link {
    margin-top: 18px;
}

.yugarts-media-card {
    min-height: 460px;
    display: grid;
    place-items: center;
    padding: 36px;
    background:
        radial-gradient(circle at top, rgba(126, 231, 220, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(10, 22, 38, 0.95), rgba(7, 16, 30, 0.95));
}

.yugarts-media-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 155, 77, 0.3);
}

.yugarts-media-card img {
    width: min(100%, 420px);
    height: auto;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.media-card {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.music-copy {
    position: relative;
}

.audio-track-list {
    gap: 18px;
}

.track-list,
.benefit-list,
.community-points {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.track-item,
.benefit-list > div,
.community-points > div,
.author-note {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.track-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.audio-track-card {
    padding: 20px 20px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
        linear-gradient(135deg, rgba(244, 200, 106, 0.08), rgba(127, 231, 220, 0.04));
}

.track-meta {
    display: grid;
    gap: 6px;
}

.track-meta span {
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.audio-track-card audio {
    width: min(100%, 320px);
    height: 42px;
    filter: sepia(0.1) saturate(0.95) contrast(1.02);
}

.music-footnote {
    margin-top: 18px;
}

.music-footnote p {
    max-width: 56ch;
    font-size: 0.96rem;
}

.music-media-card {
    min-height: 560px;
    border: 1px solid rgba(244, 200, 106, 0.16);
    box-shadow:
        0 26px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.track-item strong,
.benefit-list h3,
.author-note h3 {
    color: var(--text);
}

.books-section {
    background:
        radial-gradient(circle at top right, rgba(244, 200, 106, 0.12), transparent 24%),
        radial-gradient(circle at left center, rgba(127, 231, 220, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.books-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 30px;
    align-items: start;
}

.book-visual {
    min-height: 640px;
}

.books-copy {
    display: grid;
    gap: 18px;
}

.book-card .btn {
    margin-top: 12px;
}

.author-note {
    background: rgba(255, 255, 255, 0.04);
}

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

.community-panel {
    padding: 36px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    background:
        linear-gradient(180deg, rgba(12, 27, 45, 0.92), rgba(7, 16, 30, 0.92));
}

.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
}

.site-footer {
    padding: 32px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 11, 22, 0.7);
}

.footer-layout,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.footer-layout {
    padding-bottom: 22px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-tagline {
    max-width: 40ch;
    margin-top: 10px;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
    .hero-layout,
    .content-showcase,
    .two-column,
    .yugarts-panel,
    .books-layout,
    .community-panel,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .hero-stats,
    .band-grid,
    .feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-image,
    .book-visual,
    .media-card {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav,
    #mainNav {
        position: absolute;
        top: calc(100% + 10px);
        left: 14px;
        right: 14px;
        padding: 16px;
        border-radius: 20px;
        background: var(--panel-strong);
        border: 1px solid var(--line);
        display: none;
    }

    .main-nav.active,
    #mainNav.active {
        display: block;
    }

    .main-nav ul,
    #mainNav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hero {
        min-height: auto;
        padding-top: 118px;
    }

    h1 {
        max-width: none;
    }

    .hero-stats,
    .band-grid,
    .showcase-grid,
    .feed-grid {
        grid-template-columns: 1fr;
    }

    .feature-band {
        margin-top: 0;
    }

    .watch-book-highlights {
        grid-template-columns: 1fr;
    }

    .watch-book-layout {
        grid-template-columns: 1fr;
    }

    .watch-book-cover {
        max-width: 170px;
    }

    .showcase-image,
    .book-visual,
    .media-card {
        min-height: 320px;
    }

    .music-media-card {
        min-height: 420px;
    }

    .track-item,
    .footer-layout,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .audio-track-card audio {
        width: 100%;
    }

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