@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Sora:wght@400;600;700&display=swap');

:root {
    --bg-deep: #0b1b2b;
    --bg-mid: #152c42;
    --bg-soft: #f7f2ea;
    --accent: #ff6b35;
    --accent-2: #2bbf8a;
    --accent-3: #f4b860;
    --text-dark: #0b1b2b;
    --text-light: #f7f3ec;
    --card-bg: rgba(255, 255, 255, 0.92);
    --card-dark: rgba(13, 30, 45, 0.85);
    --border: rgba(16, 31, 46, 0.12);
    --shadow: 0 18px 40px rgba(9, 17, 32, 0.18);
    --radius: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 107, 53, 0.2), transparent 38%),
        radial-gradient(circle at 80% 10%, rgba(43, 191, 138, 0.15), transparent 40%),
        linear-gradient(180deg, #f7f2ea 0%, #f2e7d8 45%, #f7f2ea 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
    opacity: 0.6;
}

h1, h2, h3, h4 {
    font-family: "Fraunces", "Times New Roman", serif;
    margin: 0 0 0.6rem 0;
    color: var(--bg-deep);
}

p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(247, 242, 234, 0.9);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.logo-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg-deep);
    color: var(--text-light);
    font-weight: 700;
}

.logo-text {
    letter-spacing: 0.4px;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-weight: 500;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 107, 53, 0.35);
}

.btn.ghost {
    background: transparent;
    color: var(--bg-deep);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn.outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: none;
}

.site-main {
    padding-bottom: 3rem;
}

.hero {
    padding: 5rem 0 3rem;
}

.hero-alt {
    padding-top: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-grid.compact {
    gap: 2rem;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.hero-copy p {
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.hero-meta strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.tag {
    display: inline-flex;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.hero-panel {
    display: grid;
    gap: 1.2rem;
}

.panel-card {
    background: var(--card-bg);
    padding: 1.6rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-image-card {
    position: relative;
    overflow: visible;
    padding: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-image-card::after {
    content: "";
    position: absolute;
    inset: auto 8% 6% 8%;
    height: 62%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(11, 27, 43, 0.12), rgba(11, 27, 43, 0));
    filter: blur(12px);
    z-index: -1;
}

.hero-image-blend {
    position: relative;
    z-index: 0;
    display: block;
    width: min(100%, 430px);
    max-height: 380px;
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0.88;
    filter: saturate(0.95) contrast(1.03) drop-shadow(0 14px 26px rgba(7, 15, 29, 0.2));
}

.panel-card.accent {
    background: linear-gradient(135deg, rgba(11, 27, 43, 0.95), rgba(21, 44, 66, 0.95));
    color: var(--text-light);
}

.panel-card.accent h4 {
    color: var(--text-light);
}

.panel-stats {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0;
}

.panel-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 500;
}

.section {
    padding: 3.5rem 0;
}

.section.highlight {
    background: rgba(11, 27, 43, 0.06);
    border-top: 1px solid rgba(11, 27, 43, 0.08);
    border-bottom: 1px solid rgba(11, 27, 43, 0.08);
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.section-head.split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cards-grid,
.steps-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qa-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
}

.qa-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    color: var(--bg-deep);
}

.qa-item summary::-webkit-details-marker {
    display: none;
}

.qa-item summary::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.qa-item[open] summary::after {
    content: "-";
}

.qa-answer {
    margin-top: 0.75rem;
    color: rgba(11, 27, 43, 0.75);
    line-height: 1.6;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
}

.sponsored-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.banner-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.1rem;
}

.banner-slot-link {
    display: inline-flex;
    width: 728px;
    height: 90px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e6eaf0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.banner-slot-image {
    width: 728px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}


@media (max-width: 780px) {
    .banner-slot-link {
        width: min(100%, 728px);
        height: auto;
        padding: 0.3rem;
    }
    .banner-slot-image {
        width: 100%;
        height: auto;
    }
}

.sponsored-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: linear-gradient(135deg, rgba(11, 27, 43, 0.06), rgba(255, 107, 53, 0.08));
}

.sponsored-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    font-size: 0.88rem;
    color: rgba(11, 27, 43, 0.72);
}

.wall-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wall-card .wall-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    align-self: center;
}

.wall-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.offerwall-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.35rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.offerwall-marquee-track {
    --logo-count: 3;
    --logo-w: 220px;
    --logo-gap: 1rem;
    display: flex;
    align-items: center;
    width: max-content;
    animation: offerwallSlide 20s linear infinite;
}

.offerwall-logo-pill {
    width: var(--logo-w);
    height: 92px;
    margin-right: var(--logo-gap);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
}

.offerwall-logo-pill img {
    max-width: 78%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.offerwall-marquee:hover .offerwall-marquee-track {
    animation-play-state: paused;
}

@keyframes offerwallSlide {
    to {
        transform: translateX(calc(-1 * var(--logo-count) * (var(--logo-w) + var(--logo-gap))));
    }
}

@media (prefers-reduced-motion: reduce) {
    .offerwall-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .offerwall-marquee-track {
        animation: none;
    }
}

.step-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent-3);
    color: var(--bg-deep);
    font-weight: 700;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(43, 191, 138, 0.16);
    color: var(--bg-deep);
    font-weight: 600;
}

.pill.muted {
    background: rgba(11, 27, 43, 0.08);
    color: rgba(11, 27, 43, 0.7);
}

.pill.success {
    background: rgba(43, 191, 138, 0.2);
}

.pill.warning {
    background: rgba(244, 184, 96, 0.25);
}

.stats-grid .stat-card {
    text-align: left;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(11, 27, 43, 0.7);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.stat-sub {
    font-size: 0.9rem;
    color: rgba(11, 27, 43, 0.6);
}

.cta-panel,
.split-callout,
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.settings-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.settings-tab-btn {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--bg-deep);
    font-family: inherit;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.settings-tab-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
}

.settings-tab-btn.is-active {
    background: var(--bg-deep);
    color: var(--text-light);
    border-color: var(--bg-deep);
}

.settings-panel + .settings-panel {
    margin-top: 1rem;
}

body.account-dashboard .site-main {
    padding-top: 0.4rem;
}

body.account-dashboard .section {
    padding: 2.9rem 0;
}

body.account-dashboard .section.highlight {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.2)),
        rgba(11, 27, 43, 0.05);
}

body.account-dashboard .account-summary {
    background:
        radial-gradient(circle at 8% 14%, rgba(255, 107, 53, 0.13), transparent 34%),
        linear-gradient(138deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
    border: 1px solid rgba(11, 27, 43, 0.16);
    display: grid;
    gap: 1.25rem;
}

body.account-dashboard .account-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

body.account-dashboard .account-summary-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 27, 43, 0.05), rgba(11, 27, 43, 0.22), rgba(11, 27, 43, 0.05));
}

body.account-dashboard .account-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.account-dashboard .account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--bg-deep), var(--bg-mid));
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(9, 17, 32, 0.25);
}

body.account-dashboard .account-membership-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.7rem;
    align-items: center;
}

body.account-dashboard .account-membership-row .small {
    margin-bottom: 0;
}

body.account-dashboard .account-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
}

body.account-dashboard .account-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.56rem 0.95rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(11, 27, 43, 0.16);
    background: rgba(255, 255, 255, 0.7);
    color: var(--bg-deep);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

body.account-dashboard .account-action-link:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 27, 43, 0.32);
    background: rgba(255, 255, 255, 0.96);
}

body.account-dashboard .account-kpis {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

body.account-dashboard .account-kpis .stat-card {
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
        var(--card-bg);
    border-radius: 14px;
    border: 1px solid rgba(11, 27, 43, 0.12);
    padding: 1rem 1.1rem;
    position: relative;
    overflow: hidden;
}

body.account-dashboard .account-kpis .stat-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0.65;
}

body.account-dashboard .account-kpis .stat-value {
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

body.account-dashboard .settings-tabs[data-account-tabs] {
    position: sticky;
    top: 78px;
    z-index: 5;
    padding: 0.7rem;
    margin-bottom: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(11, 27, 43, 0.12);
    background: rgba(247, 242, 234, 0.88);
    backdrop-filter: blur(10px);
}

body.account-dashboard .settings-tabs[data-account-tabs] .settings-tab-btn {
    padding: 0.58rem 1.05rem;
    border-color: rgba(11, 27, 43, 0.18);
}

body.account-dashboard .settings-panel[data-account-panel] {
    border-radius: var(--radius);
    border: 1px solid rgba(11, 27, 43, 0.14);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
    animation: accountPanelIn 0.22s ease;
}

body.account-dashboard .settings-panel[data-account-panel][hidden] {
    display: none !important;
}

body.account-dashboard .settings-panel[data-account-panel] .card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 27, 43, 0.1);
    box-shadow: 0 12px 24px rgba(9, 17, 32, 0.1);
}

body.account-dashboard .settings-panel[data-account-panel] .table-card {
    background: rgba(255, 255, 255, 0.96);
}

body.account-dashboard .quick-actions-card .cta-actions .btn {
    min-width: 165px;
}

body.account-dashboard .attention-list-card .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
}

body.account-dashboard .attention-card {
    border-left: 4px solid var(--accent-2);
}

body.account-dashboard .chart-card svg {
    border: 1px solid rgba(11, 27, 43, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
}

body.account-dashboard .activity-card tbody td:first-child {
    font-weight: 600;
}

body.account-dashboard .activity-card tbody td:nth-child(3) {
    font-weight: 600;
    color: rgba(11, 27, 43, 0.8);
}

@keyframes accountPanelIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.list {
    padding-left: 1.2rem;
    margin: 0;
}

.list li {
    margin-bottom: 0.5rem;
}

.form-wrap {
    display: flex;
    justify-content: center;
}

.form-card {
    width: min(520px, 94vw);
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-card.wide {
    width: min(680px, 94vw);
}

label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

input,
select,
textarea {
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: inherit;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.notice {
    background: rgba(244, 184, 96, 0.2);
    padding: 0.7rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.alert {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert-error {
    background: rgba(255, 107, 53, 0.2);
}

.alert-success {
    background: rgba(43, 191, 138, 0.2);
}

.small {
    font-size: 0.9rem;
    color: rgba(11, 27, 43, 0.7);
}

.copy-box {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.copy-box input {
    flex: 1;
    min-width: 220px;
}

.stats-inline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-weight: 600;
}

.table-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

th,
td {
    text-align: left;
    padding: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.site-footer {
    padding: 3rem 0 2rem;
    background: var(--bg-deep);
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-grid h3,
.footer-grid h4 {
    color: var(--text-light);
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.offerwall-frame {
    width: min(1600px, 96vw);
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

.offerwall-frame iframe {
    width: 100%;
    height: 80vh;
    min-height: 640px;
    border: 0;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

body.landing-earner {
    font-family: "Sora", "Segoe UI", sans-serif;
    color: #e9f0ff;
    background:
        radial-gradient(circle at 7% 8%, rgba(35, 178, 255, 0.25), transparent 26%),
        radial-gradient(circle at 86% 10%, rgba(40, 234, 188, 0.2), transparent 30%),
        linear-gradient(140deg, #071320 0%, #0b1f33 34%, #09182a 100%);
}

body.landing-earner::before {
    background:
        radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.08), transparent 33%),
        repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.022) 0 2px, transparent 2px 8px);
    opacity: 1;
}

body.landing-earner h1,
body.landing-earner h2,
body.landing-earner h3,
body.landing-earner h4 {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: #f4f8ff;
    letter-spacing: -0.02em;
}

body.landing-earner p {
    color: rgba(225, 235, 255, 0.86);
}

body.landing-earner .site-header {
    background: rgba(7, 20, 35, 0.72);
    border-bottom: 1px solid rgba(115, 170, 230, 0.22);
    backdrop-filter: blur(14px);
}

body.landing-earner .logo-mark {
    background: linear-gradient(145deg, #1f87ff, #16c2a6);
    box-shadow: 0 10px 20px rgba(22, 117, 214, 0.35);
}

body.landing-earner .logo-text,
body.landing-earner .nav-links a {
    color: #edf5ff;
}

body.landing-earner .nav-links a::after {
    background: #2fd8ba;
}

body.landing-earner .nav-actions .btn.ghost {
    color: #ecf4ff;
    border-color: rgba(115, 170, 230, 0.4);
}

body.landing-earner .nav-actions .btn {
    background: linear-gradient(145deg, #1f87ff, #11b8d7);
    box-shadow: 0 12px 28px rgba(26, 119, 220, 0.3);
}

body.landing-earner .site-main {
    padding-bottom: 0;
}

body.landing-earner .earn-lp-hero {
    padding: 4.3rem 0 2.7rem;
}

body.landing-earner .earn-lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
    gap: 1.4rem;
    align-items: stretch;
}

body.landing-earner .earn-lp-copy,
body.landing-earner .earn-lp-console,
body.landing-earner .earn-lp-partner-card,
body.landing-earner .earn-lp-benefit-card,
body.landing-earner .earn-lp-flow-item,
body.landing-earner .earn-lp-cta-box {
    border: 1px solid rgba(117, 169, 230, 0.24);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(15, 34, 56, 0.9), rgba(10, 26, 42, 0.86)),
        rgba(8, 19, 33, 0.9);
    box-shadow: 0 24px 44px rgba(4, 10, 22, 0.42);
}

body.landing-earner .earn-lp-copy {
    padding: 1.9rem;
}

body.landing-earner .earn-lp-kicker {
    display: inline-flex;
    padding: 0.32rem 0.78rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #cae9ff;
    background: rgba(36, 142, 248, 0.2);
    border: 1px solid rgba(123, 189, 245, 0.35);
}

body.landing-earner .earn-lp-copy h1 {
    font-size: clamp(2rem, 4.8vw, 3.35rem);
    margin-top: 0.7rem;
    line-height: 1.06;
}

body.landing-earner .earn-lp-lead {
    margin-top: 1rem;
    font-size: 1.03rem;
    max-width: 62ch;
}

body.landing-earner .earn-lp-ref-note {
    margin-top: 1rem;
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    color: #e7f6ff;
    background: rgba(47, 216, 186, 0.18);
    border: 1px solid rgba(90, 228, 203, 0.36);
}

body.landing-earner .earn-lp-actions {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

body.landing-earner .earn-lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0.65rem 1.05rem;
    border-radius: 12px;
    font-size: 0.94rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

body.landing-earner .earn-lp-btn.primary {
    color: #fff;
    background: linear-gradient(140deg, #2f8cff, #15c6a8);
    box-shadow: 0 12px 24px rgba(18, 119, 212, 0.3);
}

body.landing-earner .earn-lp-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(18, 119, 212, 0.4);
}

body.landing-earner .earn-lp-btn.ghost {
    color: #eef5ff;
    border-color: rgba(136, 186, 245, 0.42);
    background: rgba(16, 34, 55, 0.72);
}

body.landing-earner .earn-lp-btn.ghost:hover {
    transform: translateY(-1px);
    background: rgba(21, 46, 72, 0.84);
    border-color: rgba(136, 186, 245, 0.6);
}

body.landing-earner .earn-lp-metrics {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
}

body.landing-earner .earn-lp-metric {
    padding: 0.72rem 0.8rem;
    border-radius: 13px;
    background: rgba(19, 43, 68, 0.66);
    border: 1px solid rgba(109, 164, 226, 0.26);
}

body.landing-earner .earn-lp-metric strong {
    display: block;
    font-size: 1.12rem;
    color: #f4f9ff;
}

body.landing-earner .earn-lp-metric span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.82rem;
    color: rgba(209, 224, 244, 0.9);
}

body.landing-earner .earn-lp-console {
    padding: 1.4rem;
}

body.landing-earner .earn-lp-console-header {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    color: #edf5ff;
}

body.landing-earner .earn-lp-console-header small {
    color: rgba(199, 216, 238, 0.84);
    text-align: right;
}

body.landing-earner .earn-lp-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.66rem;
}

body.landing-earner .earn-lp-steps li {
    border-radius: 14px;
    padding: 0.78rem 0.86rem;
    border: 1px solid rgba(116, 171, 235, 0.2);
    background: rgba(20, 45, 70, 0.58);
}

body.landing-earner .earn-lp-steps strong {
    display: block;
    color: #f6fbff;
    font-size: 0.95rem;
}

body.landing-earner .earn-lp-steps p {
    margin: 0.4rem 0 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(207, 222, 242, 0.9);
}

body.landing-earner .earn-lp-partners,
body.landing-earner .earn-lp-benefits,
body.landing-earner .earn-lp-flow,
body.landing-earner .earn-lp-cta {
    padding: 1.2rem 0 2.6rem;
}

body.landing-earner .earn-lp-section-head {
    margin-bottom: 0.95rem;
}

body.landing-earner .earn-lp-section-head h2 {
    font-size: clamp(1.45rem, 3.1vw, 2.2rem);
}

body.landing-earner .earn-lp-partner-grid,
body.landing-earner .earn-lp-benefit-grid,
body.landing-earner .earn-lp-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.86rem;
}

body.landing-earner .earn-lp-partner-card,
body.landing-earner .earn-lp-benefit-card,
body.landing-earner .earn-lp-flow-item {
    padding: 1.05rem;
}

body.landing-earner .earn-lp-partner-card img {
    width: 100%;
    max-width: 186px;
    height: 42px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 0.6rem;
    filter: brightness(1.12);
}

body.landing-earner .earn-lp-partner-card p,
body.landing-earner .earn-lp-benefit-card p,
body.landing-earner .earn-lp-flow-item p {
    margin: 0.35rem 0 0;
    font-size: 0.91rem;
}

body.landing-earner .earn-lp-flow-item span {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.26rem 0.7rem;
    background: rgba(47, 216, 186, 0.2);
    border: 1px solid rgba(98, 225, 205, 0.34);
    color: #f0fcff;
    font-size: 0.8rem;
    font-weight: 600;
}

body.landing-earner .earn-lp-flow-item h3 {
    margin-top: 0.62rem;
}

body.landing-earner .earn-lp-cta {
    padding-bottom: 3.5rem;
}

body.landing-earner .earn-lp-cta-box {
    padding: 1.6rem;
}

body.landing-earner .earn-lp-cta-box h2 {
    margin-bottom: 0.4rem;
}

body.landing-earner .site-footer {
    background: linear-gradient(180deg, rgba(5, 13, 23, 0.98), rgba(4, 11, 19, 0.98));
    border-top: 1px solid rgba(92, 152, 219, 0.24);
}

body.landing-earner .site-footer h3,
body.landing-earner .site-footer h4 {
    color: #f2f8ff;
}

body.landing-earner .site-footer p,
body.landing-earner .site-footer a,
body.landing-earner .site-footer span,
body.landing-earner .site-footer li {
    color: rgba(217, 229, 245, 0.84);
}

body.landing-earner.landing-money {
    color: #e8fff0;
    background:
        radial-gradient(circle at 10% 8%, rgba(120, 255, 168, 0.24), transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(68, 238, 166, 0.2), transparent 30%),
        linear-gradient(140deg, #06180f 0%, #0d2a1b 35%, #112f1f 100%);
}

body.landing-earner.landing-money::before {
    background:
        radial-gradient(circle at 25% 24%, rgba(198, 255, 222, 0.08), transparent 34%),
        repeating-linear-gradient(130deg, rgba(196, 255, 221, 0.022) 0 2px, transparent 2px 8px);
}

body.landing-earner.landing-money h1,
body.landing-earner.landing-money h2,
body.landing-earner.landing-money h3,
body.landing-earner.landing-money h4 {
    color: #f2fff6;
}

body.landing-earner.landing-money p {
    color: rgba(225, 248, 235, 0.88);
}

body.landing-earner.landing-money .site-header {
    background: rgba(9, 27, 18, 0.76);
    border-bottom-color: rgba(120, 233, 167, 0.24);
}

body.landing-earner.landing-money .logo-mark {
    background: linear-gradient(145deg, #24b96e, #7de870);
    box-shadow: 0 10px 20px rgba(24, 133, 81, 0.35);
}

body.landing-earner.landing-money .nav-links a::after {
    background: #8ef36f;
}

body.landing-earner.landing-money .nav-actions .btn.ghost {
    border-color: rgba(139, 235, 172, 0.45);
}

body.landing-earner.landing-money .nav-actions .btn {
    background: linear-gradient(145deg, #1dbf73, #89ea74);
    box-shadow: 0 12px 28px rgba(26, 137, 86, 0.35);
}

body.landing-earner.landing-money .earn-lp-copy,
body.landing-earner.landing-money .earn-lp-console,
body.landing-earner.landing-money .earn-lp-partner-card,
body.landing-earner.landing-money .earn-lp-benefit-card,
body.landing-earner.landing-money .earn-lp-flow-item,
body.landing-earner.landing-money .earn-lp-cta-box {
    border-color: rgba(132, 231, 170, 0.25);
    background:
        linear-gradient(145deg, rgba(18, 44, 30, 0.92), rgba(12, 33, 23, 0.88)),
        rgba(10, 28, 19, 0.92);
    box-shadow: 0 24px 44px rgba(3, 12, 7, 0.45);
}

body.landing-earner.landing-money .earn-lp-kicker {
    color: #deffe8;
    background: rgba(89, 223, 137, 0.22);
    border-color: rgba(140, 241, 175, 0.45);
}

body.landing-earner.landing-money .earn-lp-ref-note {
    color: #ecfff2;
    background: rgba(84, 223, 132, 0.2);
    border-color: rgba(148, 240, 182, 0.38);
}

body.landing-earner.landing-money .earn-lp-btn.primary {
    background: linear-gradient(140deg, #21be72, #9aef73);
    box-shadow: 0 12px 24px rgba(18, 125, 74, 0.34);
}

body.landing-earner.landing-money .earn-lp-btn.primary:hover {
    box-shadow: 0 16px 30px rgba(18, 125, 74, 0.44);
}

body.landing-earner.landing-money .earn-lp-btn.ghost {
    border-color: rgba(144, 238, 178, 0.45);
    background: rgba(22, 48, 33, 0.74);
}

body.landing-earner.landing-money .earn-lp-btn.ghost:hover {
    background: rgba(28, 58, 40, 0.88);
    border-color: rgba(152, 243, 185, 0.62);
}

body.landing-earner.landing-money .earn-lp-metric {
    background: rgba(22, 52, 35, 0.68);
    border-color: rgba(130, 227, 168, 0.3);
}

body.landing-earner.landing-money .earn-lp-metric span,
body.landing-earner.landing-money .earn-lp-console-header small,
body.landing-earner.landing-money .earn-lp-steps p,
body.landing-earner.landing-money .site-footer p,
body.landing-earner.landing-money .site-footer a,
body.landing-earner.landing-money .site-footer span,
body.landing-earner.landing-money .site-footer li {
    color: rgba(214, 241, 224, 0.9);
}

body.landing-earner.landing-money .earn-lp-steps li {
    border-color: rgba(130, 227, 168, 0.22);
    background: rgba(22, 52, 35, 0.58);
}

body.landing-earner.landing-money .earn-lp-flow-item span {
    background: rgba(84, 223, 132, 0.2);
    border-color: rgba(148, 240, 182, 0.36);
    color: #f0fff5;
}

body.landing-earner.landing-money .site-footer {
    background: linear-gradient(180deg, rgba(4, 18, 11, 0.98), rgba(3, 14, 9, 0.98));
    border-top-color: rgba(128, 226, 165, 0.24);
}

body:not(.home-premium):not(.landing-earner) {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: #eaf1fc;
    background:
        radial-gradient(circle at 9% 10%, rgba(239, 142, 66, 0.18), transparent 34%),
        radial-gradient(circle at 90% 12%, rgba(241, 190, 108, 0.14), transparent 30%),
        linear-gradient(165deg, #040913 0%, #081528 44%, #0d1d35 100%);
}

body:not(.home-premium):not(.landing-earner)::before {
    background:
        radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.08), transparent 44%),
        linear-gradient(132deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 48%);
    opacity: 0.72;
}

body:not(.home-premium):not(.landing-earner) h1,
body:not(.home-premium):not(.landing-earner) h2,
body:not(.home-premium):not(.landing-earner) h3,
body:not(.home-premium):not(.landing-earner) h4 {
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
    color: #f4f8ff;
}

body:not(.home-premium):not(.landing-earner) p {
    color: rgba(218, 228, 243, 0.86);
}

body:not(.home-premium):not(.landing-earner) .site-main a:not(.btn):not(.account-action-link):not(.settings-tab-btn) {
    color: #f3ca86;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body:not(.home-premium):not(.landing-earner) .site-main a:not(.btn):not(.account-action-link):not(.settings-tab-btn):hover {
    color: #ffd8a1;
}

body:not(.home-premium):not(.landing-earner) .site-header {
    background: rgba(7, 18, 34, 0.8);
    border-bottom: 1px solid rgba(230, 196, 140, 0.24);
    backdrop-filter: blur(14px);
}

body:not(.home-premium):not(.landing-earner) .logo-mark {
    background: linear-gradient(145deg, #ef8a3d, #f1bf6f);
    color: #192941;
    box-shadow: 0 12px 24px rgba(5, 11, 22, 0.38);
}

body:not(.home-premium):not(.landing-earner) .logo-text,
body:not(.home-premium):not(.landing-earner) .nav-links a {
    color: #eaf1fd;
}

body:not(.home-premium):not(.landing-earner) .nav-links a::after {
    background: #f1bf6f;
}

body:not(.home-premium):not(.landing-earner) .btn {
    background: linear-gradient(145deg, #ef8a3d, #f1bf6f);
    color: #1a2940;
    box-shadow: 0 12px 24px rgba(218, 127, 56, 0.28);
}

body:not(.home-premium):not(.landing-earner) .btn:hover {
    box-shadow: 0 16px 30px rgba(218, 127, 56, 0.4);
}

body:not(.home-premium):not(.landing-earner) .btn.ghost {
    border: 1px solid rgba(230, 198, 145, 0.42);
    background: rgba(15, 34, 61, 0.58);
    color: #edf3ff;
}

body:not(.home-premium):not(.landing-earner) .btn.outline {
    border: 1px solid rgba(230, 198, 145, 0.42);
    background: rgba(10, 25, 47, 0.4);
    color: #edf3ff;
}

body:not(.home-premium):not(.landing-earner) .hero {
    padding-top: 5.2rem;
}

body:not(.home-premium):not(.landing-earner) .section {
    padding: 4rem 0;
}

body:not(.home-premium):not(.landing-earner) .section.highlight {
    background:
        linear-gradient(180deg, rgba(6, 15, 29, 0.72), rgba(6, 15, 29, 0.72)),
        linear-gradient(145deg, rgba(29, 58, 99, 0.22), rgba(15, 33, 59, 0.16));
    border-top: 1px solid rgba(232, 195, 138, 0.14);
    border-bottom: 1px solid rgba(232, 195, 138, 0.14);
}

body:not(.home-premium):not(.landing-earner) .tag {
    color: #ffd8a4;
    background: rgba(241, 187, 103, 0.14);
    border: 1px solid rgba(241, 187, 103, 0.32);
}

body:not(.home-premium):not(.landing-earner) .panel-card,
body:not(.home-premium):not(.landing-earner) .card,
body:not(.home-premium):not(.landing-earner) .qa-item,
body:not(.home-premium):not(.landing-earner) .form-card,
body:not(.home-premium):not(.landing-earner) .table-card {
    background:
        radial-gradient(circle at 86% 12%, rgba(241, 191, 111, 0.14), transparent 36%),
        linear-gradient(160deg, rgba(13, 32, 57, 0.95), rgba(9, 24, 45, 0.95));
    border: 1px solid rgba(228, 194, 138, 0.2);
    box-shadow: 0 22px 40px rgba(4, 10, 19, 0.34);
}

body:not(.home-premium):not(.landing-earner) .panel-card.accent {
    background:
        radial-gradient(circle at 88% 14%, rgba(241, 191, 111, 0.2), transparent 38%),
        linear-gradient(160deg, rgba(18, 42, 73, 0.96), rgba(11, 30, 57, 0.96));
}

body:not(.home-premium):not(.landing-earner) .panel-card.accent h4,
body:not(.home-premium):not(.landing-earner) .panel-card.accent p {
    color: #f2f8ff;
}

body:not(.home-premium):not(.landing-earner) .qa-item summary {
    color: #f4f8ff;
}

body:not(.home-premium):not(.landing-earner) .qa-answer,
body:not(.home-premium):not(.landing-earner) .small {
    color: rgba(214, 225, 241, 0.82);
}

body:not(.home-premium):not(.landing-earner) .qa-item summary::after {
    color: #f1bf6f;
}

body:not(.home-premium):not(.landing-earner) .sponsored-card {
    background:
        linear-gradient(145deg, rgba(20, 45, 78, 0.76), rgba(13, 31, 56, 0.76)),
        rgba(10, 24, 45, 0.9);
}

body:not(.home-premium):not(.landing-earner) .sponsored-meta {
    color: rgba(214, 225, 241, 0.78);
}

body:not(.home-premium):not(.landing-earner) .step-number {
    background: linear-gradient(145deg, #ef8a3d, #f1bf6f);
    color: #1c2d45;
}

body:not(.home-premium):not(.landing-earner) .pill {
    background: rgba(241, 191, 111, 0.18);
    color: #f6f9ff;
    border: 1px solid rgba(236, 200, 145, 0.28);
}

body:not(.home-premium):not(.landing-earner) .pill.muted {
    background: rgba(21, 45, 77, 0.66);
    color: rgba(221, 231, 246, 0.84);
}

body:not(.home-premium):not(.landing-earner) .pill.success {
    background: rgba(58, 193, 134, 0.22);
}

body:not(.home-premium):not(.landing-earner) .pill.warning {
    background: rgba(239, 138, 61, 0.24);
}

body:not(.home-premium):not(.landing-earner) .stat-label,
body:not(.home-premium):not(.landing-earner) .stat-sub {
    color: rgba(213, 223, 240, 0.74);
}

body:not(.home-premium):not(.landing-earner) .stat-value {
    color: #f5f9ff;
}

body:not(.home-premium):not(.landing-earner) .settings-tab-btn {
    border-color: rgba(230, 198, 145, 0.26);
    background: rgba(11, 28, 52, 0.76);
    color: rgba(231, 240, 252, 0.92);
}

body:not(.home-premium):not(.landing-earner) .settings-tab-btn:hover {
    background: rgba(15, 36, 66, 0.88);
}

body:not(.home-premium):not(.landing-earner) .settings-tab-btn.is-active {
    background: linear-gradient(145deg, #ef8a3d, #f1bf6f);
    color: #1a2940;
    border-color: transparent;
}

body:not(.home-premium):not(.landing-earner) label {
    color: #f2f7ff;
}

body:not(.home-premium):not(.landing-earner) input,
body:not(.home-premium):not(.landing-earner) select,
body:not(.home-premium):not(.landing-earner) textarea {
    border: 1px solid rgba(227, 194, 139, 0.3);
    background: rgba(8, 22, 42, 0.78);
    color: #eef4ff;
}

body:not(.home-premium):not(.landing-earner) input::placeholder,
body:not(.home-premium):not(.landing-earner) textarea::placeholder {
    color: rgba(214, 224, 241, 0.6);
}

body:not(.home-premium):not(.landing-earner) input:focus,
body:not(.home-premium):not(.landing-earner) select:focus,
body:not(.home-premium):not(.landing-earner) textarea:focus {
    outline: none;
    border-color: rgba(241, 191, 111, 0.72);
    box-shadow: 0 0 0 3px rgba(241, 191, 111, 0.2);
}

body:not(.home-premium):not(.landing-earner) .notice {
    background: rgba(241, 191, 111, 0.16);
    border: 1px solid rgba(241, 191, 111, 0.3);
    color: #f3f8ff;
}

body:not(.home-premium):not(.landing-earner) .alert {
    color: #f3f8ff;
}

body:not(.home-premium):not(.landing-earner) .alert-error {
    background: rgba(239, 138, 61, 0.22);
    border: 1px solid rgba(239, 138, 61, 0.4);
}

body:not(.home-premium):not(.landing-earner) .alert-success {
    background: rgba(58, 193, 134, 0.22);
    border: 1px solid rgba(58, 193, 134, 0.4);
}

body:not(.home-premium):not(.landing-earner) .stats-inline {
    color: #f4f8ff;
}

body:not(.home-premium):not(.landing-earner) th,
body:not(.home-premium):not(.landing-earner) td {
    border-bottom-color: rgba(227, 194, 138, 0.18);
    color: rgba(220, 230, 244, 0.9);
}

body:not(.home-premium):not(.landing-earner) th {
    color: #f5f8ff;
    font-weight: 700;
}

body:not(.home-premium):not(.landing-earner) .offerwall-frame iframe {
    background: rgba(8, 22, 42, 0.86);
    border: 1px solid rgba(227, 194, 138, 0.2);
}

body:not(.home-premium):not(.landing-earner) .site-footer {
    background:
        radial-gradient(circle at 20% 10%, rgba(241, 191, 111, 0.14), transparent 36%),
        linear-gradient(180deg, #040912 0%, #081327 100%);
    border-top: 1px solid rgba(228, 194, 138, 0.2);
}

body:not(.home-premium):not(.landing-earner) .site-footer p,
body:not(.home-premium):not(.landing-earner) .site-footer li,
body:not(.home-premium):not(.landing-earner) .site-footer a,
body:not(.home-premium):not(.landing-earner) .site-footer span {
    color: rgba(221, 231, 246, 0.84);
}

body:not(.home-premium):not(.landing-earner) .site-footer h3,
body:not(.home-premium):not(.landing-earner) .site-footer h4 {
    color: #f5f9ff;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: #1f2937;
    background: #f5f7fb;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard)::before {
    display: none;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) h1,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) h2,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) h3,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) h4 {
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #1f2937;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) p {
    color: #6b7280;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-main a:not(.btn):not(.settings-tab-btn) {
    color: #0b1b33;
    text-decoration: none;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-main a:not(.btn):not(.settings-tab-btn):hover {
    color: #111827;
    text-decoration: underline;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e6eaf0;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .logo-mark {
    background: #0b1b33;
    color: #f59e0b;
    box-shadow: none;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .logo-text,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .nav-links a {
    color: #1f2937;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .nav-links a::after {
    background: #f59e0b;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .btn {
    background: #f59e0b;
    color: #111827;
    border: 1px solid #eaa60e;
    box-shadow: none;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(245, 158, 11, 0.25);
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .btn.ghost {
    background: #0b1b33;
    color: #f9fbff;
    border: 1px solid #0b1b33;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .btn.outline {
    background: transparent;
    color: #1f2937;
    border: 1px solid #d4dae3;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .section {
    padding: 3.1rem 0;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .section.highlight {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .card,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .table-card,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .form-card,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .panel-card,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .settings-panel {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .small {
    color: #6b7280;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) th,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) td {
    border-bottom-color: #e6eaf0;
    color: #1f2937;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) th {
    color: #111827;
    font-weight: 700;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .pill {
    background: #fff6e6;
    color: #8a5b00;
    border: 1px solid #f2deb8;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .pill.muted {
    background: #f3f6fb;
    color: #4b5563;
    border-color: #e3e8f2;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .notice {
    background: #fff6e6;
    color: #8a5b00;
    border: 1px solid #f3dfba;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .alert-error {
    background: #ffecea;
    color: #9f2f1b;
    border: 1px solid #ffd2cd;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .alert-success {
    background: #eaf8f1;
    color: #166534;
    border: 1px solid #cdeedc;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) label {
    color: #1f2937;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) input,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) select,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) textarea {
    background: #ffffff;
    border: 1px solid #d6dde8;
    color: #111827;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) input:focus,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) select:focus,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .settings-tabs {
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
    padding: 0.6rem;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .settings-tab-btn {
    border-color: #d8dfeb;
    background: #ffffff;
    color: #374151;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .settings-tab-btn:hover {
    background: #f8fafc;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .settings-tab-btn.is-active {
    background: #f59e0b;
    color: #111827;
    border-color: #f59e0b;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-footer {
    background: #0b1b33;
    border-top: 1px solid rgba(11, 27, 51, 0.18);
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-footer p,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-footer li,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-footer a,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-footer span {
    color: rgba(235, 241, 250, 0.84);
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-footer h3,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .site-footer h4 {
    color: #f7f9fd;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-shell {
    display: grid;
    gap: 1.1rem;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-page-header h1,
body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-page-header h2 {
    margin-bottom: 0.4rem;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.7rem;
    width: min(650px, 100%);
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-kpi {
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    padding: 0.8rem 0.9rem;
    display: grid;
    gap: 0.22rem;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-kpi-label {
    font-size: 0.8rem;
    color: #6b7280;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-kpi-value {
    font-weight: 800;
    font-size: 1.08rem;
    color: #111827;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-kpi-sub {
    font-size: 0.8rem;
    color: #6b7280;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-panel {
    border-radius: 18px;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-bottom-md {
    margin-bottom: 1rem;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-stack-sm {
    margin-top: 0.9rem;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .workspace-stack-md {
    margin-top: 1rem;
}

body.auth-workspace:not(.home-premium):not(.landing-earner):not(.account-dashboard) .subhead-spaced {
    margin-top: 1.2rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: #1f2937;
    background: #f5f7fb;
}

body.account-dashboard:not(.home-premium):not(.landing-earner)::before {
    display: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) h1,
body.account-dashboard:not(.home-premium):not(.landing-earner) h2,
body.account-dashboard:not(.home-premium):not(.landing-earner) h3,
body.account-dashboard:not(.home-premium):not(.landing-earner) h4 {
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #1f2937;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) p {
    color: #6b7280;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .site-main a:not(.btn):not(.account-action-link):not(.settings-tab-btn) {
    color: #0b1b33;
    text-decoration: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .site-main a:not(.btn):not(.account-action-link):not(.settings-tab-btn):hover {
    color: #111827;
    text-decoration: underline;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e6eaf0;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .logo-mark {
    background: #0b1b33;
    color: #f59e0b;
    box-shadow: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .logo-text,
body.account-dashboard:not(.home-premium):not(.landing-earner) .nav-links a {
    color: #1f2937;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .nav-links a::after {
    background: #f59e0b;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .btn {
    background: #f59e0b;
    color: #111827;
    border: 1px solid #eaa60e;
    box-shadow: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(245, 158, 11, 0.25);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .btn.ghost {
    background: #0b1b33;
    color: #f9fbff;
    border: 1px solid #0b1b33;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .btn.outline {
    background: transparent;
    color: #1f2937;
    border: 1px solid #d4dae3;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .section {
    padding: 2.7rem 0;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-workspace {
    padding-top: 1.8rem;
    padding-bottom: 1.2rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-workspace + .section {
    padding-top: 1.2rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .section.highlight {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .workspace-shell {
    display: grid;
    gap: 1.1rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .workspace-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .workspace-page-header h1,
body.account-dashboard:not(.home-premium):not(.landing-earner) .workspace-page-header h2 {
    margin-bottom: 0.4rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-page-head-right {
    display: grid;
    gap: 0.65rem;
    justify-items: end;
    width: min(560px, 100%);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-control-snapshot {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    width: min(560px, 100%);
    gap: 0.55rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-control-metric {
    border: 1px solid #dde4ef;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.58rem 0.66rem;
    display: grid;
    gap: 0.15rem;
    box-shadow: 0 5px 12px rgba(15, 23, 42, 0.04);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-control-metric-label {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-control-metric-value {
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.1;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-head-actions {
    justify-content: flex-end;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .workspace-panel {
    border-radius: 18px;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .tag {
    color: #8a5b00;
    background: #fff4dd;
    border: 1px solid #f3dfba;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .card,
body.account-dashboard:not(.home-premium):not(.landing-earner) .table-card,
body.account-dashboard:not(.home-premium):not(.landing-earner) .form-card,
body.account-dashboard:not(.home-premium):not(.landing-earner) .panel-card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .small {
    color: #6b7280;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) th,
body.account-dashboard:not(.home-premium):not(.landing-earner) td {
    border-bottom-color: #e6eaf0;
    color: #1f2937;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) th {
    color: #111827;
    font-weight: 700;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .pill {
    background: #fff6e6;
    color: #8a5b00;
    border: 1px solid #f2deb8;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .pill.muted {
    background: #f3f6fb;
    color: #4b5563;
    border-color: #e3e8f2;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .pill.warning {
    background: #fff5e8;
    color: #8a5b00;
    border-color: #f3ddba;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .pill.success {
    background: #eaf8f1;
    color: #166534;
    border-color: #cdeedc;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-summary {
    border: 1px solid #e6eaf0;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.2rem 1.2rem 1.1rem;
    gap: 1.35rem;
    position: relative;
    overflow: hidden;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-summary::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #0b1b33, #f59e0b);
    opacity: 0.95;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-summary-divider {
    background: linear-gradient(90deg, rgba(230, 234, 240, 0), rgba(198, 208, 221, 1), rgba(230, 234, 240, 0));
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-avatar {
    background: #0b1b33;
    color: #f8c876;
    box-shadow: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-action-link {
    border: 1px solid #d6dde8;
    background: #ffffff;
    color: #1f2937;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-action-link:hover {
    border-color: #f59e0b;
    background: #fff8eb;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-kpis .stat-card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    border-radius: 14px;
    padding: 1rem 1rem 0.95rem;
    display: grid;
    gap: 0.16rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-kpis .stat-card::after {
    background: linear-gradient(90deg, #f59e0b, #f7be62);
    opacity: 0.9;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .stat-label {
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .stat-value {
    color: #111827;
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    font-weight: 900;
    line-height: 1.08;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .stat-sub {
    color: #6b7280;
    font-size: 0.8rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-kpis .stat-card.stat-card-priority {
    background: linear-gradient(180deg, #ffffff, #fffaf0);
    border-color: #f2e0ba;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-kpis .stat-card.stat-card-priority .stat-value {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-tabs[data-account-tabs] {
    position: static;
    top: auto;
    z-index: 1;
    margin-bottom: -1px;
    border: 1px solid #dfe6f1;
    border-radius: 16px 16px 0 0;
    border-bottom-color: #dfe6f1;
    background: linear-gradient(180deg, #f8fbff, #f3f7fc);
    box-shadow: none;
    padding: 0.55rem 0.55rem 0;
    backdrop-filter: none;
    display: flex;
    gap: 0.38rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-content-shell {
    border: 1px solid #dfe6f1;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-tab-btn {
    position: relative;
    border-color: #d6deea;
    border-bottom-color: #dfe6f1;
    border-radius: 12px 12px 0 0;
    background: #eef3f9;
    color: #334155;
    padding: 0.66rem 1rem 0.6rem;
    font-size: 0.86rem;
    font-weight: 700;
    flex: 0 0 auto;
    transform: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-tab-btn:hover {
    background: #f5f8fc;
    color: #1f2937;
    transform: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-tab-btn.is-active {
    background: #ffffff;
    color: #0f172a;
    border-color: #d6deea;
    border-bottom-color: #ffffff;
    z-index: 2;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-tab-btn.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(90deg, #f59e0b, #f7be62);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-tab-btn:focus-visible {
    outline: 2px solid rgba(245, 158, 11, 0.45);
    outline-offset: 1px;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-panel[data-account-panel] {
    border: 0;
    border-top: 1px solid #e6eaf0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    padding: 0.85rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-content-shell .settings-panel + .settings-panel {
    margin-top: 0;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-panel[data-account-panel] .card,
body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-panel[data-account-panel] .table-card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-panel[data-account-panel] .card:hover,
body.account-dashboard:not(.home-premium):not(.landing-earner) .settings-panel[data-account-panel] .table-card:hover {
    transform: translateY(-1px);
    border-color: #d6dee9;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .quick-actions-card {
    display: grid;
    gap: 0.9rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .quick-actions-primary {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 0.68rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .quick-actions-primary .btn {
    min-height: 46px;
    font-weight: 800;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .quick-actions-primary .account-primary-action {
    background: #0b1b33;
    color: #f9fbff;
    border-color: #0b1b33;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .quick-actions-primary .account-primary-action:hover {
    box-shadow: 0 8px 18px rgba(11, 27, 51, 0.24);
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .quick-actions-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .quick-actions-secondary .btn {
    flex: 1 1 180px;
    min-width: 0;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-list-card .cards-grid {
    gap: 0.75rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-card {
    border-left: 4px solid #f59e0b;
    display: grid;
    gap: 0.55rem;
    padding: 0.95rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-card.is-healthy {
    border-left-color: #16a34a;
    background: #f7fcf9;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-meta {
    display: flex;
    justify-content: flex-start;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-copy {
    margin: 0;
    display: grid;
    gap: 0.28rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-copy strong {
    font-size: 0.95rem;
    color: #111827;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-copy span {
    color: #4b5563;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-actions {
    margin-top: 0.08rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .attention-actions .btn {
    width: 100%;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .stack-top {
    margin-top: 1rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .perk-item-card {
    margin-top: 0.8rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .subhead-spaced {
    margin-top: 1rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .top-gap-sm {
    margin-top: 0.8rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .chart-card svg {
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    background: #ffffff;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .chart-card #market-rate-caption {
    min-height: 1.1rem;
    margin-top: 0.55rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .chart-card .account-chart-range-btn.ghost {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d4dae3;
    box-shadow: none;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .activity-card .table-card {
    padding: 0.58rem 0.72rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-ledger-table {
    font-size: 0.88rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-ledger-table th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    font-weight: 700;
    padding: 0.64rem 0.72rem;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-ledger-table td {
    padding: 0.64rem 0.72rem;
    border-bottom-color: #edf1f6;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-ledger-table .ledger-col-type {
    font-weight: 700;
    color: #1f2937;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-ledger-table .ledger-col-amount {
    text-align: right;
    white-space: nowrap;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #111827;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-ledger-table .ledger-col-date {
    white-space: nowrap;
    color: #64748b;
    font-variant-numeric: tabular-nums;
}

body.account-dashboard:not(.home-premium):not(.landing-earner) .account-ledger-table tbody tr:hover {
    background: #f8fafd;
}

body.home-premium {
    --hp-navy-990: #040912;
    --hp-navy-950: #081326;
    --hp-navy-900: #0d1d36;
    --hp-navy-820: #17335a;
    --hp-gold-500: #f1bf6f;
    --hp-orange-500: #ef8a3d;
    --hp-orange-430: #ffab63;
    --hp-text-light: #ecf2fc;
    --hp-text-muted: rgba(223, 232, 247, 0.82);
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--hp-text-light);
    background:
        radial-gradient(circle at 12% 7%, rgba(241, 191, 111, 0.15), transparent 34%),
        radial-gradient(circle at 87% 12%, rgba(239, 138, 61, 0.17), transparent 29%),
        linear-gradient(165deg, var(--hp-navy-990) 0%, var(--hp-navy-950) 42%, var(--hp-navy-900) 100%);
}

body.home-premium::before {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 42%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 48%);
    opacity: 0.7;
}

body.home-premium h1,
body.home-premium h2,
body.home-premium h3,
body.home-premium h4 {
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: -0.03em;
    color: #f5f8ff;
}

body.home-premium p {
    color: var(--hp-text-muted);
}

body.home-premium .site-header {
    background: rgba(7, 17, 32, 0.78);
    border-bottom: 1px solid rgba(225, 192, 133, 0.24);
    backdrop-filter: blur(16px);
}

body.home-premium .logo-text,
body.home-premium .nav-links a {
    color: #edf3ff;
}

body.home-premium .logo-mark {
    background: linear-gradient(150deg, var(--hp-orange-500), var(--hp-gold-500));
    color: #182033;
    box-shadow: 0 12px 26px rgba(9, 16, 33, 0.36);
}

body.home-premium .nav-links a::after {
    background: var(--hp-gold-500);
}

body.home-premium .btn {
    background: linear-gradient(145deg, var(--hp-orange-500), var(--hp-gold-500));
    color: #192941;
    border: 0;
    box-shadow: 0 14px 26px rgba(218, 127, 56, 0.28);
}

body.home-premium .btn:hover {
    box-shadow: 0 16px 30px rgba(218, 127, 56, 0.38);
}

body.home-premium .btn.ghost {
    color: #edf3ff;
    border: 1px solid rgba(225, 197, 143, 0.42);
    background: rgba(13, 32, 58, 0.5);
}

body.home-premium .btn.outline {
    color: #f1f5fb;
    border: 1px solid rgba(230, 203, 154, 0.48);
    background: rgba(15, 31, 58, 0.36);
}

body.home-premium .site-main {
    padding-bottom: 0;
}

body.header-stop-control .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

body.header-stop-control.header-stop-detached .site-header {
    position: absolute;
    top: var(--site-header-stop, 0px);
}

body.header-stop-control .site-main {
    padding-top: var(--site-header-height, 84px);
}

body.home-premium .section {
    padding: 5rem 0;
    position: relative;
}

body.home-premium .hp-section-head {
    max-width: 64ch;
}

body.home-premium .hp-section-head-tight {
    margin-bottom: 1.4rem;
}

body.home-premium .hp-overline {
    display: inline-flex;
    margin-bottom: 0.7rem;
    font-size: 0.77rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f4c986;
    font-weight: 800;
}

body.home-premium .hp-section-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    margin-bottom: 0.62rem;
    line-height: 1.12;
}

body.home-premium .hp-section-head p {
    margin-bottom: 0;
    font-size: 1rem;
}

body.home-premium .hp-hero {
    padding: 5.8rem 0 4.7rem;
}

body.home-premium .hp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.7rem;
    align-items: center;
}

body.home-premium .hp-tag {
    color: #ffdcb0;
    background: rgba(235, 169, 94, 0.16);
    border: 1px solid rgba(235, 169, 94, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
}

body.home-premium .hp-hero-copy h1 {
    font-size: clamp(2.45rem, 5vw, 4.15rem);
    line-height: 1.07;
    margin-bottom: 0.78rem;
}

body.home-premium .hp-hero-copy p {
    max-width: 52ch;
    font-size: 1.02rem;
    margin-bottom: 0;
}

body.home-premium .hp-hero-actions {
    margin-top: 1.35rem;
}

body.home-premium .hp-trust-bullets {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.62rem;
}

body.home-premium .hp-trust-bullets li {
    position: relative;
    padding: 0.72rem 0.9rem 0.72rem 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(227, 195, 140, 0.28);
    background: rgba(9, 24, 46, 0.78);
    color: rgba(231, 240, 252, 0.9);
    font-size: 0.93rem;
}

body.home-premium .hp-trust-bullets li::before {
    content: "";
    position: absolute;
    left: 0.9rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--hp-orange-430), var(--hp-gold-500));
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(240, 188, 103, 0.18);
}

body.home-premium .hp-hero-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.home-premium .hp-owl {
    position: relative;
    z-index: 2;
    width: min(120%, 660px);
    object-fit: contain;
    filter: drop-shadow(0 26px 44px rgba(1, 7, 15, 0.74));
    animation: hpFloat 6.2s ease-in-out infinite;
}

body.home-premium .hp-glow-ring {
    position: absolute;
    width: min(90%, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(244, 192, 108, 0.44) 0%, rgba(244, 192, 108, 0.16) 40%, rgba(244, 192, 108, 0) 74%);
    filter: blur(2px);
    z-index: 1;
}

body.home-premium .hp-floating-pill {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    border: 1px solid rgba(230, 199, 146, 0.36);
    background: rgba(8, 24, 46, 0.88);
    color: rgba(239, 246, 255, 0.95);
    padding: 0.5rem 0.9rem;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(5, 11, 22, 0.38);
}

body.home-premium .hp-floating-pill-top {
    right: 0.2rem;
    top: 20%;
}

body.home-premium .hp-floating-pill-bottom {
    left: -0.2rem;
    bottom: 18%;
}

body.home-premium .hp-modules {
    padding-top: 3.9rem;
    background:
        linear-gradient(180deg, rgba(6, 15, 30, 0.75), rgba(6, 15, 30, 0.75)),
        linear-gradient(145deg, rgba(26, 53, 90, 0.34), rgba(13, 33, 61, 0.18));
    border-top: 1px solid rgba(228, 193, 135, 0.12);
    border-bottom: 1px solid rgba(228, 193, 135, 0.14);
}

body.home-premium .hp-module-trust {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

body.home-premium .hp-module-trust-item {
    border-radius: 14px;
    border: 1px solid rgba(227, 196, 139, 0.22);
    background: rgba(10, 26, 49, 0.72);
    padding: 0.7rem 0.8rem;
}

body.home-premium .hp-module-trust-item strong {
    display: block;
    margin-bottom: 0.12rem;
    color: #f3f8ff;
    font-size: 0.92rem;
}

body.home-premium .hp-module-trust-item span {
    color: rgba(216, 226, 241, 0.82);
    font-size: 0.84rem;
    line-height: 1.35;
}

body.home-premium .hp-module-carousel {
    margin-top: 1.1rem;
    overflow: hidden;
    border-radius: 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

body.home-premium .hp-module-track {
    --module-count: 5;
    --module-width: 278px;
    --module-gap: 0.95rem;
    display: flex;
    gap: var(--module-gap);
    width: max-content;
    animation: hpModuleSlide 40s linear infinite;
    padding: 0.35rem 0;
}

body.home-premium .hp-module-carousel:hover .hp-module-track {
    animation-play-state: paused;
}

body.home-premium .hp-module-tile {
    width: var(--module-width);
    min-height: 132px;
    border-radius: 16px;
    border: 1px solid rgba(227, 194, 136, 0.24);
    background:
        radial-gradient(circle at 88% 14%, rgba(243, 194, 110, 0.16), transparent 40%),
        linear-gradient(150deg, rgba(19, 43, 74, 0.94), rgba(12, 31, 56, 0.94));
    box-shadow: 0 16px 30px rgba(2, 9, 19, 0.34);
    padding: 0.95rem;
    display: grid;
    align-content: start;
    gap: 0.52rem;
    flex: 0 0 auto;
}

body.home-premium .hp-module-tile img {
    max-height: 30px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}

body.home-premium .hp-module-tile h3 {
    margin: 0;
    font-size: 1rem;
    color: #f3f8ff;
}

body.home-premium .hp-module-tile p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(216, 227, 243, 0.84);
}

body.home-premium .hp-module-mark {
    display: inline-flex;
    width: fit-content;
    padding: 0.24rem 0.62rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1b2d46;
    background: linear-gradient(145deg, var(--hp-orange-500), var(--hp-gold-500));
}

body.home-premium .hp-steps {
    background:
        linear-gradient(180deg, rgba(7, 17, 32, 0.85), rgba(7, 17, 32, 0.85)),
        linear-gradient(140deg, rgba(28, 57, 97, 0.32), rgba(16, 36, 65, 0.2));
    border-top: 1px solid rgba(229, 194, 135, 0.12);
    border-bottom: 1px solid rgba(229, 194, 135, 0.12);
}

body.home-premium .hp-ecosystem {
    color: #edf3fd;
    background:
        radial-gradient(circle at 8% 13%, rgba(255, 171, 92, 0.22), transparent 36%),
        radial-gradient(circle at 92% 18%, rgba(241, 188, 103, 0.19), transparent 34%),
        linear-gradient(145deg, #071328 0%, #112746 45%, #1a3962 100%);
    border-top: 1px solid rgba(236, 198, 133, 0.24);
    border-bottom: 1px solid rgba(236, 198, 133, 0.24);
}

body.home-premium .hp-ecosystem-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 1.1rem;
    align-items: start;
}

body.home-premium .hp-ecosystem .hp-overline {
    color: #f6cd8a;
}

body.home-premium .hp-ecosystem h2,
body.home-premium .hp-ecosystem h3 {
    color: #f3f8ff;
}

body.home-premium .hp-ecosystem p {
    color: rgba(224, 233, 246, 0.92);
}

body.home-premium .hp-ecosystem-copy {
    border: 1px solid rgba(238, 200, 140, 0.35);
    border-radius: 24px;
    padding: 1.65rem;
    background:
        radial-gradient(circle at 88% 12%, rgba(246, 196, 110, 0.2), transparent 41%),
        linear-gradient(165deg, rgba(12, 31, 57, 0.95), rgba(18, 43, 76, 0.9));
    box-shadow: 0 30px 52px rgba(4, 11, 21, 0.38);
}

body.home-premium .hp-ecosystem-copy p {
    margin-bottom: 1rem;
}

body.home-premium .hp-ecosystem-flow {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.65rem;
}

body.home-premium .hp-ecosystem-flow-item {
    border-left: 3px solid rgba(242, 190, 105, 0.72);
    padding: 0.15rem 0 0.15rem 0.75rem;
}

body.home-premium .hp-ecosystem-flow-item strong {
    display: block;
    color: #f4f8ff;
    margin-bottom: 0.15rem;
}

body.home-premium .hp-ecosystem-flow-item span {
    display: block;
    font-size: 0.92rem;
    color: rgba(217, 228, 243, 0.87);
}

body.home-premium .hp-ecosystem-actions {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

body.home-premium .hp-ecosystem-side {
    display: grid;
    gap: 0.75rem;
}

body.home-premium .hp-eco-signal {
    border-radius: 18px;
    border: 1px solid rgba(237, 203, 146, 0.24);
    padding: 1rem;
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 195, 110, 0.15), transparent 38%),
        linear-gradient(160deg, rgba(18, 42, 73, 0.9), rgba(11, 30, 56, 0.9));
    box-shadow: 0 16px 30px rgba(6, 14, 25, 0.26);
}

body.home-premium .hp-eco-signal strong {
    display: block;
    color: #f4f8ff;
    margin-bottom: 0.18rem;
}

body.home-premium .hp-eco-signal span {
    color: rgba(216, 227, 243, 0.86);
    font-size: 0.9rem;
}

body.home-premium .hp-step-flow {
    margin: 1.8rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

body.home-premium .hp-step-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(227, 194, 136, 0.2);
    background: rgba(11, 28, 52, 0.72);
}

body.home-premium .hp-step-index {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #1d2f48;
    background: linear-gradient(145deg, var(--hp-orange-500), var(--hp-gold-500));
}

body.home-premium .hp-step-item h3 {
    margin: 0 0 0.25rem;
    font-size: 1.06rem;
    color: #f3f8ff;
}

body.home-premium .hp-step-item p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(217, 227, 242, 0.86);
}

body.home-premium .hp-cta {
    background:
        radial-gradient(circle at 82% 14%, rgba(244, 194, 109, 0.16), transparent 38%),
        linear-gradient(165deg, #050d1c 0%, #081429 100%);
    border-top: 1px solid rgba(232, 195, 133, 0.16);
}

body.home-premium .hp-cta-panel {
    border-radius: 24px;
    border: 1px solid rgba(232, 196, 136, 0.26);
    padding: 1.75rem;
    background:
        radial-gradient(circle at 92% 14%, rgba(244, 196, 112, 0.18), transparent 38%),
        linear-gradient(160deg, rgba(11, 29, 54, 0.95), rgba(8, 23, 44, 0.95));
    box-shadow: 0 26px 46px rgba(2, 9, 19, 0.36);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: center;
}

body.home-premium .hp-cta-panel h2 {
    margin-bottom: 0.6rem;
    color: #f4f8ff;
}

body.home-premium .hp-cta-panel p {
    margin-bottom: 0;
    color: rgba(220, 230, 244, 0.88);
}

body.home-premium .hp-cta-actions {
    justify-content: flex-end;
}

body.home-premium .site-footer {
    padding-top: 3.3rem;
    background:
        radial-gradient(circle at 16% 12%, rgba(241, 172, 89, 0.14), transparent 34%),
        linear-gradient(180deg, #040912 0%, #071224 100%);
    border-top: 1px solid rgba(230, 198, 141, 0.2);
}

body.home-premium .site-footer p,
body.home-premium .site-footer li,
body.home-premium .site-footer a,
body.home-premium .site-footer span {
    color: rgba(221, 231, 246, 0.82);
}

body.home-premium .site-footer h3,
body.home-premium .site-footer h4 {
    color: #f6faff;
}

@keyframes hpFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes hpModuleSlide {
    to {
        transform: translateX(calc(-1 * var(--module-count) * (var(--module-width) + var(--module-gap))));
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-premium .hp-owl,
    body.home-premium .hp-module-track {
        animation: none;
    }
    body.home-premium .hp-module-carousel {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 1020px) {
    body.home-premium .hp-hero-grid,
    body.home-premium .hp-ecosystem-layout {
        grid-template-columns: 1fr;
    }
    body.home-premium .hp-hero-copy {
        max-width: 60ch;
    }
    body.home-premium .hp-hero-visual {
        max-width: 760px;
        width: 100%;
        justify-self: center;
        min-height: 510px;
    }
    body.home-premium .hp-module-trust {
        grid-template-columns: 1fr;
    }
    body.home-premium .hp-module-track {
        --module-width: 246px;
    }
    body.home-premium .hp-owl {
        width: min(112%, 590px);
    }
    body.home-premium .hp-ecosystem-actions {
        margin-bottom: 0.2rem;
    }
    body.home-premium .hp-cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    body.home-premium .hp-floating-pill {
        position: static;
        margin-top: 0.55rem;
        width: fit-content;
    }
    body.home-premium .hp-hero-visual {
        padding-bottom: 0.2rem;
    }
    body.home-premium .hp-step-item {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }
    body.home-premium .hp-step-index {
        width: fit-content;
        min-width: 40px;
        border-radius: 11px;
        padding: 0.38rem 0.6rem;
    }
}

@media (max-width: 760px) {
    body.home-premium .hp-hero {
        padding-top: 4.2rem;
    }
    body.home-premium .hp-hero-copy h1 {
        font-size: clamp(2rem, 9.6vw, 2.95rem);
    }
    body.home-premium .hp-hero-visual {
        min-height: 410px;
    }
    body.home-premium .hp-owl {
        width: min(122%, 540px);
    }
    body.home-premium .hp-module-track {
        --module-width: 214px;
        --module-gap: 0.75rem;
    }
    body.home-premium .hp-ecosystem-copy {
        padding: 1.2rem;
    }
    body.home-premium .hp-cta-panel {
        padding: 1.2rem;
    }
    body.home-premium .hp-cta-actions {
        justify-content: flex-start;
    }
    body.home-premium .hp-cta-actions .btn {
        flex: 1 1 180px;
    }
    body.home-premium .hp-trust-bullets li {
        border-radius: 14px;
    }
}

@media (max-width: 560px) {
    body.home-premium .hp-module-carousel {
        -webkit-mask-image: none;
        mask-image: none;
    }
    body.home-premium .hp-module-track {
        animation-duration: 34s;
    }
    body.home-premium .hp-hero-visual {
        min-height: 360px;
    }
    body.home-premium .hp-owl {
        width: min(128%, 500px);
    }
    body.home-premium .hp-floating-pill {
        font-size: 0.78rem;
    }
}

@media (max-width: 720px) {
    .nav-links {
        width: 100%;
    }
    .nav-actions {
        width: 100%;
    }
    .hero {
        padding-top: 3.5rem;
    }
    .offerwall-marquee-track {
        --logo-w: 176px;
        --logo-gap: 0.8rem;
        animation-duration: 17s;
    }
    .offerwall-logo-pill {
        height: 76px;
        border-radius: 14px;
    }
    .offerwall-logo-pill img {
        max-height: 40px;
    }
    .offerwall-frame iframe {
        height: 70vh;
        min-height: 520px;
    }
    body.account-dashboard .settings-tabs[data-account-tabs] {
        position: static;
        padding: 0.5rem;
        border: 0;
        border-bottom: 1px solid #e6eaf0;
        border-radius: 14px 14px 0 0;
        background: #f8fafd;
        backdrop-filter: none;
    }
    body.account-dashboard .settings-tab-btn {
        padding: 0.6rem 0.82rem 0.56rem;
        font-size: 0.82rem;
    }
    body.account-dashboard .account-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    body.account-dashboard .account-identity {
        width: 100%;
    }
    body.account-dashboard .account-page-head-right {
        width: 100%;
        justify-items: stretch;
    }
    body.account-dashboard .account-control-snapshot {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    body.account-dashboard .account-head-actions {
        width: 100%;
        justify-content: flex-start;
    }
    body.account-dashboard .account-head-actions .btn {
        flex: 1 1 160px;
    }
    body.account-dashboard .account-hero-actions {
        justify-content: flex-start;
        width: 100%;
    }
    body.account-dashboard .account-action-link {
        flex: 1 1 150px;
    }
    body.account-dashboard .quick-actions-primary {
        grid-template-columns: 1fr;
    }
    body.account-dashboard .quick-actions-secondary .btn {
        min-width: 0;
        flex: 1 1 160px;
    }
    body.landing-earner .earn-lp-hero {
        padding-top: 3.15rem;
    }
    body.landing-earner .earn-lp-hero-grid {
        grid-template-columns: 1fr;
    }
    body.landing-earner .earn-lp-copy,
    body.landing-earner .earn-lp-console,
    body.landing-earner .earn-lp-partner-card,
    body.landing-earner .earn-lp-benefit-card,
    body.landing-earner .earn-lp-flow-item,
    body.landing-earner .earn-lp-cta-box {
        border-radius: 16px;
    }
    body.landing-earner .earn-lp-copy {
        padding: 1.25rem;
    }
    body.landing-earner .earn-lp-copy h1 {
        font-size: clamp(1.85rem, 9vw, 2.6rem);
    }
    body.landing-earner .earn-lp-metrics {
        grid-template-columns: 1fr;
    }
    body.landing-earner .earn-lp-console {
        padding: 1rem;
    }
    body.landing-earner .earn-lp-console-header {
        flex-direction: column;
    }
    body.landing-earner .earn-lp-console-header small {
        text-align: left;
    }
    body.landing-earner .earn-lp-partners,
    body.landing-earner .earn-lp-benefits,
    body.landing-earner .earn-lp-flow,
    body.landing-earner .earn-lp-cta {
        padding: 0.95rem 0 2.2rem;
    }
}

@media (max-width: 560px) {
    body.account-dashboard .account-control-snapshot {
        grid-template-columns: 1fr;
    }
    body.account-dashboard .account-head-actions .btn {
        flex: 1 1 100%;
    }
}
