/* =========================================================
   STATIC / PUBLIC PAGES
   Self-contained stylesheet for:
   homepage / how-it-works / pricing / faq / contact / legal pages
   ========================================================= */

/* =========================================================
   TOKENS & BASE
   ========================================================= */

:root {
    --bg: #0f0f0f;
    --surface: rgba(18, 18, 18, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
    --muted: #d7d7d7;
    --border: rgba(255, 255, 255, 0.14);
    --accent: #fff500;
    --accent-text: #111111;
    --container: 1240px;
    --header-height: 72px;
    --radius: 20px;
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Roboto, Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("/assets/img/mdr-background.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

main {
    min-height: calc(100vh - var(--header-height));
}

/* =========================================================
   LAYOUT / HEADER / FOOTER
   ========================================================= */

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.site-header-public,
.site-header-dashboard {
    background: rgba(0, 0, 0, 0.94);
}

.header-inner {
    position: relative;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo,
.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img,
.site-logo img,
.footer-logo img {
    display: block;
    width: auto;
}

.logo,
.site-logo {
    padding: 10px 0;
}

.logo img,
.site-logo img {
    height: 36px;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle-lines {
    width: 18px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle-lines span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding-top: 12px;
}

.site-nav.is-open {
    display: block;
}

.site-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-soft);
}

.site-nav-links,
.site-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: uppercase;
}

.site-nav a,
.site-nav button {
    font-size: 15px;
    line-height: 1.25;
    text-transform: uppercase;
}

.site-nav a {
    display: block;
    padding: 10px 0;
}

.site-nav a.is-active {
    color: var(--accent);
}

.site-nav .button {
    width: 100%;
}

.site-nav-dashboard .site-nav-links a {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.site-nav-live,
.site-nav-logout {
    display: inline-flex;
    align-items: center;
}

.site-nav-live {
    color: var(--accent);
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 24px 0 28px;
    color: #cfcfcf;
    font-size: 15px;
}

.site-footer-public,
.site-footer-dashboard {
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo img {
    height: 34px;
}

.footer-copy {
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.footer-nav a {
    color: #cfcfcf;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

/* =========================================================
   BUTTONS / FORMS
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.95rem 1.5rem;
    border-radius: 6px;
    border: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.button-primary {
    background: var(--accent);
    color: var(--accent-text);
}

.button-primary:hover {
    background: #ffffff;
    color: #111111;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--text);
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border-radius: 10px;
    padding: 14px;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(255, 245, 0, 0.55);
}

.form-textarea {
    resize: vertical;
}

/* =========================================================
   AUTH MODAL / FLASH
   ========================================================= */
.auth-flash {
    padding: 16px 18px;
    border: 1px solid rgba(255, 245, 0, 0.22);
    border-left: 4px solid #fff500;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 245, 0, 0.08), rgba(255, 245, 0, 0.03));
    color: #f5f5f5;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
}

.auth-flash.auth-flash-error {
    border-color: rgba(255, 107, 107, 0.24);
    border-left-color: #ff6b6b;
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.10), rgba(255, 107, 107, 0.04));
    color: #fff4f4;
}

.auth-flash a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =========================================================
   STATIC PAGES
   ========================================================= */

.page-hero {
    padding: 56px 0 24px;
}

.page-hero-copy {
    max-width: 760px;
}

.page-hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 8vw, 4rem);
    line-height: 0.98;
    font-weight: 400;
}

.page-hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.static-section,
.feature-section,
.faq-section,
.contact-section,
.legal-section,
.cta-section {
    padding: 0 0 48px;
}

.static-section-copy {
    max-width: 860px;
}

.static-section-copy-narrow {
    max-width: 760px;
}

.static-section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.static-section-heading h2,
.static-section-copy h2,
.cta-panel h2,
.legal-content h2,
.contact-detail-card h2,
.faq-item h2,
.step-card h3,
.role-path-card h3,
.feature-card h2 {
    margin: 0 0 10px;
    font-weight: 400;
    line-height: 1.1;
}

.static-section-heading h2,
.static-section-copy h2,
.cta-panel h2 {
    font-size: clamp(1.9rem, 5vw, 2.6rem);
}

.static-section-heading p,
.static-section-copy p,
.cta-panel p,
.legal-content p,
.contact-main-copy p,
.contact-detail-card p,
.faq-item p,
.step-card p,
.role-path-card p
{
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.static-section-copy p + p,
.contact-main-copy p + p,
.cta-panel p + p,
.legal-content p + p,
.faq-item p + p,
.feature-card p + p {
    margin-top: 14px;
}

/* =========================================================
   CARD SURFACES
   ========================================================= */

.step-card,
.role-path-card,
.feature-card,
.faq-item,
.contact-form-wrap,
.contact-detail-card,
.cta-panel,
.legal-content {
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.steps-grid,
.role-paths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.step-card,
.role-path-card {
    height: 100%;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    margin-bottom: 16px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 245, 0, 0.10);
    border: 1px solid rgba(255, 245, 0, 0.22);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.step-card h3,
.role-path-card h3 {
    font-size: 1.3rem;
}

.feature-intro-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: var(--shadow-soft);
}

.feature-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 245, 0, 0.10);
    border: 1px solid rgba(255, 245, 0, 0.20);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-intro-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.02;
    font-weight: 400;
}

.feature-intro-copy p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.feature-intro-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.feature-point {
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.feature-point strong {
    display: block;
    margin: 0 0 6px;
    color: #fff500;
    font-size: 1rem;
    font-weight: 500;
}

.feature-point span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.feature-steps .steps-grid {
    position: relative;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(255,245,0,0) 100%);
    opacity: 0.75;
}

.step-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.step-card p {
    max-width: 28ch;
}

.role-path-card {
    position: relative;
    overflow: hidden;
    padding-top: 54px;
}

.role-path-label {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.role-path-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    line-height: 1.1;
}

.role-path-card p {
    margin: 0;
    max-width: 30ch;
}

.feature-roles .role-path-card:nth-child(1) {
    background:
        linear-gradient(180deg, rgba(255,245,0,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.feature-roles .role-path-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.feature-roles .role-path-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(180,180,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

/* =========================================================
   PRICING
   ========================================================= */

.feature-section {
    padding-top: 4px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-header {
    margin-bottom: 16px;
}

.feature-card h2 {
    font-size: 1.9rem;
}

.feature-card-subtitle {
    margin: 0 0 16px;
    min-height: 0;
    color: var(--text);
    opacity: 0.88;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-price {
    margin: 0;
    color: var(--accent);
    font-size: clamp(2.2rem, 8vw, 3rem);
    line-height: 1;
    font-weight: 400;
}

.feature-price span {
    font-size: 1.1rem;
    color: var(--text);
}

.feature-card > p {
    margin-bottom: 16px;
}

.feature-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.feature-list li {
    line-height: 1.7;
}

.feature-list li + li {
    margin-top: 8px;
}

.payment-feature-list strong {
    color: var(--accent);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    padding-top: 4px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.faq-item h2 {
    font-size: 1.3rem;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-hero {
    padding-bottom: 24px;
}

.contact-main-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-main-copy,
.contact-form-wrap {
    min-width: 0;
}

.contact-main-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-wrap {
    padding: 22px;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.contact-form .form-field {
    min-width: 0;
}

.contact-form .form-label {
    margin-bottom: 8px;
}

.contact-form .form-input,
.contact-form .form-textarea {
    min-height: 48px;
}

.contact-form .form-textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}

.contact-form-actions .button {
    width: 100%;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-detail-card h2 {
    font-size: 1.35rem;
}

.contact-detail-card p {
    margin-top: 8px;
}

.contact-main-copy .button {
    width: 100%;
}

/* =========================================================
   CONTACT FORM STATES
   ========================================================= */

.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: rgba(255, 107, 107, 0.7);
}

.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus {
    border-color: rgba(255, 107, 107, 0.9);
    box-shadow: none;
}

.form-error {
    margin: 8px 0 0;
    color: #ffb3b3;
    font-size: 13px;
    line-height: 1.4;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form-wrap .auth-flash {
    margin-bottom: 18px;
}

/* =========================================================
   LEGAL
   ========================================================= */

.legal-hero {
    padding-bottom: 24px;
}

.legal-content h2 {
    margin-top: 24px;
    font-size: 1.35rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-top: 0;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-panel {
    text-align: left;
}

.cta-panel .button {
    width: 100%;
    margin-top: 18px;
}

/* =========================================================
   HOME PAGE
   ========================================================= */

.home-page {
    padding-bottom: 0px;
}

/* hero */

.hero-home {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    padding: 32px 0 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: url("/assets/img/hero-image.jpg");
    background-size: cover;
    background-position: 62% center;
    background-repeat: no-repeat;
}

.hero-home-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.80) 0%,
        rgba(10, 10, 10, 0.64) 34%,
        rgba(10, 10, 10, 0.38) 58%,
        rgba(10, 10, 10, 0.56) 100%
    );
    pointer-events: none;
}

.hero-home-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy {
    max-width: 760px;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(2.6rem, 11vw, 4.8rem);
    line-height: 0.94;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-copy .lead {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.hero-actions {
    margin-top: 22px;
}

.actions-right {
    display: flex;
    justify-content: flex-end;
}

.actions-right .button {
    width: 100%;
}

.hero-player-wrap {
    min-width: 0;
    display: flex;
    justify-content: center;
}

.radio-popup-static {
    width: 248px;
    min-height: 248px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(26, 18, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.radio-popup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.radio-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 245, 0, 0.14);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.radio-status {
    font-size: 11px;
    font-weight: 700;
    color: #d8d8d8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.radio-player-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    flex: 1;
    padding: 0;
}

.radio-player-disc {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #2a2140 0%, #2a2140 28%, #0d0d0d 29%, #0d0d0d 47%, #4c3f6b 48%, #1a1525 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.radio-player-disc span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: #111111;
    font-size: 11px;
    font-weight: 700;
}

.radio-kicker {
    margin: 0 0 6px;
    color: #c2b0e3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.radio-popup-body h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 400;
}

.radio-text {
    margin: 0;
    color: #d1d1d1;
    font-size: 13px;
    line-height: 1.5;
}

.radio-player-footer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.radio-player-footer span {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.radio-player-footer span:nth-child(1) {
    width: 42px;
}

.radio-player-footer span:nth-child(2) {
    width: 72px;
    background: rgba(255, 245, 0, 0.65);
}

.radio-player-footer span:nth-child(3) {
    width: 32px;
}

/* audiences */

.home-audiences {
    padding: 0 0 24px;
}

.home-audience-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0;
}

.home-audience-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: var(--shadow-soft);
}

.home-audience-image {
    min-height: 220px;
    background: rgba(255, 255, 255, 0.03);
}

.home-audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-audience-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 22px;
}

.home-audience-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    line-height: 1.05;
    font-weight: 400;
}

.home-audience-copy hr {
    width: 100%;
    margin: 0 0 16px;
    border: 0;
    border-top: 1px solid var(--border);
}

.home-audience-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.home-audience-copy .actions-right {
    margin-top: 18px;
    width: 100%;
}

.home-audience-copy .button {
    width: 100%;
}

/* cta */

.cta-section {
    padding: 0 0 48px;
}

.cta-panel {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface-soft);
    box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    line-height: 1.05;
    font-weight: 400;
}

.cta-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.cta-panel .button {
    width: 100%;
    margin-top: 18px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {
    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .logo img,
    .site-logo img {
        height: 40px;
    }

    .footer-inner {
        gap: 20px;
    }

    .page-hero {
        padding: 72px 0 32px;
    }

    .static-section,
    .feature-section,
    .faq-section,
    .contact-section,
    .legal-section,
    .cta-section {
        padding-bottom: 56px;
    }

    .steps-grid,
    .role-paths-grid,
    .faq-list,
    .contact-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .contact-main-row {
        gap: 22px;
        margin-bottom: 22px;
    }

    .contact-form .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .contact-form .form-field-full {
        grid-column: 1 / -1;
    }

    .contact-form-actions .button,
    .contact-main-copy .button,
    .cta-panel .button {
        width: auto;
    }

    .cta-panel {
        padding: 28px;
    }

    .hero-home {
        padding: 48px 0 36px;
    }

    .radio-popup-static,
    .home-audience-copy,
    .cta-panel {
        padding: 28px;
    }

    .hero-player-wrap {
        justify-content: stretch;
    }

    .radio-popup-static {
        width: 100%;
        min-height: 232px;
    }

    .actions-right .button,
    .home-audience-copy .button,
    .cta-panel .button {
        width: auto;
    }

    .home-audiences,
    .cta-panel {
        padding-bottom: 28px;
    }

    .feature-intro-panel {
        padding: 28px;
    }

    .feature-intro-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* =========================================================
   DESKTOP
   ========================================================= */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: block;
        padding-top: 0;
        margin-left: auto;
    }

    .site-nav-panel {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-nav-links {
        flex-direction: row;
        align-items: center;
        gap: 22px;
        min-width: 0;
    }

    .site-nav-actions {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .site-nav a {
        padding: 0;
    }

    .site-nav .button {
        width: auto;
    }

    .site-footer {
        padding: 24px 0;
    }

    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-brand {
        gap: 10px;
    }

    .page-hero {
        padding: 84px 0 36px;
    }

    .static-section,
    .feature-section,
    .faq-section,
    .contact-section,
    .legal-section,
    .cta-section {
        padding-bottom: 64px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .role-paths-grid,
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-main-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 28px;
        align-items: start;
        margin-bottom: 28px;
    }

    .contact-main-copy {
        padding-right: 8px;
    }

    .cta-panel {
        padding: 32px;
    }

    .legal-content,
    .contact-form-wrap,
    .contact-detail-card,
    .feature-card,
    .faq-item,
    .step-card,
    .role-path-card {
        padding: 24px;
    }

    .hero-home {
        padding: 64px 0 44px;
    }

    .hero-home-inner {
        grid-template-columns: minmax(0, 1fr) 248px;
        gap: 32px;
        align-items: center;
    }

    .hero-copy {
        padding-right: 12px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    .hero-player-wrap {
        justify-content: flex-end;
    }

    .radio-popup-static {
        width: 248px;
        min-height: 248px;
    }

    .home-audiences {
        padding-bottom: 32px;
    }

    .home-audience-list {
        gap: 32px;
    }

    .home-audience-row {
        grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
        align-items: stretch;
        border: 0;
        border-radius: 0;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }

    .home-audience-row:nth-child(even) {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    }

    .home-audience-row:nth-child(even) .home-audience-image {
        order: 2;
    }

    .home-audience-row:nth-child(even) .home-audience-copy {
        order: 1;
    }

    .home-audience-image {
        min-height: 100%;
        overflow: hidden;
    }

    .home-audience-copy {
        padding: 32px;
        border: 1px solid var(--border);
        background: rgba(0, 0, 0, 0.28);
        box-shadow: var(--shadow-soft);
    }

    .home-audience-copy .actions-right {
        margin-top: 24px;
    }

    .cta-section {
        padding-bottom: 72px;
    }

    .cta-panel {
        padding: 32px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "title button"
            "text button";
        column-gap: 24px;
        row-gap: 10px;
        align-items: center;
    }

    .cta-panel h2 {
        grid-area: title;
        margin: 0;
    }

    .cta-panel p {
        grid-area: text;
        margin: 0;
        max-width: 680px;
    }

    .cta-panel .button {
        grid-area: button;
        margin-top: 0;
        width: auto;
        justify-self: end;
        align-self: center;
    }

    .feature-intro-panel {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 28px;
        align-items: start;
        padding: 32px;
    }

    .feature-steps .steps-grid {
        gap: 22px;
    }

    .step-card {
        min-height: 240px;
    }

    .role-path-card {
        min-height: 260px;
        padding: 56px 24px 24px;
    }

    .role-path-label {
        top: 20px;
        left: 20px;
    }
}