:root {
    --p: #9115e1;
    --p2: #5f1dde;
    --p3: #b44df0;
    --pale: #ede0ff;
    --mist: #f5eeff;
    --ultra: #f9f5ff;
    --ink: #0f0520;
    --ink2: #1e0a38;
    --body: #3d2260;
    --muted: #7a5a99;
    --muted2: #9e7ec0;
    --border: rgba(145, 21, 225, 0.13);
    --border2: rgba(145, 21, 225, 0.25);
    --white: #fff;
    --cream: #fdf9ff;
    --glass: rgba(255, 255, 255, 0.55);
    --glass2: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 8px 32px rgba(95, 29, 222, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    --f-head: 'Poppins', sans-serif;
    --f-body: 'Poppins', sans-serif;
    --r: 20px;
    --r2: 28px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-body);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ─── BACKGROUND ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 60% at 85% 20%, rgba(145, 21, 225, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(95, 29, 222, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 0%, rgba(180, 77, 240, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #fdf9ff 0%, #f8f2ff 50%, #fdf9ff 100%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle, rgba(145, 21, 225, 0.055) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(145, 21, 225, 0.3);
    border-radius: 3px;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(253, 249, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 24px rgba(95, 29, 222, 0.06);
    transition: padding .3s, box-shadow .3s;
}

nav.scrolled {
    padding: .7rem 3rem;
    box-shadow: 0 4px 32px rgba(95, 29, 222, 0.1);
}

.nav-logo {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--ink);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .01em;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--p);
}

.nav-cta {
    background: linear-gradient(135deg, var(--p), var(--p2)) !important;
    color: #fff !important;
    padding: .5rem 1.25rem !important;
    border-radius: 100px;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(145, 21, 225, 0.3);
    transition: transform .2s, box-shadow .2s !important;
}

.nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 24px rgba(95, 29, 222, 0.4) !important;
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 210;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--p);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── SIDEBAR ─── */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(15, 5, 32, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 195;
    width: 280px;
    background: rgba(253, 249, 255, 0.92);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border-left: 1px solid var(--glass-border);
    box-shadow: -8px 0 40px rgba(95, 29, 222, 0.12);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar a {
    display: block;
    padding: .85rem 1rem;
    color: var(--body);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 12px;
    transition: background .2s, color .2s;
}

.sidebar a:hover {
    background: var(--mist);
    color: var(--p);
}

.sidebar-cta {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff !important;
    text-align: center;
    padding: 1rem !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    box-shadow: 0 6px 24px rgba(145, 21, 225, 0.3);
}

/* ─── GLASS CARD ─── */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    border: none;
    border-radius: 100px;
    padding: .875rem 2rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    box-shadow: 0 6px 24px rgba(95, 29, 222, 0.32);
}

.btn-primary:hover {
    box-shadow: 0 10px 32px rgba(95, 29, 222, 0.45);
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--p);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 40px rgba(95, 29, 222, 0.15);
}

.btn-white {
    background: #fff;
    color: var(--p);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ─── EYEBROW ─── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--p);
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: .35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    box-shadow: var(--glass-shadow);
}

.eyebrow::before {
    content: '●';
    font-size: .45rem;
}

/* ─── HERO ─── */
#home {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 5rem;
    gap: 4rem;
}

.hero-content {}

.hero-title {
    font-family: var(--f-head);
    font-size: clamp(3rem, 5.5vw, 6rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.04em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.hero-title em {
    /* font-style: italic; */
    font-weight: 400;
    background: linear-gradient(135deg, var(--p), var(--p3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-body {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.25rem;
}

/* referral pill */
.referral-pill {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: .6rem 1.375rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--body);
    margin-bottom: 2rem;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
    transition: transform .2s, box-shadow .2s;
}

.referral-pill:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(95, 29, 222, 0.15);
}

.referral-pill .code {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--p);
    letter-spacing: .1em;
}

.referral-pill .copy-btn {
    background: var(--p);
    color: #fff;
    padding: .2rem .7rem;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    transition: background .2s;
}

.referral-pill:hover .copy-btn {
    background: var(--p2);
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 2.5rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    max-width: 480px;
}

.stat-item {
    flex: 1;
    padding: 1.25rem 1rem;
    text-align: center;
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(145, 21, 225, 0.15);
}

.stat-num {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p);
    letter-spacing: -.03em;
}

.stat-lbl {
    font-size: .68rem;
    color: var(--muted2);
    margin-top: .15rem;
    font-weight: 500;
    letter-spacing: .01em;
}

/* hero right action card */
.hero-action {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.action-card {
    width: 100%;
    max-width: 420px;
    background: var(--glass);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2.25rem 2rem;
    box-shadow: 0 20px 64px rgba(95, 29, 222, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.action-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 21, 225, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.action-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: .875rem;
}

.action-title {
    font-family: var(--f-head);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: .75rem;
}

.action-sub {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.action-download {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 1.375rem;
    border-radius: 16px;
    font-size: .9rem;
    text-align: left;
}

.dl-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.dl-label {
    display: block;
    font-weight: 700;
    font-size: .95rem;
}

.dl-sub {
    display: block;
    font-size: .72rem;
    font-weight: 400;
    opacity: .75;
    margin-top: .1rem;
}

.dl-arrow {
    margin-left: auto;
    font-size: 1.1rem;
}

.action-divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 1.125rem 0;
    color: var(--muted2);
    font-size: .78rem;
}

.action-divider::before,
.action-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(145, 21, 225, 0.12);
}

.action-agency {
    width: 100%;
    justify-content: center;
    padding: .875rem 1.375rem;
    border-radius: 14px;
    font-size: .875rem;
    font-weight: 600;
}

/* referral box */
.ref-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(145, 21, 225, 0.07), rgba(95, 29, 222, 0.04));
    border: 1.5px dashed rgba(145, 21, 225, 0.28);
    border-radius: 14px;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
}

.ref-box:hover {
    background: rgba(145, 21, 225, 0.1);
    border-color: rgba(145, 21, 225, 0.45);
    transform: scale(1.01);
}

.ref-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .25rem;
}

.ref-code {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p);
    letter-spacing: .12em;
}

.ref-copy-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: var(--p);
    color: #fff;
    padding: .45rem .9rem;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: background .2s;
    flex-shrink: 0;
}

.ref-box:hover .ref-copy-btn {
    background: var(--p2);
}

.action-trust {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1.125rem;
    border-top: 1px solid rgba(145, 21, 225, 0.1);
}

.action-trust span {
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .02em;
}

/* hide old hero-visual styles (now unused) */
.hero-blob,
.card-stack,
.float-card {
    display: none;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    overflow: hidden;
    background: rgba(249, 245, 255, 0.7);
    backdrop-filter: blur(8px);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .04em;
    flex-shrink: 0;
}

.marquee-item span {
    font-size: .875rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── SECTIONS ─── */
section {
    padding: 6rem 3rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--p);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .875rem;
}

.section-label::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--p);
    border-radius: 2px;
}

.section-title {
    font-family: var(--f-head);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-title em {
    /* font-style: italic; */
    font-weight: 400;
    background: linear-gradient(135deg, var(--p), var(--p3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
}

/* ─── TWO PATH ─── */
.two-path {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.path-card {
    border-radius: var(--r2);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.path-card.glass {
    border: 1px solid var(--glass-border);
}

.path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(95, 29, 222, 0.15);
}

.path-card.featured {
    background: linear-gradient(160deg, rgba(145, 21, 225, 0.08) 0%, var(--glass) 60%);
    border: 1.5px solid rgba(145, 21, 225, 0.25);
}

.path-badge {
    display: inline-block;
    background: rgba(145, 21, 225, 0.1);
    border: 1px solid rgba(145, 21, 225, 0.2);
    color: var(--p);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.path-card h3 {
    font-family: var(--f-head);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .75rem;
    letter-spacing: -.025em;
}

.path-card>p {
    font-size: .9375rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.path-points {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.path-points li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .9rem;
    color: var(--body);
    line-height: 1.55;
}

.path-points li::before {
    content: '✦';
    color: var(--p);
    font-size: .6rem;
    flex-shrink: 0;
    margin-top: .25rem;
}

.path-deco {
    position: absolute;
    right: -1.5rem;
    bottom: -2rem;
    font-family: var(--f-head);
    font-size: 10rem;
    font-weight: 800;
    color: rgba(145, 21, 225, 0.04);
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* ─── BENEFITS GRID ─── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.benefit-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 1.75rem;
    box-shadow: var(--glass-shadow);
    transition: transform .3s, box-shadow .3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(95, 29, 222, 0.13);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(145, 21, 225, 0.12), rgba(95, 29, 222, 0.08));
    border: 1px solid rgba(145, 21, 225, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.125rem;
}

.benefit-card h4 {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--ink);
}

.benefit-card p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── STEPS ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.step-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: transform .3s, box-shadow .3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(95, 29, 222, 0.13);
}

.step-num {
    position: absolute;
    top: -1rem;
    right: .75rem;
    font-family: var(--f-head);
    font-size: 5.5rem;
    font-weight: 800;
    color: rgba(145, 21, 225, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.step-card h4 {
    font-family: var(--f-head);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--ink);
    position: relative;
}

.step-card p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    position: relative;
}

/* ─── EARNINGS ─── */
.earnings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.earn-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r2);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.earn-card-head {
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(145, 21, 225, 0.08), rgba(95, 29, 222, 0.05));
    border-bottom: 1px solid rgba(145, 21, 225, 0.12);
}

.earn-card-head h4 {
    font-family: var(--f-head);
    font-size: .9375rem;
    font-weight: 700;
    color: var(--p2);
}

.earn-table {
    width: 100%;
    border-collapse: collapse;
}

.earn-table td {
    padding: .65rem 1.5rem;
    font-size: .875rem;
    border-bottom: 1px solid rgba(145, 21, 225, 0.06);
}

.earn-table tr:last-child td {
    border-bottom: none;
}

.earn-table td:first-child {
    color: var(--muted);
}

.earn-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--p);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    margin-top: 2rem;
}

.rule-item {
    display: flex;
    gap: .625rem;
    align-items: flex-start;
    padding: .875rem 1rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: .84rem;
    color: var(--body);
    line-height: 1.55;
    box-shadow: var(--glass-shadow);
}

.rule-item::before {
    content: '✓';
    color: var(--p);
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.testi-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: transform .3s, box-shadow .3s;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(95, 29, 222, 0.13);
}

.testi-stars {
    color: var(--p);
    font-size: .875rem;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: .9rem;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    /* font-style: italic; */
    font-weight: 300;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p), var(--p2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: .875rem;
    color: var(--ink);
}

.testi-meta {
    font-size: .72rem;
    color: var(--muted2);
    margin-top: .1rem;
}

/* ─── ABOUT ─── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3.5rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-point {
    display: flex;
    gap: 1.125rem;
    padding: 1.375rem;
    border-radius: var(--r);
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform .3s, box-shadow .3s;
}

.about-point:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(95, 29, 222, 0.12);
}

.about-point-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(145, 21, 225, 0.12), rgba(95, 29, 222, 0.08));
    border: 1px solid rgba(145, 21, 225, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-point h4 {
    font-family: var(--f-head);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: var(--ink);
}

.about-point p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
}

.stat-box {
    border-radius: var(--r2);
    padding: 3rem 2.5rem;
    background: linear-gradient(160deg, var(--p), var(--p2));
    box-shadow: 0 24px 72px rgba(95, 29, 222, 0.35);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.big-num {
    font-family: var(--f-head);
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em;
    position: relative;
}

.big-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: .4rem;
    line-height: 1.55;
    position: relative;
}

.big-divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 2rem 0;
    position: relative;
}

.big-stat {
    position: relative;
}

/* ─── CONTACT ─── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.75rem;
    padding: .875rem 1.25rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--p);
    box-shadow: var(--glass-shadow);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 1.25rem 1.375rem;
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    text-decoration: none;
    box-shadow: var(--glass-shadow);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.contact-card:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 48px rgba(95, 29, 222, 0.14);
    border-color: rgba(145, 21, 225, 0.3);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(145, 21, 225, 0.12), rgba(95, 29, 222, 0.08));
    border: 1px solid rgba(145, 21, 225, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-card h4 {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .1rem;
    color: var(--ink);
}

.contact-card p {
    font-size: .8rem;
    color: var(--muted);
}

.contact-card .arrow {
    margin-left: auto;
    color: var(--p);
    font-size: 1.2rem;
}

/* ─── AGENCY GROWTH ─── */
.growth-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
    position: relative;
}

.growth-step {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: transform .3s, box-shadow .3s;
}

.growth-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(95, 29, 222, 0.14);
}

.growth-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(145, 21, 225, 0.13), rgba(95, 29, 222, 0.09));
    border: 1.5px solid rgba(145, 21, 225, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-head);
    font-weight: 800;
    font-size: .95rem;
    color: var(--p);
}

.growth-step h4 {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--ink);
}

.growth-step p {
    font-size: .8125rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── COMMISSION BOX ─── */
.commission-box {
    background: linear-gradient(160deg, var(--p), var(--p2));
    border-radius: var(--r2);
    padding: 5rem 4rem;
    text-align: center;
    margin: 0 3rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(95, 29, 222, 0.35);
    color: #fff;
}

.commission-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

.commission-box .pct {
    font-family: var(--f-head);
    font-size: 7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em;
    position: relative;
}

.commission-box h3 {
    font-family: var(--f-head);
    font-size: 1.7rem;
    font-weight: 800;
    margin: .5rem 0 1rem;
    letter-spacing: -.02em;
    position: relative;
}

.commission-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
}

.commission-box .btn-group {
    justify-content: center;
    position: relative;
}

/* ─── BAND ─── */
.band {
    background: rgba(249, 245, 255, 0.6);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ─── FINAL CTA ─── */
.final-cta {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    margin: 0 3rem 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(95, 29, 222, 0.1);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(145, 21, 225, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.final-cta h2 {
    font-family: var(--f-head);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
    position: relative;
    color: var(--ink);
}

.final-cta h2 em {
    /* font-style: italic; */
    font-weight: 400;
    background: linear-gradient(135deg, var(--p), var(--p3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    color: var(--muted);
    font-size: 1.0625rem;
    max-width: 460px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
}

.final-cta .btn-group {
    justify-content: center;
    position: relative;
}

/* ─── FOOTER ─── */
footer {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 3rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-family: var(--f-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--p);
    margin-bottom: .75rem;
}

.footer-brand p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 240px;
}

.footer-col h5 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: .875rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    cursor: pointer;
}

.footer-col ul li a:hover,
.footer-col ul li:hover {
    color: var(--p);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: .8125rem;
    color: var(--muted2);
}

.footer-tags {
    display: flex;
    gap: .75rem;
}

.footer-tag {
    background: rgba(145, 21, 225, 0.08);
    color: var(--p);
    padding: .2rem .75rem;
    border-radius: 100px;
    font-size: .7rem;
    letter-spacing: .04em;
    font-weight: 600;
}

/* ─── SECTION DIVIDER ─── */
.section-divider {
    height: 1px;
    background: var(--border);
    margin: 0 3rem;
}

/* ─── AGENCY POLICY ─── */
.policy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.rules-col {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width:960px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #home {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 4rem;
        gap: 3rem;
    }

    .hero-action {
        width: 100%;
    }

    .action-card {
        max-width: 100%;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .two-path,
    .about-layout,
    .contact-layout,
    .earnings-layout,
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .testi-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .growth-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .commission-box {
        margin: 0 1.5rem 2rem;
        padding: 3rem 2rem;
    }

    .commission-box .pct {
        font-size: 5rem;
    }

    .final-cta {
        margin: 0 1.5rem 4rem;
        padding: 3rem 1.5rem;
    }

    .section-divider {
        margin: 0 1.5rem;
    }
}

@media (max-width:600px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .growth-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 45%;
    }
}