:root {
    --bg: #061731;
    --bg2: #0a2346;
    --card: #0b1f3f;
    --card2: #102b55;
    --blue: #1f6fab;
    --blue2: #59c8ff;
    --gold: #ffd02a;
    --gold2: #f4a900;
    --red: #e22b2f;
    --white: #ffffff;
    --muted: #c9d6e7;
    --line: rgba(255, 217, 47, 0.9);
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top right, rgba(255, 208, 42, .18), transparent 30%), radial-gradient(circle at top left, rgba(226, 43, 47, .16), transparent 26%), linear-gradient(180deg, #051226, var(--bg2) 50%, #051426);
    color: var(--white);
    line-height: 1.35;
}

.page {
    width: min(1180px, 100%);
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0 18px 48px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    margin: 0 -18px 28px;
    padding: 24px 22px 32px;
    background: linear-gradient(105deg, rgba(5, 18, 38, .96) 0%, rgba(7, 27, 57, .94) 54%, rgba(15, 43, 83, .82) 100%), radial-gradient(circle at 78% 40%, rgba(255,208,42,.22), transparent 24%);
    border-bottom: 4px solid rgba(255,217,47,.9);
}

    .hero::before,
    .hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        opacity: .5;
        pointer-events: none;
    }

    .hero::before {
        width: 360px;
        height: 360px;
        border: 2px dashed rgba(94,216,255,.4);
        right: 9%;
        top: 42px;
    }

    .hero::after {
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255,217,47,.3), transparent 65%);
        right: 0;
        bottom: -40px;
    }

.topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: min(1160px, 100%);
    margin: 0 auto 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(24px, 3.6vw, 42px);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    width: 200px;
}

    .brand .p {
        display: grid;
        place-items: center;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(145deg, #0a57b0, #041f4a);
        border: 2px solid var(--gold);
        color: var(--gold);
        box-shadow: 0 0 24px rgba(94,216,255,.35);
        font-style: italic;
    }

    .brand span:last-child {
        color: var(--gold);
    }
/*NEWCODE HERE*/

.pblogo {
    width: 100%;
}
.referral-visual {
    position: relative;
    width: 500px;
    height: 630px;
}
.referral-visual img{
    width: 735px;
    position: absolute;
    bottom: -60px;
    left: -80px;
}
.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 2px solid rgba(255, 208, 42, .95);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    background: rgba(8, 24, 49, .72);
    box-shadow: 0 0 18px rgba(255,208,42,.18);
    white-space: nowrap;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: center;
    width: min(1160px, 100%);
    margin: 0 auto;
}

.hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 84px);
    line-height: .94;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 5px 0 rgba(0,0,0,.25), 0 0 22px rgba(255,217,47,.15);
}

    .hero h1 .gold {
        color: var(--gold);
    }

.hero .tagline {
    display: inline-block;
    margin: 18px 0 20px;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(31,111,171,.88), rgba(9,40,77,.55));
    color: #fff;
    font-size: clamp(17px, 2.2vw, 26px);
    font-weight: 800;
}

.benefit {
    max-width: 520px;
    padding: 18px 20px;
    border: 2px solid rgba(255,208,42,.95);
    border-radius: var(--radius);
    background: rgba(2, 14, 31, .7);
    box-shadow: 0 0 24px rgba(255,208,42,.20);
}

    .benefit .small {
        font-size: 20px;
        font-weight: 700;
    }

    .benefit .rate {
        font-size: clamp(60px, 9vw, 96px);
        font-weight: 900;
        color: var(--gold);
        line-height: .95;
    }

    .benefit .daily {
        font-size: 30px;
        font-weight: 900;
    }

    .benefit .bonus-line {
        margin-top: 8px;
        color: var(--muted);
        font-weight: 700;
    }

.phone-card {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

.phone {
    width: 190px;
    height: 340px;
    border-radius: 30px;
    background: #050b18;
    border: 8px solid #101827;
    box-shadow: 0 0 35px rgba(255,208,42,.25), var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-4deg);
}

.link-icon {
    width: 72px;
    height: 72px;
    border: 4px solid var(--blue2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    box-shadow: 0 0 24px rgba(94,216,255,.8);
    font-size: 34px;
}

.phone strong {
    font-size: 28px;
    line-height: 1;
    text-align: center;
}

.node {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(3,30,62,.82);
    box-shadow: 0 0 18px rgba(255,208,42,.4);
    display: grid;
    place-items: center;
    font-size: 25px;
}

.n1 {
    top: 18px;
    left: 18%;
}

.n2 {
    top: 70px;
    right: 12%;
}

.n3 {
    bottom: 40px;
    left: 8%;
}

.n4 {
    bottom: 82px;
    right: 24%;
}

.section {
    margin: 24px 0;
    background: linear-gradient(180deg, rgba(11,31,63,.98), rgba(8,24,49,.98));
    border: 2px solid rgba(255,208,42,.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-pad {
    padding: 24px;
}

.section-title {
    display: inline-block;
    margin: 0 0 18px;
    padding: 10px 18px;
    background: linear-gradient(90deg, var(--gold2), var(--gold));
    color: #081b35;
    border-radius: 0 999px 999px 0;
    box-shadow: 6px 6px 0 rgba(226,43,47,.95);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
}

.lead {
    margin: 0 0 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step-card,
.mini-card {
    color: #ffffff;
    border-radius: 20px;
    padding: 18px 16px;
    border: 3px solid rgba(255,208,42,.95);
    min-height: 170px;
    position: relative;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.step-num {
    position: absolute;
    top: -18px;
    left: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: #071b34;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
    border: 3px solid #fff;
}

.step-card img {
    width: 100%;
}
.step-card h3 {
    margin: 28px 0 8px;
    font-size: 22px;
    color: #ffffff;
}

.step-card p {
    margin: 0;
    font-weight: 700;
}

table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
    font-size: 17px;
}

th {
    background: linear-gradient(180deg, #ffe36a, var(--gold));
    color: #081b35;
    padding: 15px 10px;
    text-transform: uppercase;
    font-weight: 900;
    border: 1px solid rgba(244,169,0,.85);
}

td {
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(255,208,42,.45);
    color: #fff;
    background: rgba(7,24,50,.88);
    font-weight: 700;
}

tr:nth-child(even) td {
    background: rgba(12,43,83,.9);
}

td:first-child {
    color: #ffe36a;
    font-weight: 900;
}

.highlight {
    color: var(--gold);
    font-weight: 900;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.network {
    background: rgba(0,0,0,.2);
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,208,42,.45);
}

.tree {
    display: grid;
    gap: 12px;
    text-align: center;
    margin-top: 8px;
}

.tree-item {
    margin: 0 auto;
    width: min(340px, 100%);
    padding: 14px 18px;
    border-radius: 12px;
    color: #fff;
    border: 2px solid rgba(255,255,255,.22);
    font-weight: 900;
}

.you {
    background: linear-gradient(90deg, var(--gold2), var(--gold));
    color: #111;
}

.tier1 {
    background: #2f8fcb;
}

.tier2 {
    background: #145b92;
}

.tier3 {
    background: #d82d2d;
}

.arrow {
    color: var(--gold);
    font-size: 26px;
    line-height: 1;
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: end;
    margin-top: 6px;
}

label {
    display: block;
    color: #fff;
    font-weight: 900;
    margin-bottom: 8px;
}

input, select {
    width: 100%;
    border: 2px solid rgba(255,208,42,.75);
    border-radius: 10px;
    padding: 15px 13px;
    font-size: 18px;
    color: #fff;
    background: #071832;
    outline: none;
}

.result {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 13px;
    background: linear-gradient(90deg, var(--gold2), var(--gold));
    color: #111;
    font-weight: 900;
    font-size: 22px;
    border: 2px solid #fff;
}

.note {
    color: var(--muted);
    font-size: 14px;
    margin-top: 10px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold2), var(--gold));
    color: #061933;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 0 22px rgba(255,217,47,.35);
    border: 0;
}

    .btn.secondary {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,208,42,.75);
    }



.raf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.raf-card {
    min-width: 0;
    background: rgba(0,0,0,.16);
    border: 1px solid rgba(255,208,42,.45);
    border-radius: 16px;
    padding: 16px;
}

    .raf-card table {
        table-layout: fixed;
    }

    .raf-card h3 {
        margin: 0 0 12px;
        color: var(--gold);
        font-size: 22px;
        font-weight: 900;
    }

.raf-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,208,42,.10);
    border: 1px solid rgba(255,208,42,.38);
    color: #fff;
    font-weight: 800;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.reward-card {
    background: linear-gradient(180deg, #102f5e, #071b35);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    min-height: 126px;
}

    .reward-card h3 {
        margin: 0 0 10px;
        font-size: 18px;
    }

    .reward-card strong {
        color: var(--gold);
        font-size: 26px;
    }

details {
    margin-top: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,217,47,.5);
    border-radius: 14px;
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--gold);
    font-weight: 900;
    font-size: 18px;
    list-style: none;
}

    summary::-webkit-details-marker {
        display: none;
    }

.details-body {
    padding: 0 20px 20px;
    color: #fff;
}

    .details-body li {
        margin: 8px 0;
    }

    .details-body h3 {
        margin-top: 18px;
    }

.qa details:first-of-type,
.qa details:nth-of-type(2) {
    border-color: rgba(255,208,42,.8);
}

.qa p {
    margin: 0 20px 18px;
    color: #fff;
}

.bottom-cta {
    text-align: center;
    padding: 28px 22px;
    background: radial-gradient(circle at center top, rgba(255,208,42,.18), transparent 40%), linear-gradient(180deg, rgba(16,47,94,.96), rgba(7,27,53,.96));
}

    .bottom-cta h2 {
        margin: 0 0 8px;
        font-size: clamp(26px, 4vw, 38px);
        color: var(--gold);
    }

    .bottom-cta p {
        margin: 0 auto 18px;
        max-width: 680px;
        color: #fff;
        font-weight: 700;
    }



.rate-mobile-cards {
    display: none;
}

.rate-card {
    border: 1px solid rgba(255,208,42,.65);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(7,24,50,.88);
    margin-bottom: 12px;
}

.rate-range {
    background: linear-gradient(180deg, #ffe36a, var(--gold));
    color: #081b35;
    padding: 12px 14px;
    font-weight: 900;
    font-size: 17px;
}

.rate-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    .rate-values div {
        padding: 12px 8px;
        text-align: center;
        border-right: 1px solid rgba(255,208,42,.45);
        font-weight: 900;
    }

        .rate-values div:last-child {
            border-right: 0;
        }

    .rate-values span {
        display: block;
        color: var(--gold);
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 4px;
        letter-spacing: .3px;
    }
@media (max-width: 1170px) {
    .referral-visual img {
        width: 150%;
    }
}
@media (max-width: 1024px) {
    .referral-visual img {
        width: 128%;
        bottom: -10px;
        left: -50px;
    }
}
@media (max-width: 860px) {
    .referral-visual {
        width: 500px;
        height: 560px;
    }
        .referral-visual img {
            width: 120%;
            bottom: -10px;
            left: 0;
        }
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .phone-card {
        min-height: 220px;
    }

    .phone {
        width: 136px;
        height: 244px;
        border-radius: 24px;
        border-width: 6px;
    }

    .link-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .phone strong {
        font-size: 20px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .raf-grid {
        grid-template-columns: 1fr;
    }

    .calculator {
        grid-template-columns: 1fr;
    }

    .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-pad {
        padding: 18px;
    }

    table {
        font-size: 15px;
    }

    th, td {
        padding: 12px 6px;
    }
}

@media (max-width: 520px) {
    .referral-visual {
        width: 100%;
        height: unset;
    }

        .referral-visual img {
            width: 100%;
            position: relative;
            left: 0;
            bottom: -5%;
        }
    .hero {
        min-height: auto;
        padding-top: 16px;
    }

    .topbar {
        margin-bottom: 18px;
    }

    .brand {
        font-size: 25px;
        width: 35vw;
    }

        .brand .p {
            width: 40px;
            height: 40px;
            border-radius: 10px;
        }

    .support-btn {
        min-height: 38px;
        padding: 0 12px;
        font-size: 13px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero .tagline {
        font-size: 16px;
    }

    .benefit .small {
        font-size: 16px;
    }

    .benefit .daily {
        font-size: 22px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        border-radius: 0 16px 16px 0;
        font-size: 22px;
    }

    .step-card {
        min-height: 130px;
    }

    .node {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .n1 {
        left: 10%;
    }

    .n2 {
        right: 7%;
    }

    .n3 {
        left: 14%;
    }

    .n4 {
        right: 14%;
    }

    table {
        font-size: 14px;
        table-layout: fixed;
    }

    th, td {
        padding: 10px 5px;
        word-break: normal;
    }

    .raf-card {
        padding: 14px;
    }

        .raf-card table th,
        .raf-card table td {
            font-size: 13px;
            padding: 10px 4px;
            line-height: 1.25;
        }

        .raf-card table th {
            white-space: normal;
        }

    .raf-note {
        font-size: 14px;
        line-height: 1.45;
    }

    .commission-example-table th:nth-child(1),
    .commission-example-table td:nth-child(1) {
        width: 38%;
    }

    .commission-example-table th:nth-child(2),
    .commission-example-table td:nth-child(2) {
        width: 24%;
    }

    .commission-example-table th:nth-child(3),
    .commission-example-table td:nth-child(3) {
        width: 38%;
    }

    .commission-example-table th {
        font-size: 13px;
        line-height: 1.2;
    }

    .commission-example-table td {
        font-size: 15px;
    }


    .rate-table {
        display: none;
    }

    .rate-mobile-cards {
        display: block;
    }

    .rate-card {
        margin-bottom: 12px;
    }

    .rate-range {
        font-size: 16px;
    }

    .rate-values div {
        font-size: 16px;
        line-height: 1.2;
    }

    .rate-values span {
        font-size: 11px;
    }

    .cta-row .btn {
        width: 100%;
    }
}
.qa-newbox, .term-pad {
    margin: 0 20px;
    margin-bottom: 20px;
}
.qa-newbox details {
    border: none;
}
@media (max-width: 520px) {
    .qa-newbox, .term-pad {
        margin: 0 10px;
        margin-bottom: 10px;
    }
}