:root {
    --navy-950: #030914;
    --navy-900: #07111f;
    --navy-850: #0a1627;
    --navy-800: #0d1b2e;
    --navy-700: #16304e;
    --blue-500: #2f6ca8;
    --red-600: #bd1721;
    --red-500: #df2632;
    --red-400: #ff4652;
    --gold-500: #c9a35d;
    --cream: #f4f0e8;
    --paper: #f8f7f3;
    --white: #ffffff;
    --ink: #111827;
    --muted: #667085;
    --line: rgba(13, 27, 46, .14);
    --shadow: 0 28px 80px rgba(3, 9, 20, .18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--navy-950);
    color: var(--white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--red-500); color: var(--white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
}
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(3, 9, 20, .84);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
    background: rgba(3, 9, 20, .96);
    box-shadow: 0 18px 45px rgba(0,0,0,.26);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}
.brand img { width: 182px; height: auto; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255,255,255,.78);
    font-size: .94rem;
    font-weight: 600;
}
.main-nav > a:not(.button) { transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--white); }
.nav-account { color: var(--white) !important; }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 18px; font-size: .9rem; }
.button-large { min-height: 56px; padding-inline: 30px; }
.button-full { width: 100%; }
.button-primary {
    background: linear-gradient(135deg, var(--red-500), #a80813);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(223, 38, 50, .24);
}
.button-primary:hover { box-shadow: 0 18px 40px rgba(223, 38, 50, .34); }
.button-ghost {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.035);
    color: var(--white);
}
.button-ghost:hover { border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.08); }
.button-dark { background: var(--navy-900); color: var(--white); }
.button-light { background: var(--white); color: var(--navy-900); box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.button-youtube { background: #ff0033; color: var(--white); }
.button-danger { background: #a60f1b; color: var(--white); border-radius: 12px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ff6a73;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .18em;
}
.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
}
.eyebrow-dark { color: var(--red-600); }

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 75% 24%, rgba(47, 108, 168, .22), transparent 31%),
        linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 54%, #0c1c31 100%);
}
.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -170px;
    bottom: -210px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.015);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(330px, .76fr);
    align-items: center;
    gap: 80px;
    min-height: 720px;
    padding-block: 90px;
}
.hero h1,
.page-hero h1,
.member-hero h1,
.auth-panel h1,
.exclusive-article h1,
.legal-page h1,
.admin-shell h1 {
    margin: 0;
    font-family: "Libre Franklin", Inter, sans-serif;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.052em;
}
.hero h1 { max-width: 840px; font-size: clamp(3.2rem, 5.9vw, 6rem); }
.hero-lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.73);
    font-size: clamp(1.08rem, 1.65vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 28px;
    color: rgba(255,255,255,.54);
    font-size: .85rem;
}
.trust-line span { position: relative; padding-left: 18px; }
.trust-line span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-400);
}
.membership-highlight {
    position: relative;
    padding: 36px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
    box-shadow: 0 40px 90px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}
.membership-highlight::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    background: linear-gradient(var(--red-400), var(--red-600));
}
.card-kicker {
    display: block;
    color: #ff6f78;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.membership-highlight h2 {
    margin: 16px 0 22px;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -.035em;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 31px; margin: 14px 0; color: rgba(255,255,255,.72); }
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(223,38,50,.18);
    color: #ff7a82;
    font-size: .75rem;
    font-weight: 900;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--white);
    font-weight: 800;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.dark-link { color: var(--navy-900); }

.section { padding: 108px 0; }
.section-light { background: var(--paper); color: var(--ink); }
.split-intro {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
}
.split-intro h2,
.section-heading-row h2,
.exclusive-preview h2,
.final-cta h2,
.checkout-copy h2,
.members-content h2 {
    margin: 0;
    font-family: "Libre Franklin", Inter, sans-serif;
    font-size: clamp(2.2rem, 4.1vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.split-intro > p {
    margin: 0 0 5px;
    color: #526071;
    font-size: 1.08rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 58px;
}
.value-card {
    min-height: 310px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(13,27,46,.05);
}
.value-number {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef2f7;
    color: var(--red-600);
    font-weight: 800;
}
.value-card h3 { margin: 54px 0 12px; font-size: 1.35rem; letter-spacing: -.02em; }
.value-card p { margin: 0; color: var(--muted); }

.videos-section {
    background:
        radial-gradient(circle at 0 0, rgba(223,38,50,.12), transparent 26%),
        var(--navy-900);
}
.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}
.section-heading-row p { margin: 14px 0 0; color: rgba(255,255,255,.58); }
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.video-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.035);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.055); }
.video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0d1727;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.video-card:hover .video-thumb img { transform: scale(1.035); }
.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,9,20,.5), transparent 55%);
}
.play-button {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(223,38,50,.94);
    box-shadow: 0 12px 25px rgba(0,0,0,.3);
}
.play-button::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 13px;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.video-body { padding: 22px; }
.video-date { color: #ff727b; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.video-body h3 { margin: 10px 0 0; font-size: 1.02rem; line-height: 1.38; letter-spacing: -.02em; }
.video-body h3 a:hover { text-decoration: underline; text-decoration-color: var(--red-500); text-underline-offset: 4px; }
.empty-state {
    grid-column: 1 / -1;
    padding: 60px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    text-align: center;
    background: rgba(255,255,255,.035);
}
.empty-state h3 { margin-top: 0; font-size: 1.6rem; }
.empty-state p { color: rgba(255,255,255,.6); }

.exclusive-preview {
    position: relative;
    overflow: hidden;
    background: #0b1626;
}
.exclusive-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.08) 40%, rgba(255,255,255,.08) 41%, transparent 41%);
    background-size: 40px 40px;
}
.exclusive-grid {
    position: relative;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 90px;
    align-items: center;
}
.exclusive-preview p { max-width: 610px; color: rgba(255,255,255,.65); font-size: 1.07rem; }
.exclusive-stack { display: grid; gap: 16px; }
.exclusive-stack article {
    padding: 28px 30px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.045);
}
.exclusive-stack article > span { color: #ff6b75; font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.exclusive-stack h3 { margin: 10px 0 5px; font-size: 1.25rem; }
.exclusive-stack p { margin: 0; font-size: .94rem; }

.final-cta {
    padding: 78px 0;
    background: linear-gradient(120deg, #b3101b, #e42b37);
}
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 850px; font-size: clamp(2rem, 3.6vw, 3.7rem); }
.final-cta .eyebrow { color: rgba(255,255,255,.75); }

.site-footer {
    padding: 76px 0 26px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: var(--navy-950);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .8fr .8fr;
    gap: 80px;
}
.footer-grid img { width: 175px; height: auto; }
.footer-grid p { max-width: 430px; color: rgba(255,255,255,.5); }
.footer-grid h2 { margin: 0 0 18px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.footer-grid a { display: block; margin: 10px 0; color: rgba(255,255,255,.52); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.36);
    font-size: .82rem;
}

.alert {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
}
.alert-success { background: #dff7e8; color: #17592f; }
.alert-error { background: #ffe3e5; color: #84202a; }

.page-hero {
    padding: 110px 0 86px;
    background:
        radial-gradient(circle at 70% 0, rgba(47,108,168,.22), transparent 35%),
        var(--navy-900);
}
.compact-page-hero { padding-top: 92px; }
.narrow-heading { max-width: 850px; text-align: center; }
.page-hero h1 { font-size: clamp(2.8rem, 5.5vw, 5.3rem); }
.page-hero p { max-width: 760px; margin: 25px auto 0; color: rgba(255,255,255,.65); font-size: 1.12rem; }

.subscription-section { padding-top: 72px; }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 45px rgba(13,27,46,.06);
}
.plan-featured {
    border: 2px solid var(--red-500);
    box-shadow: 0 24px 64px rgba(189,23,33,.16);
    transform: translateY(-10px);
}
.plan-badge {
    position: absolute;
    top: 0;
    right: 26px;
    transform: translateY(-50%);
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--red-500);
    color: var(--white);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
}
.plan-card h2 { margin: 6px 0 12px; font-size: 1.65rem; }
.plan-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 18px; }
.plan-price strong { font-size: 2.5rem; letter-spacing: -.05em; }
.plan-price span { color: var(--muted); }
.plan-card > p { color: var(--muted); }
.dark-list { margin: 14px 0 28px; }
.dark-list li { color: #4a5565; }
.dark-list li::before { color: var(--red-600); background: #fde8ea; }
.plan-card .button { margin-top: auto; }
.checkout-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 72px;
    align-items: start;
    margin-top: 96px;
    padding-top: 76px;
    border-top: 1px solid var(--line);
}
.checkout-copy h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.checkout-copy > p { color: var(--muted); font-size: 1.05rem; }
.security-note {
    display: grid;
    gap: 4px;
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid var(--red-500);
    background: #eef2f6;
}
.security-note span { color: var(--muted); font-size: .9rem; }
.checkout-form,
.auth-form,
.admin-editor {
    display: grid;
    gap: 20px;
}
.checkout-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
}
label { display: grid; gap: 8px; font-size: .9rem; font-weight: 700; color: #344054; }
input, select, textarea {
    width: 100%;
    border: 1px solid #cfd6df;
    border-radius: 11px;
    background: var(--white);
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
input, select { min-height: 49px; padding: 0 14px; }
textarea { padding: 13px 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(47,108,168,.12); }
label small { color: var(--muted); font-weight: 400; }
.checkbox-label { display: flex; align-items: flex-start; gap: 11px; font-weight: 500; line-height: 1.45; }
.checkbox-label input { flex: 0 0 auto; width: 18px; min-height: 18px; height: 18px; margin-top: 2px; }
.checkbox-label a { color: var(--red-600); text-decoration: underline; }
.form-errors { padding: 16px 18px; border-radius: 11px; background: #ffe8ea; color: #85222b; font-size: .9rem; }
.form-errors ul { margin: 7px 0 0; padding-left: 20px; }
.form-footnote { margin: -5px 0 0; text-align: center; color: var(--muted); font-size: .8rem; }

.auth-section {
    display: grid;
    place-items: center;
    min-height: 720px;
    padding: 90px 20px;
    background:
        radial-gradient(circle at 50% 0, rgba(47,108,168,.2), transparent 34%),
        var(--navy-900);
}
.auth-panel {
    width: min(100%, 540px);
    padding: 42px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.065);
    box-shadow: 0 35px 90px rgba(0,0,0,.3);
    backdrop-filter: blur(18px);
}
.auth-panel h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.auth-panel > p { color: rgba(255,255,255,.62); }
.auth-form { margin-top: 28px; }
.auth-form label { color: rgba(255,255,255,.75); }
.auth-switch { margin-top: 24px !important; text-align: center; font-size: .92rem; }
.auth-switch a { color: #ff717b; font-weight: 700; }
.success-panel { text-align: center; }
.success-icon { width: 76px; height: 76px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: #dff7e8; color: #176b35; font-size: 2.2rem; font-weight: 900; }
.centered-actions { justify-content: center; }

.member-hero {
    padding: 92px 0 76px;
    background:
        radial-gradient(circle at 80% 10%, rgba(47,108,168,.22), transparent 30%),
        var(--navy-900);
}
.member-hero-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; }
.member-hero h1 { font-size: clamp(2.7rem, 5vw, 5rem); }
.member-hero p { max-width: 720px; color: rgba(255,255,255,.62); font-size: 1.08rem; }
.member-status-card {
    min-width: 250px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.06);
}
.member-status-card span { display: block; color: rgba(255,255,255,.5); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.member-status-card strong { display: block; margin-top: 7px; font-size: 1.55rem; }
.member-status-card small { display: block; margin-top: 5px; color: #79d59e; }
.text-button { padding: 0; margin-top: 16px; border: 0; background: none; color: #ff747d; font-weight: 700; }
.dark-heading { color: var(--ink); }
.dark-heading p { color: var(--muted); }
.members-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member-content-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 14px 42px rgba(13,27,46,.06);
}
.member-card-media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-900); }
.member-card-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.editorial-placeholder span { font-family: "Libre Franklin", sans-serif; font-size: 3.5rem; font-weight: 800; color: rgba(255,255,255,.16); }
.member-card-body { padding: 24px; }
.member-card-body > span { color: var(--red-600); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.member-card-body h3 { margin: 9px 0; font-size: 1.25rem; line-height: 1.28; }
.member-card-body p { color: var(--muted); }
.locked-card { opacity: .78; }
.lock-badge { position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(3,9,20,.88); color: var(--white); font-size: .72rem; font-weight: 700; }
.locked-copy { color: #8b6570 !important; font-size: .86rem; }
.light-empty-state { color: var(--ink); background: var(--white); border-color: var(--line); }
.light-empty-state p { color: var(--muted); }

.site-dialog {
    width: min(calc(100% - 30px), 520px);
    padding: 32px;
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.site-dialog::backdrop { background: rgba(3,9,20,.78); backdrop-filter: blur(5px); }
.site-dialog h2 { margin-top: 0; font-size: 1.65rem; }
.site-dialog p { color: var(--muted); }
.dialog-close-row { display: flex; justify-content: flex-end; }
.dialog-close-row button { width: 36px; height: 36px; border: 0; border-radius: 50%; background: #eef1f5; font-size: 1.4rem; }
.dialog-help { font-size: .85rem; }
.dialog-help a { color: var(--red-600); }

.exclusive-article-header { padding: 92px 0 62px; background: var(--navy-900); }
.article-container { max-width: 900px; }
.back-link { display: inline-block; margin-bottom: 40px; color: rgba(255,255,255,.57); }
.exclusive-article h1 { font-size: clamp(2.7rem, 5.3vw, 5.2rem); }
.article-excerpt { max-width: 780px; color: rgba(255,255,255,.65); font-size: 1.14rem; }
.article-date { display: block; margin-top: 22px; color: #ff727b; font-size: .8rem; font-weight: 700; }
.article-body { padding-top: 64px; padding-bottom: 100px; color: var(--ink); }
.exclusive-article { background: var(--paper); }
.video-embed { position: relative; aspect-ratio: 16 / 9; margin-bottom: 48px; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.rich-text { font-size: 1.08rem; line-height: 1.84; color: #2c3746; }
.rich-text h2, .rich-text h3 { color: var(--ink); line-height: 1.25; letter-spacing: -.03em; }
.rich-text h2 { margin-top: 2.4em; font-size: 1.7rem; }
.rich-text a { color: var(--red-600); text-decoration: underline; }

.legal-page { padding: 110px 0; background: var(--paper); color: var(--ink); }
.legal-page h1 { font-size: clamp(2.8rem, 5.5vw, 5.1rem); }
.legal-updated { color: var(--muted); }
.legal-copy { margin-top: 50px; }

.admin-shell { min-height: 800px; padding: 84px 0 110px; background: #0a1423; }
.admin-topbar { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.admin-shell h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.admin-actions { display: flex; gap: 12px; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.admin-stats article { padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.admin-stats span { display: block; color: rgba(255,255,255,.5); font-size: .83rem; }
.admin-stats strong { display: block; margin-top: 10px; font-size: 2.35rem; }
.admin-section-card { margin-top: 28px; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.admin-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-section-heading h2 { margin: 0 0 18px; }
.admin-section-heading a { color: #ff737d; font-weight: 700; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th, .admin-table td { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; font-size: .88rem; }
.admin-table th { color: rgba(255,255,255,.46); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.admin-table td { color: rgba(255,255,255,.8); }
.admin-table a { color: #ff7079; font-weight: 700; }
.status-pill { display: inline-flex; padding: 5px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.status-active { background: rgba(54,179,126,.18); color: #7ce2ac; }
.status-pending { background: rgba(247,183,49,.14); color: #ffd177; }
.status-cancelled, .status-paused { background: rgba(223,38,50,.16); color: #ff8790; }
.admin-editor { grid-template-columns: 1fr 340px; align-items: start; margin-top: 46px; }
.editor-main, .editor-side { display: grid; gap: 20px; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.admin-editor label { color: rgba(255,255,255,.68); }
.editor-side { position: sticky; top: 105px; }

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; gap: 45px; padding-block: 90px; }
    .hero { min-height: auto; }
    .hero-grid { min-height: auto; }
    .membership-highlight { max-width: 760px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .exclusive-grid { gap: 50px; }
    .checkout-grid { gap: 44px; }
    .members-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 16px;
        background: rgba(3,9,20,.98);
        box-shadow: 0 25px 60px rgba(0,0,0,.35);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 12px 10px; }
    .split-intro, .exclusive-grid, .checkout-grid, .member-hero-grid { grid-template-columns: 1fr; }
    .values-grid, .plans-grid { grid-template-columns: 1fr; }
    .plan-featured { transform: none; }
    .section-heading-row, .final-cta-inner, .admin-topbar { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .checkout-copy { max-width: 680px; }
    .member-status-card { width: 100%; }
    .admin-editor { grid-template-columns: 1fr; }
    .editor-side { position: static; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 72px; }
    .brand img { width: 155px; }
    .main-nav { top: 72px; left: 14px; right: 14px; }
    .hero-grid { padding-block: 72px; }
    .hero h1 { font-size: clamp(2.65rem, 13.5vw, 4.2rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions .button { width: 100%; }
    .membership-highlight { padding: 28px 24px; }
    .section { padding: 78px 0; }
    .split-intro h2, .section-heading-row h2, .exclusive-preview h2, .final-cta h2, .checkout-copy h2, .members-content h2 { font-size: clamp(2rem, 9vw, 3rem); }
    .values-grid, .video-grid, .members-grid { grid-template-columns: 1fr; }
    .value-card { min-height: 260px; }
    .section-heading-row .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .page-hero { padding: 82px 0 64px; }
    .page-hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
    .plan-card { min-height: auto; }
    .checkout-grid { margin-top: 68px; padding-top: 56px; }
    .checkout-form, .auth-panel { padding: 26px 22px; }
    .auth-section { min-height: 650px; padding-block: 65px; }
    .member-hero { padding: 72px 0 58px; }
    .exclusive-article-header { padding: 70px 0 48px; }
    .article-body { padding-top: 44px; padding-bottom: 72px; }
    .site-dialog { padding: 24px; }
    .admin-stats { grid-template-columns: 1fr; }
    .admin-actions { width: 100%; flex-direction: column; }
    .admin-actions .button { width: 100%; }
    .admin-section-card { padding: 20px 14px; }
}
