@font-face {
    font-family: "Sweet Revenge";
    src: url("SWEET_REVENGE.otf") format("opentype");
    font-display: swap;
}

:root {
    --bg: #070409;
    --bg-soft: #110914;
    --panel: rgba(18, 14, 22, 0.76);
    --panel-strong: rgba(9, 7, 12, 0.94);
    --line: rgba(255, 255, 255, 0.14);
    --text: #fff8ff;
    --muted: #cfc5d4;
    --magenta: #f232b8;
    --magenta-dark: #9b126f;
    --cyan: #4ddcff;
    --amber: #ff9f3d;
    --green: #68f6b2;
    --shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 12% -10%, rgba(242, 50, 184, 0.28), transparent 28rem),
        radial-gradient(circle at 86% 8%, rgba(77, 220, 255, 0.14), transparent 28rem),
        linear-gradient(135deg, #070409 0%, #0b0710 48%, #090f13 100%);
    font-family: "Barlow", "Segoe UI", sans-serif;
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), transparent 72%);
}

body.modal-open {
    overflow: hidden;
}

.intro-video-bg {
    position: absolute;
    inset: 0 0 auto;
    z-index: 0;
    height: min(88vh, 760px);
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 28%, rgba(242, 50, 184, 0.22), transparent 26rem),
        linear-gradient(135deg, rgba(7, 4, 9, 0.72), rgba(5, 12, 16, 0.82));
    pointer-events: none;
}

.intro-video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(7, 4, 9, 0.5), rgba(7, 4, 9, 0.28) 42%, var(--bg) 100%),
        radial-gradient(circle at 50% 40%, transparent 0, rgba(0, 0, 0, 0.42) 68%);
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: saturate(1.18) contrast(1.05);
}

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

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

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 50;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--text);
    color: var(--bg);
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: translateY(0);
}

.google-translate-element {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.language-switcher {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 35;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(7, 4, 9, 0.78);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
}

.language-button:hover,
.language-button:focus-visible {
    border-color: rgba(242, 50, 184, 0.62);
    background: rgba(242, 50, 184, 0.16);
}

.flag {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 14px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
    flex: 0 0 auto;
}

.flag-br {
    background: #159447;
}

.flag-br::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    background: #f7d340;
    transform: translate(-50%, -50%) rotate(45deg);
}

.flag-br::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #213a8f;
    transform: translate(-50%, -50%);
}

.flag-us {
    background: repeating-linear-gradient(
        to bottom,
        #c92632 0 2px,
        #fff 2px 4px
    );
}

.flag-us::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 9px;
    height: 8px;
    background: #24458f;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0 !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    width: min(100% - 32px, 1360px);
    margin: 0 auto;
    padding: 12px 0;
    background: linear-gradient(to bottom, rgba(7, 4, 9, 0.64), rgba(7, 4, 9, 0.18));
    backdrop-filter: blur(18px);
}

main {
    position: relative;
    z-index: 1;
}

.brand img {
    width: 134px;
    height: auto;
}

.nav-links,
.site-footer nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.6vw, 34px);
}

.nav-links a,
.site-footer nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links a:hover,
.site-footer nav a:hover,
.text-link:hover {
    color: var(--magenta);
}

.store-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.store-button {
    gap: 12px;
    background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
    box-shadow: 0 12px 34px rgba(242, 50, 184, 0.28);
}

.store-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.ghost-button {
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
}

.ghost-button:hover {
    border-color: rgba(77, 220, 255, 0.6);
    background: rgba(77, 220, 255, 0.1);
}

.header-cta {
    min-height: 44px;
    padding-inline: 18px;
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100% - 32px, var(--max));
    min-height: clamp(470px, 66vh, 620px);
    margin: 0 auto;
    padding: 34px 0 34px;
    isolation: isolate;
    text-align: center;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    inset: 11% auto auto 50%;
    width: min(66vw, 600px);
    height: min(66vw, 600px);
    border: 1px solid rgba(242, 50, 184, 0.24);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(242, 50, 184, 0.16);
    transform: translateX(-50%);
}

.hero::after {
    right: 50%;
    bottom: 8%;
    width: min(58vw, 620px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: translateX(50%) rotate(-8deg);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 860px;
    min-width: 0;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--magenta);
    font-size: 0.83rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
.section-heading h2,
.section-copy h2,
.workflow-content h2,
.banner-callout h2,
.modal-header h2 {
    font-family: "Sweet Revenge", "Barlow", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.9;
    text-transform: uppercase;
}

h1 {
    max-width: 860px;
    margin-bottom: 18px;
    font-size: clamp(4rem, 8.8vw, 7.3rem);
    text-shadow: 0 14px 44px rgba(0, 0, 0, 0.72);
}

.hero-subtitle {
    width: min(100%, 640px);
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    font-weight: 650;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    font-weight: 750;
}

.availability::before {
    content: "";
    width: 22px;
    height: 14px;
    background: url("../img/meta.svg") center / contain no-repeat;
}

.proof-strip strong,
.feature-grid h3,
.steps strong,
.faq-grid h3 {
    font-size: 1.06rem;
    font-weight: 900;
    text-transform: uppercase;
}

.proof-strip span {
    color: var(--muted);
    font-weight: 650;
}

.proof-strip,
.feature-section,
.workflow-section,
.music-section,
.community-section,
.banner-callout,
.faq-section,
.site-footer {
    width: min(100% - 32px, var(--max));
    margin-inline: auto;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.proof-strip div {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.045);
}

.proof-strip strong {
    display: block;
    margin-bottom: 3px;
}

.feature-section,
.music-section,
.community-section,
.faq-section {
    padding: clamp(50px, 7vw, 82px) 0;
}

.section-heading {
    width: min(100%, 740px);
    margin: 0 auto 26px;
    text-align: center;
}

.section-copy,
.workflow-content,
.quote-wall {
    min-width: 0;
}

.section-heading.compact {
    margin-bottom: 22px;
}

.section-heading h2,
.section-copy h2,
.workflow-content h2 {
    margin-bottom: 14px;
    font-size: clamp(3.2rem, 7vw, 4.2rem);
}

.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.workflow-content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
    font-weight: 650;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-grid article,
.steps li,
.faq-grid article,
.quote-wall blockquote {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.feature-grid article {
    min-height: 176px;
    padding: 20px;
}

.feature-grid span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border: 1px solid rgba(242, 50, 184, 0.48);
    border-radius: 50%;
    color: var(--magenta);
    background: rgba(242, 50, 184, 0.08);
    font-size: 0.86rem;
    font-weight: 900;
}

.feature-grid h3 {
    margin-bottom: 8px;
}

.feature-grid p,
.steps p,
.faq-grid p,
.quote-wall p {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 650;
}

.workflow-section {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: 8px 0 clamp(50px, 7vw, 82px);
}

.workflow-media {
    overflow: hidden;
    /* border: 1px solid var(--line); */
    border-radius: 8px;
    background: #050407;
    box-shadow: var(--shadow);
}

.workflow-media img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    opacity: 0.84;
    filter: saturate(1.12) contrast(1.04);
}

.steps {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    padding: 18px;
}

.steps span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--bg);
    background: var(--cyan);
    font-weight: 900;
    grid-row: span 2;
}

.steps strong {
    display: block;
    margin-bottom: 3px;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.playlist-grid article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18)),
        url("../game/banner.png") center / cover;
    box-shadow: var(--shadow);
}

.playlist-grid article:nth-child(2) {
    background-position: 35% center;
}

.playlist-grid article:nth-child(3) {
    background-position: 65% center;
}

.playlist-grid article:nth-child(4) {
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18)),
        url("../img/banner.png");
}

.playlist-grid span {
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
}

.playlist-grid strong {
    font-family: "Sweet Revenge", "Barlow", sans-serif;
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 0.86;
    text-transform: uppercase;
}

.spotify-trigger {
    margin: 24px auto 0;
}

.community-section {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    /* border-top: 1px solid var(--line); */
    /* border-bottom: 1px solid var(--line); */
}

.quote-wall {
    display: grid;
    gap: 10px;
}

.quote-wall blockquote {
    margin: 0;
    padding: 20px;
}

.quote-wall blockquote:nth-child(2) {
    margin-left: clamp(0px, 5vw, 54px);
}

.quote-wall p {
    color: var(--text);
    font-size: clamp(1.08rem, 1.7vw, 1.42rem);
    font-weight: 850;
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
}

.banner-callout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 184px;
    margin-top: 8px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(7, 4, 9, 0.92), rgba(7, 4, 9, 0.5), rgba(7, 4, 9, 0.88)),
        url("../game/banner.png") center / cover;
    box-shadow: var(--shadow);
}

.banner-callout h2 {
    max-width: 850px;
    margin-bottom: 0;
    font-size: clamp(3rem, 6vw, 5.9rem);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.faq-grid article {
    padding: 20px;
}

.faq-grid h3 {
    margin-bottom: 8px;
}

.site-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 30px 0 38px;
}

.footer-logo img {
    width: 108px;
    height: auto;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
    font-weight: 650;
    text-align: right;
}

.page-main {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: clamp(54px, 8vw, 92px) 0;
}

.page-hero {
    max-width: 860px;
    margin: 0 auto clamp(28px, 5vw, 48px);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(4.2rem, 10vw, 7.6rem);
}

.page-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: clamp(1.04rem, 2vw, 1.22rem);
    font-weight: 650;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 18px;
    align-items: start;
}

.contact-card,
.contact-aside,
.policy-content {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.contact-card,
.contact-aside {
    padding: clamp(22px, 4vw, 34px);
}

.contact-card h2,
.contact-aside h2,
.policy-content h2 {
    margin-bottom: 10px;
    font-size: 1.28rem;
    text-transform: uppercase;
}

.contact-card p,
.contact-aside p,
.contact-topics,
.policy-content p,
.policy-content li {
    color: var(--muted);
    font-weight: 650;
}

.contact-topics {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.contact-topics li {
    position: relative;
    padding-left: 20px;
}

.contact-topics li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 18px rgba(242, 50, 184, 0.62);
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    padding: 13px 14px;
    font: inherit;
    font-weight: 650;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(77, 220, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(77, 220, 255, 0.12);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-alert {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 750;
}

.form-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.form-alert.success {
    color: #dbfff0;
    background: rgba(104, 246, 178, 0.12);
    border: 1px solid rgba(104, 246, 178, 0.34);
}

.form-alert.error {
    color: #ffe0ef;
    background: rgba(242, 50, 184, 0.12);
    border: 1px solid rgba(242, 50, 184, 0.34);
}

.contact-aside {
    position: sticky;
    top: 110px;
}

.contact-aside hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 24px 0;
}

.policy-content {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 38px);
}

.policy-content section + section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.policy-content a {
    color: var(--cyan);
    font-weight: 900;
}

.policy-updated {
    color: var(--magenta) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(10px);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 41;
    width: min(92vw, 920px);
    max-height: 90vh;
    padding: 18px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-strong);
    box-shadow: var(--shadow);
    transform: translate(-50%, -50%);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.modal-header h2 {
    margin: 0;
    font-size: 2.8rem;
}

.modal-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
}

.video-frame {
    aspect-ratio: 16 / 9;
}

.video-frame iframe,
.spotify-frame {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 6px;
}

.video-frame iframe {
    height: 100%;
}

[hidden] {
    display: none !important;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero,
    .workflow-section,
    .community-section,
    .contact-layout,
    .banner-callout,
    .site-footer {
        grid-template-columns: 1fr;
    }

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

    .proof-strip,
    .feature-grid,
    .playlist-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-section {
        padding-top: 46px;
    }

    .workflow-media {
        order: 2;
    }

    .workflow-content {
        order: 1;
    }

    .site-footer,
    .site-footer p {
        text-align: center;
    }

    .contact-aside {
        position: static;
    }
}

@media (max-width: 680px) {
    .site-header {
        width: min(100% - 24px, var(--max));
        gap: 12px;
        padding-top: 10px;
    }

    .brand img {
        width: 114px;
    }

    .header-cta {
        min-height: 42px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.76rem;
        white-space: nowrap;
    }

    .hero {
        width: min(100% - 24px, var(--max));
        padding: 34px 0 28px;
        overflow: hidden;
    }

    h1 {
        font-size: clamp(3.5rem, 15.8vw, 4.9rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .store-button,
    .ghost-button {
        width: 100%;
    }

    .proof-strip,
    .feature-grid,
    .playlist-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .proof-strip div,
    .feature-grid article,
    .faq-grid article {
        padding: 18px;
    }

    .feature-section,
    .music-section,
    .community-section,
    .faq-section {
        padding: 44px 0;
    }

    .section-heading h2,
    .section-copy h2,
    .workflow-content h2 {
        font-size: clamp(3.2rem, 15vw, 4.8rem);
    }

    .workflow-media img {
        min-height: 220px;
    }

    .steps li {
        grid-template-columns: 1fr;
    }

    .steps span {
        margin-bottom: 12px;
    }

    .playlist-grid article {
        min-height: 172px;
    }

    .quote-wall blockquote:nth-child(2) {
        margin-left: 0;
    }

    .banner-callout {
        align-items: start;
    }

    .banner-callout h2 {
        font-size: clamp(3.1rem, 15vw, 4.8rem);
    }

    .site-footer nav {
        flex-wrap: wrap;
    }

    .language-switcher {
        right: 12px;
        bottom: 12px;
    }

    .page-main {
        width: min(100% - 24px, var(--max));
        padding: 42px 0;
    }

    .page-hero h1 {
        font-size: clamp(3.6rem, 16vw, 5.2rem);
    }
}
