/**
 * Members Area page styles — Acting For Camera Masterclass.
 *
 * Only contains additive rules for the .member-* (logged-in header)
 * and .ma-* (members area body) class families. The :root design tokens
 * (--orange, --green, --text, --text-soft, --muted, --white, --shade-a,
 * --shade-b, --shade-c) and the .section-shade-a/b/c helpers, .container,
 * and base typography all live in the site-wide style.css.
 */

/* ---------- Accessibility utilities ---------- */
.skip-link.screen-reader-text {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link.screen-reader-text:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: var(--orange);
    color: #fff;
    z-index: 1000;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
}

/* ---------- Logged-in header ---------- */
.member-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 14, 14, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.member-header.is-scrolled { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45); padding: 10px 0; }
.member-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.member-brand { text-decoration: none; display: inline-block; line-height: 1; }
.member-brand-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(15px, 1.4vw, 19px);
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
}
.member-brand-title .accent { color: var(--orange); }
.member-brand-sub {
    margin-top: 6px;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--orange);
    text-transform: uppercase;
}
.member-nav { display: flex; justify-content: center; gap: 4px; }
.member-nav a {
    position: relative;
    padding: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.member-nav a:hover { color: var(--white); }
.member-nav a.is-active { color: var(--white); }
.member-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -2px;
    height: 2px;
    background: var(--orange);
}
.member-account { display: flex; align-items: center; gap: 18px; }
.member-greeting {
    color: var(--text-soft);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.member-greeting strong { color: var(--white); font-weight: 500; }

/* Clicking the first name in the members-header greeting → /account/ */
.member-greeting .member-name-link {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.member-greeting .member-name-link strong { color: var(--white); transition: color 0.2s ease; }
.member-greeting .member-name-link:hover,
.member-greeting .member-name-link:focus { border-bottom-color: var(--orange); outline: none; }
.member-greeting .member-name-link:hover strong,
.member-greeting .member-name-link:focus strong { color: var(--orange); }
.logout-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--orange);
    border-radius: 4px;
    padding: 8px 16px;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease;
    display: inline-block;
    line-height: 1.4;
}
.logout-btn:hover, .logout-btn:focus { background: var(--orange); color: #fff; }

.member-burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    padding: 0;
}
.member-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    position: relative;
}
.member-burger span::before, .member-burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease;
}
.member-burger span::before { top: -7px; }
.member-burger span::after  { top: 7px; }
.member-burger.is-open span { background: transparent; }
.member-burger.is-open span::before { top: 0; transform: rotate(45deg); }
.member-burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

.member-mobile {
    display: none;
    position: fixed;
    inset: 56px 0 0 0;
    z-index: 49;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(14px);
    padding: 36px 32px;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.member-mobile.is-open { opacity: 1; pointer-events: auto; }
.member-mobile a {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.member-mobile .member-greeting { padding: 16px 4px 4px; font-size: 13px; }
.member-mobile .logout-btn { margin-top: 24px; padding: 14px 20px; font-size: 14px; }

@media (max-width: 880px) {
    .member-header-inner { grid-template-columns: auto auto; }
    .member-nav { display: none; }
    .member-account .member-greeting { display: none; }
    .member-account .logout-btn { display: none; }
    .member-burger { display: inline-flex; }
    .member-mobile { display: flex; }
}

/* ---------- Shared section + eyebrow / heading helpers ---------- */
.ma-section { position: relative; z-index: 2; padding: 120px 0; }
@media (max-width: 880px) { .ma-section { padding: 80px 0; } }

.ma-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--orange);
}
.ma-eyebrow::before, .ma-eyebrow::after {
    content: "";
    width: 26px;
    height: 1px;
    background: rgba(232, 119, 34, 0.55);
}
.ma-divider { width: 60px; height: 1px; background: var(--orange); margin: 0 auto 28px; }
.ma-section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.ma-section-head .ma-eyebrow { margin-bottom: 18px; }
.ma-h1, .ma-h2 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: 0.012em;
    text-transform: uppercase;
    text-wrap: balance;
}
.ma-h1 { font-size: clamp(44px, 6vw, 72px); }
.ma-h2 { font-size: clamp(32px, 4.2vw, 52px); }
.ma-intro {
    margin-top: 22px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
}
.ma-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(232, 119, 34, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.ma-btn:hover, .ma-btn:focus {
    transform: translateY(-1px) scale(1.015);
    background: #f08230;
    box-shadow: 0 0 0 1px rgba(232, 119, 34, 0.45), 0 10px 38px rgba(232, 119, 34, 0.45);
}
.ma-btn .arrow { width: 16px; height: 16px; transition: transform 200ms ease; }
.ma-btn:hover .arrow { transform: translateX(4px); }
.ma-btn .arrow svg { width: 100%; height: 100%; }

/* ---------- Welcome ---------- */
.ma-welcome { padding: 80px 0 64px; text-align: center; }
.ma-welcome .ma-h1 { margin-top: 22px; }
.ma-welcome .ma-intro { margin-top: 26px; }
.ma-progress {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--text-soft);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ma-progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}
.ma-progress-bar > span {
    display: block;
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.ma-progress strong { color: var(--white); font-weight: 500; }

/* ---------- Module grid ---------- */
.ma-modules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.ma-module {
    position: relative;
    background: #111111;
    border: 1px solid var(--orange);
    border-radius: 4px;
    padding: 32px 32px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
    width: 100%;
    font: inherit;
    color: inherit;
}
.ma-module:hover, .ma-module:focus-visible {
    transform: translateY(-3px) scale(1.005);
    border-color: var(--orange);
    background: #131311;
    box-shadow: 0 0 0 1px rgba(232, 119, 34, 0.35), 0 18px 40px rgba(0, 0, 0, 0.5);
    outline: none;
}
.ma-module-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 22px;
}
.ma-module-num {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    color: var(--orange);
    font-size: 22px;
    letter-spacing: 0.14em;
    line-height: 1;
}
.ma-module-dur {
    color: var(--muted);
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
}
.ma-module-num-sep { color: rgba(255, 255, 255, 0.18); margin: 0 6px; }
.ma-module-ico {
    width: 38px;
    height: 38px;
    color: var(--orange);
    margin-bottom: 22px;
}
.ma-module-ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.ma-module h3 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: 26px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 12px;
}
.ma-module-desc {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-wrap: pretty;
}
.ma-module-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
}
.ma-module-action .arrow { width: 14px; height: 14px; transition: transform 200ms ease; }
.ma-module-action .arrow svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ma-module:hover .ma-module-action .arrow { transform: translateX(4px); }
.ma-module.is-complete .ma-module-action { color: var(--orange); }

@media (max-width: 880px) { .ma-modules { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ma-modules { grid-template-columns: 1fr; } }

/* ---------- Downloads ---------- */
.ma-downloads {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
/* Legacy single-card variant — kept as fallback if any old page uses it. */
.ma-downloads-single {
    grid-template-columns: minmax(0, 480px);
    justify-content: center;
}
.ma-download {
    background: #111111;
    border: 1px solid var(--orange);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.ma-download:hover {
    border-color: var(--orange);
    background: #131311;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(232, 119, 34, 0.35), 0 14px 32px rgba(0, 0, 0, 0.45);
}
.ma-download.is-soon { border-color: rgba(255, 255, 255, 0.1); background: #0F0F0F; }
.ma-download.is-soon:hover { border-color: rgba(255, 255, 255, 0.18); transform: none; box-shadow: none; }
.ma-download-ico {
    width: 36px;
    height: 36px;
    color: var(--orange);
    margin-bottom: 18px;
}
.ma-download.is-soon .ma-download-ico { color: rgba(255, 255, 255, 0.25); }
.ma-download-ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.ma-download h3 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}
.ma-download.is-soon h3 { color: rgba(255, 255, 255, 0.45); }
.ma-download p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    text-wrap: pretty;
}
.ma-download.is-soon p { color: rgba(255, 255, 255, 0.35); }
.ma-download-meta {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ma-download-btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--orange);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
    transition: background 200ms ease, transform 200ms ease;
}
.ma-download-btn:hover, .ma-download-btn:focus { background: #f08230; transform: translateY(-1px); }
.ma-download-btn .arrow { width: 12px; height: 12px; }
.ma-download-btn .arrow svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.ma-download-pill {
    margin-top: auto;
    align-self: flex-start;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--muted);
    border-radius: 4px;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1024px) { .ma-downloads { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .ma-downloads { grid-template-columns: 1fr; } }

/* ---------- Partner Program Invitation ---------- */
.ma-partner-banner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background: #131313;
    border: 1px solid var(--orange);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}
.ma-partner-banner h3 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.012em;
    text-transform: uppercase;
    margin-top: 16px;
    text-wrap: balance;
}
.ma-partner-banner p {
    margin-top: 18px;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 48ch;
}
.ma-partner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.ma-partner-right .ma-btn { padding: 18px 26px; font-size: 16px; letter-spacing: 0.14em; }
.ma-partner-micro {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
@media (max-width: 880px) {
    .ma-partner-banner { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
    .ma-partner-right { align-items: stretch; }
    .ma-partner-right .ma-btn { justify-content: center; }
}

/* ---------- Support ---------- */
.ma-support { text-align: center; padding: 80px 0 96px; }
.ma-support h3 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.0;
    letter-spacing: 0.012em;
    text-transform: uppercase;
    margin-top: 18px;
}
.ma-support p {
    margin: 18px auto 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    text-wrap: pretty;
}
.faq-help p {
    width: 100% !important;
    max-width: 100% !important;
}
.ma-support a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 119, 34, 0.4);
    transition: border-color 200ms ease;
}
.ma-support a:hover { border-color: var(--orange); }

/* Support section — embedded CF7 form, dark-theme styling.
   Same defensive specificity pattern as the FAQ contact form. */
.ma-support .ma-support-intro {
    margin: 16px auto 24px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    max-width: 540px;
}
.ma-support .wpcf7,
.ma-support form.wpcf7-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}
.ma-support .wpcf7-form-control-wrap { display: block; width: 100%; }
.ma-support .wpcf7 p {
    margin: 0 0 16px;
    color: var(--text);
}
.ma-support .wpcf7 label {
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white) !important;
    margin: 0 0 8px 0 !important;
    text-align: left !important;
}
.ma-support .wpcf7 input[type="text"],
.ma-support .wpcf7 input[type="email"],
.ma-support .wpcf7 input[type="tel"],
.ma-support .wpcf7 input[type="url"],
.ma-support .wpcf7 select,
.ma-support .wpcf7 textarea {
    width: 100% !important;
    background-color: rgba(255,255,255,0.04) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 4px !important;
    padding: 14px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
    box-shadow: none !important;
}
.ma-support .wpcf7 input::placeholder,
.ma-support .wpcf7 textarea::placeholder {
    color: rgba(216,214,210,0.45) !important;
}
.ma-support .wpcf7 input:focus,
.ma-support .wpcf7 select:focus,
.ma-support .wpcf7 textarea:focus {
    border-color: var(--orange) !important;
    background-color: rgba(255,255,255,0.06) !important;
}
.ma-support .wpcf7 textarea { min-height: 140px; resize: vertical; }
.ma-support .wpcf7 select option { background: #1a1a1a; color: var(--white); }

.ma-support .wpcf7 input[type="submit"],
.ma-support .wpcf7 button[type="submit"] {
    margin-top: 12px;
    padding: 14px 32px !important;
    background: var(--orange) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 4px !important;
    font-family: 'Bebas Neue', 'Oswald', sans-serif !important;
    font-size: 15px !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 28px rgba(232,119,34,0.20), inset 0 1px 0 rgba(255,255,255,0.15);
}
.ma-support .wpcf7 input[type="submit"]:hover,
.ma-support .wpcf7 button[type="submit"]:hover {
    background: #f08230 !important;
    transform: translateY(-1px);
}

.ma-support .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}
.ma-support .wpcf7-spinner { display: inline-block; margin-left: 12px; }

.ma-support .wpcf7 form .wpcf7-response-output {
    margin: 18px auto 0;
    border: 1px solid rgba(57,255,20,0.3);
    background: rgba(57,255,20,0.06);
    color: var(--green);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    max-width: 520px;
}
.ma-support .wpcf7 form.invalid .wpcf7-response-output,
.ma-support .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: rgba(255,107,107,0.3);
    background: rgba(255,107,107,0.06);
    color: #ff6b6b;
}

/* ---------- Coming Soon lightbox ---------- */
.ma-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 220ms ease;
}
.ma-lightbox.is-open { display: flex; opacity: 1; }
.ma-lightbox-panel {
    position: relative;
    background: #111111;
    border: 1px solid var(--orange);
    border-radius: 4px;
    max-width: 480px;
    width: 100%;
    padding: 56px 44px 44px;
    text-align: center;
}
.ma-lightbox-panel.is-video {
    max-width: 960px;
    padding: 16px;
    text-align: left;
}
.ma-lightbox-panel.is-video .ma-lightbox-ico,
.ma-lightbox-panel.is-video .ma-lightbox-eyebrow,
.ma-lightbox-panel.is-video h4,
.ma-lightbox-panel.is-video > p { display: none; }
.ma-lightbox-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}
.ma-lightbox-video iframe,
.ma-lightbox-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.ma-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text);
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color 200ms ease;
    z-index: 2;
}
.ma-lightbox-close:hover, .ma-lightbox-close:focus { color: var(--orange); outline: none; }
.ma-lightbox-ico {
    width: 48px;
    height: 48px;
    color: var(--orange);
    margin: 0 auto 18px;
}
.ma-lightbox-ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }
.ma-lightbox-eyebrow {
    color: var(--orange);
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ma-lightbox h4 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: 26px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ma-lightbox > .ma-lightbox-panel > p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    max-width: 36ch;
    margin: 0 auto;
}
body.ma-lightbox-locked { overflow: hidden; }

/* ---------- Account page (page-account.php) ----------
 * Specificity boosted with `.acct-card` parent scoping + !important on
 * critical layout/background properties to beat Jupiter / WPBakery global
 * form resets that otherwise turn inputs back into narrow white boxes
 * and break the label-above-input stack.
 */
.acct-notices { padding: 24px 0; }
.acct-msg {
    padding: 14px 18px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 10px;
}
.acct-msg-success {
    background: rgba(57, 255, 20, 0.06);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--green);
}
.acct-msg-error {
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.acct-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 44px 44px 36px;
    max-width: 720px;
    margin: 0 auto;
    box-sizing: border-box;
}
.acct-card-head { margin-bottom: 32px; }
.acct-card-head .ma-eyebrow { margin-bottom: 12px; }
.acct-card-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}

.acct-card .acct-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}
.acct-card .acct-field {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 16px;
    width: 100%;
}
.acct-card .acct-field label {
    display: block !important;
    width: 100% !important;
    float: none !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white) !important;
    margin: 0 0 8px 0 !important;
    text-align: left !important;
}
.acct-card .acct-field input[type="text"],
.acct-card .acct-field input[type="email"],
.acct-card .acct-field input[type="password"] {
    width: 100% !important;
    max-width: none !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    background-image: none !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 4px !important;
    padding: 14px 16px !important;
    margin: 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    display: block !important;
    float: none !important;
}
.acct-card .acct-field input[type="text"]:focus,
.acct-card .acct-field input[type="email"]:focus,
.acct-card .acct-field input[type="password"]:focus {
    border-color: var(--orange) !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
}
.acct-card .acct-field input::placeholder {
    color: rgba(216, 214, 210, 0.45) !important;
}
/* Override WebKit autofill yellow / white background */
.acct-card input:-webkit-autofill,
.acct-card input:-webkit-autofill:hover,
.acct-card input:-webkit-autofill:focus,
.acct-card input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: var(--white) !important;
    caret-color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.acct-hint {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    display: block;
}

.acct-actions {
    margin-top: 12px;
    display: flex !important;
    justify-content: flex-end;
}

.ma-btn.ma-btn-sm {
    padding: 12px 28px;
    font-size: 14px;
    letter-spacing: 0.14em;
}

/* Plan section — uses <dl> for semantics, override default browser styling */
.acct-card .acct-plan {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}
.acct-card .acct-plan-row {
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    gap: 16px !important;
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
}
.acct-card .acct-plan-row:last-child { border-bottom: none; }
.acct-card .acct-plan-label {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft) !important;
    margin: 0 !important;
}
.acct-card .acct-plan-value {
    color: var(--white) !important;
    font-size: 15.5px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}
.acct-status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.16);
    flex-shrink: 0;
}

/* Logout button at the bottom */
.acct-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-soft);
    background: transparent;
    text-decoration: none;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.acct-logout-btn:hover, .acct-logout-btn:focus {
    color: var(--white);
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 107, 107, 0.04);
    outline: none;
}

@media (max-width: 640px) {
    .acct-card { padding: 28px 24px; }
    .acct-row { grid-template-columns: 1fr; gap: 0; }
    .acct-plan-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
    .acct-actions { justify-content: stretch; }
    .acct-actions .ma-btn { width: 100%; justify-content: center; }
}

/* ---------- Partner Hub (page-partner-hub.php) ---------- */

.ph-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
}
.ph-card {
    background: #111111;
    border: 1px solid var(--orange);
    border-radius: 4px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.ph-card:hover {
    background: #131311;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(232,119,34,0.4), 0 14px 32px rgba(0,0,0,0.45);
}
.ph-card-ico {
    width: 38px;
    height: 38px;
    color: var(--orange);
    margin-bottom: 22px;
}
.ph-card-ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.ph-card h3 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 12px;
}
.ph-card p {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 22px;
    text-wrap: pretty;
}

.ph-card-cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    background: var(--orange);
    color: #fff;
    border: 0;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    transition: background 200ms ease, transform 200ms ease;
}
.ph-card-cta:hover, .ph-card-cta:focus { background: #f08230; transform: translateY(-1px); }
.ph-card-cta .arrow { width: 12px; height: 12px; }
.ph-card-cta .arrow svg { width: 100%; height: 100%; }

/* Copy-to-clipboard row for the referral link */
.ph-copy-row {
    margin-top: auto;
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.ph-referral-input {
    flex: 1;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 10px 12px;
    font-family: monospace;
    font-size: 12.5px;
    min-width: 0;
    outline: none;
}
.ph-referral-input:focus { border-color: var(--orange); }
.ph-copy-btn {
    padding: 0 16px;
    background: var(--orange);
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    flex-shrink: 0;
    transition: background 200ms ease;
}
.ph-copy-btn:hover, .ph-copy-btn:focus { background: #f08230; }
.ph-copy-btn.is-copied { background: var(--green); color: #0e0e0e; }

/* Quick reference list */
.ph-info {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.ph-info .ma-eyebrow { margin-bottom: 18px; }
.ph-info-list {
    margin: 32px 0 18px;
    padding: 0;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ph-info-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: center;
    margin: 0;
}
.ph-info-row dt {
    font-family: 'Inter', sans-serif;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0;
}
.ph-info-row dd {
    color: var(--white);
    font-size: 15.5px;
    margin: 0;
}
.ph-code {
    background: rgba(232,119,34,0.1);
    border: 1px solid rgba(232,119,34,0.3);
    padding: 5px 12px;
    border-radius: 4px;
    color: var(--orange);
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
}
.ph-info-foot {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13.5px;
    text-align: center;
}
.ph-info-foot a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,119,34,0.4);
    padding-bottom: 1px;
}
.ph-info-foot a:hover { border-color: var(--orange); }

/* Guidelines footer note */
.ph-guidelines {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-soft);
}
.ph-guidelines p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 14px;
}
.ph-guidelines strong { color: var(--white); }
.ph-guidelines-cta a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,119,34,0.4);
    padding-bottom: 1px;
    transition: border-color 0.2s ease;
}
.ph-guidelines-cta a:hover { border-color: var(--orange); }

@media (max-width: 880px) {
    .ph-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .ph-cards { grid-template-columns: 1fr; }
    .ph-info-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 4px; }
    .ph-copy-row { flex-direction: column; }
    .ph-copy-btn { padding: 12px 16px; }
}

/* ---------- Playlist video player (page-members.php) ---------- */

.lp-empty {
    text-align: center;
    color: var(--text);
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 48px 24px;
}

.lp {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
    align-items: start;
}

/* Player column */
.lp-video-wrap {
    position: relative;
    background: #000;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;
    overflow: hidden;
}
.lp-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.lp-embed {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}
.lp-video[hidden],
.lp-embed[hidden] {
    display: none;
}
.lp-video-soon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 15px;
    letter-spacing: 0.02em;
    pointer-events: none;
}

.lp-now {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.lp-now-section {
    display: inline-block;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.lp-now-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0;
}
.lp-now-desc {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 10px 0 0;
    max-width: 60ch;
}

.lp-complete {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.20);
    background: transparent;
    color: var(--text);
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
    white-space: nowrap;
}
.lp-complete:hover { border-color: var(--white); color: var(--white); }
.lp-complete-ico { width: 16px; height: 16px; display: inline-flex; }
.lp-complete-ico svg { width: 100%; height: 100%; }
.lp-complete.is-done {
    background: rgba(57,255,20,0.10);
    border-color: rgba(57,255,20,0.45);
    color: var(--green);
}

/* Playlist column */
.lp-list {
    max-height: 620px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    -webkit-overflow-scrolling: touch;
}
.lp-list::-webkit-scrollbar { width: 9px; }
.lp-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 5px; }

.lp-group + .lp-group { border-top: 1px solid rgba(255,255,255,0.08); }
.lp-group-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 0;
    cursor: pointer;
    color: var(--white);
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: left;
}
.lp-group-name { flex: 1 1 auto; }
.lp-group-count {
    color: var(--text-soft);
    font-size: 12px;
    letter-spacing: 0.1em;
}
.lp-group-chev { width: 16px; height: 16px; color: var(--text-soft); transition: transform .2s ease; }
.lp-group-chev svg { width: 100%; height: 100%; }
.lp-group.is-collapsed .lp-group-chev { transform: rotate(-90deg); }
.lp-group.is-collapsed .lp-group-items { display: none; }

.lp-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    text-align: left;
    transition: background .15s ease;
}
.lp-item:hover { background: rgba(255,255,255,0.04); }
.lp-item.is-active { background: rgba(232,119,34,0.12); }
.lp-item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--orange);
}
.lp-item { position: relative; }
.lp-item.is-soon { cursor: default; opacity: 0.6; }

.lp-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 56px;
    border-radius: 4px;
    background: #1a1a1a center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.lp-thumb-state {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    color: #fff;
}
.lp-thumb-state svg { width: 20px; height: 20px; }
.lp-ic-done { display: none; }
.lp-item.is-done .lp-thumb-state { background: rgba(57,255,20,0.22); color: var(--green); }
.lp-item.is-done .lp-ic-play { display: none; }
.lp-item.is-done .lp-ic-done { display: block; }
.lp-item.is-active .lp-thumb-state { background: rgba(232,119,34,0.30); color: #fff; }

.lp-item-meta { min-width: 0; flex: 1 1 auto; }
.lp-item-title {
    display: block;
    color: var(--white);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.lp-item.is-active .lp-item-title { color: var(--orange); }
.lp-item-sub {
    display: block;
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 12px;
    letter-spacing: 0.04em;
}
.lp-item-num::before { content: "#"; opacity: 0.6; }
.lp-item-sep { margin: 0 6px; }
.lp-item-soon { color: var(--orange); }

@media (max-width: 1024px) {
    .lp { grid-template-columns: 1fr; }
    .lp-list { max-height: 460px; }
}
@media (max-width: 600px) {
    .lp-now { flex-direction: column; }
    .lp-thumb { flex-basis: 76px; width: 76px; height: 46px; }
}

/* ---------- Member testimonial form (page-members.php) ---------- */

.mt-form-wrap {
    max-width: 720px;
    margin: 0 auto;
}
.mt-msg {
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 22px;
}
.mt-msg-ok {
    background: rgba(57,255,20,0.08);
    border: 1px solid rgba(57,255,20,0.32);
    color: var(--green);
}
.mt-msg-err {
    background: rgba(255,107,107,0.08);
    border: 1px solid rgba(255,107,107,0.30);
    color: #ff8a8a;
}
.mt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.mt-field { margin-bottom: 18px; }
.mt-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.mt-form input[type="text"],
.mt-form textarea,
.mt-form select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    padding: 13px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s ease, background .2s ease;
}
.mt-form textarea { resize: vertical; min-height: 120px; }
.mt-form input[type="text"]::placeholder,
.mt-form textarea::placeholder { color: rgba(216,214,210,0.4); }
.mt-form input[type="text"]:focus,
.mt-form textarea:focus,
.mt-form select:focus {
    border-color: var(--orange);
    background: rgba(255,255,255,0.06);
}
.mt-rating-field { max-width: 220px; }
.mt-form select { cursor: pointer; }
.mt-note {
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 12.5px;
}

@media (max-width: 600px) {
    .mt-row { grid-template-columns: 1fr; }
}

/* ---------- Partner Dashboard v2 (PHP fallback redesign) ---------- */

/* Action card refinements (used alongside .ph-card) */
.ph-card.ph-card-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    height: 100%;
}
.ph-card.ph-card-action .ph-card-ico { align-self: flex-start; }
.ph-card.ph-card-action h3 { margin: 0; }
.ph-card.ph-card-action p { margin: 0; }
.ph-card.ph-card-action .ph-copy-row,
.ph-card.ph-card-action .ph-card-cta { margin-top: auto; }
.ph-card.ph-card-action .ph-card-cta { align-self: flex-start; }
.ph-card.ph-card-action .ph-copy-row {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.ph-card.ph-card-action .ph-copy-row .ph-referral-input {
    flex: 1 1 auto;
    min-width: 0;
}
.ph-discount-input {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
/* Grid section: ensure all cards stretch to equal height */
.ph-cards { align-items: stretch; }

/* Quick-reference compact strip */
.ph-quickref-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}
.ph-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.ph-qr-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange, #FF7A1A);
    font-weight: 600;
}
.ph-qr-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    line-height: 1;
    color: var(--text, #F3F1ED);
    letter-spacing: 1px;
}
.ph-qr-item-link a {
    color: var(--text-soft, rgba(216,214,210,0.7));
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 2px;
    transition: color .2s ease, border-color .2s ease;
}
.ph-qr-item-link a:hover {
    color: var(--orange, #FF7A1A);
    border-color: var(--orange, #FF7A1A);
}
@media (max-width: 720px) {
    .ph-quickref-strip { gap: 28px; padding: 22px 20px; }
    .ph-qr-value { font-size: 26px; }
}

/* Promo snippets */
.ph-promos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 8px;
}
.ph-promo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 28px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    transition: border-color .2s ease, background .2s ease;
}
.ph-promo:hover {
    border-color: rgba(255,122,26,0.4);
    background: rgba(255,255,255,0.05);
}
.ph-promo-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange, #FF7A1A);
    font-weight: 600;
}
.ph-promo-text {
    margin: 0;
    color: var(--text, #F3F1ED);
    font-size: 14.5px;
    line-height: 1.65;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.ph-promo-copy {
    margin-top: auto;
    align-self: stretch;
    padding: 14px 24px !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;
    border-radius: 12px !important;
    text-align: center;
    justify-content: center;
}
.ph-promo-foot {
    margin: 28px auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 13px;
    color: var(--text-soft, rgba(216,214,210,0.6));
}
@media (max-width: 980px) {
    .ph-promos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .ph-promos { grid-template-columns: 1fr; }
}

/* Copy button — copied state */
.ph-copy-btn.is-copied,
.ph-promo-copy.is-copied {
    background: rgba(255,122,26,0.18);
    border-color: var(--orange, #FF7A1A);
    color: var(--orange, #FF7A1A);
}

/* Guidelines + Contact footer */
.ph-guidelines-contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.ph-guidelines-contact p {
    margin: 0;
    color: var(--text-soft, rgba(216,214,210,0.7));
    font-size: 14.5px;
}
.ph-guidelines-contact .ph-card-cta { margin-top: 4px; }
