:root {
    --gp-black: #050506;
    --gp-dark: #0b0c10;
    --gp-card: #12151d;
    --gp-card-hover: #171b25;
    --gp-border: #2a2f3b;
    --gp-border-light: #434a59;
    --gp-white: #f5f6f8;
    --gp-gray: #a4abb8;
    --gp-muted: #747b88;
    --gp-red: #e50914;
    --gp-red-dark: #b70711;
    --gp-yellow: #ffcc00;
    --gp-green: #22c55e;
    --gp-purple: #7e22ce;
    --gp-shadow: 0 20px 64px rgba(0, 0, 0, 0.48);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gp-white);
    background: var(--gp-black);
    font-family: "Inter", sans-serif;
    line-height: 1.55;
}

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

.gpj-shell {
    width: min(1420px, calc(100% - 52px));
    margin: 0 auto;
}

.gpj-logo {
    display: inline-flex;
    align-items: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.gpj-logo span {
    color: var(--gp-red);
    margin-right: 2px;
}

.gpj-btn {
    border: 0;
    border-radius: 8px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.02rem;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.22s ease;
}

.gpj-btn:focus-visible {
    outline: 2px solid var(--gp-yellow);
    outline-offset: 2px;
}

.gpj-btn-large {
    padding: 17px 36px;
    font-size: 1.2rem;
}

.gpj-btn-small {
    padding: 10px 15px;
    font-size: 0.9rem;
}

.gpj-btn-red {
    color: #fff;
    background: var(--gp-red);
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.28);
}

.gpj-btn-red:hover {
    background: var(--gp-red-dark);
    transform: translateY(-2px);
}

.gpj-btn-yellow {
    color: #151515;
    background: var(--gp-yellow);
}

.gpj-btn-yellow:hover {
    background: #e4b600;
    transform: translateY(-2px);
}

.gpj-btn-ghost {
    color: #fff;
    background: transparent;
    border: 1px solid #4b5261;
}

.gpj-btn-ghost:hover {
    border-color: #8f97a7;
    background: rgba(255, 255, 255, 0.04);
}

.gpj-btn-purple {
    color: #fff;
    background: var(--gp-purple);
}

.gpj-btn-purple:hover {
    background: #671cb3;
    transform: translateY(-2px);
}

.gpj-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 6, 8, 0.95);
    border-bottom: 1px solid var(--gp-border);
    backdrop-filter: blur(8px);
}

.gpj-header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.gpj-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gpj-nav a {
    padding: 9px 12px;
    border-radius: 6px;
    color: #d0d5df;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.22s ease;
}

.gpj-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.gpj-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gpj-join-identity {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    border: 1px solid #3a4253;
    border-radius: 8px;
    background: linear-gradient(180deg, #151a23 0%, #0f131b 100%);
    padding: 6px 10px;
    line-height: 1.25;
}

.gpj-join-identity span {
    color: #dfe4ee;
    font-size: 0.78rem;
}

.gpj-join-identity strong {
    color: var(--gp-yellow);
    font-size: 0.86rem;
}

.gpj-join-identity a {
    color: #ff8c95;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gpj-join-identity a:hover {
    color: #ffffff;
}

.gpj-mobile-header {
    display: none;
}

.gpj-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1400;
    background: rgba(8, 8, 10, 0.98);
    padding: 86px 28px 38px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.22s ease;
}

.gpj-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gpj-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #3f4551;
    color: #fff;
    background: #11151e;
    font-size: 1.2rem;
}

.gpj-mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gpj-mobile-menu-content a {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-size: 1.7rem;
    color: #edf0f4;
    padding: 8px 0;
}

.gpj-mobile-menu-content a.gpj-btn {
    margin-top: 18px;
    font-size: 1.12rem;
}

.gpj-mobile-identity {
    border: 1px solid #3a4253;
    border-radius: 10px;
    background: #131824;
    padding: 10px 12px;
    display: grid;
    gap: 8px;
}

.gpj-mobile-identity span {
    color: #dbe1eb;
    font-size: 0.82rem;
}

.gpj-mobile-identity strong {
    color: var(--gp-yellow);
}

.gpj-mobile-identity a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid #5f687b;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gpj-hero {
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(700px 320px at 84% 6%, rgba(255, 204, 0, 0.13), transparent 72%),
        radial-gradient(740px 340px at 10% 100%, rgba(229, 9, 20, 0.12), transparent 72%),
        linear-gradient(180deg, #0a0b0e 0%, #060608 70%, #050506 100%);
}

.gpj-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.1;
    pointer-events: none;
}

.gpj-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    padding: 62px 0 54px;
}

.gpj-kicker {
    margin: 0 0 12px;
    color: #c4cada;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 1rem;
}

.gpj-hero-copy h1 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.04em;
    line-height: 0.95;
    font-size: clamp(2.7rem, 5.7vw, 5.2rem);
}

.gpj-hero-copy h1 span {
    color: var(--gp-yellow);
}

.gpj-subtitle {
    margin: 22px 0 30px;
    color: var(--gp-gray);
    max-width: 760px;
    font-size: 1.06rem;
}

.gpj-price-box {
    max-width: 560px;
    border-radius: 14px;
    border: 1px solid #2d3342;
    background: linear-gradient(180deg, #131824, #0f131c);
    padding: 18px 20px;
    box-shadow: var(--gp-shadow);
}

.gpj-price-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: #aab0bc;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid #2a3040;
}

.gpj-price-row:last-of-type {
    border-bottom: 0;
}

.gpj-main-row {
    align-items: baseline;
    padding-top: 11px;
}

.gpj-price-old {
    color: #8e95a5;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.56rem;
    letter-spacing: 0.06em;
}

.gpj-price-main {
    color: var(--gp-yellow);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 4.1vw, 3.35rem);
    line-height: 1;
    letter-spacing: 0.04em;
}

.gpj-price-main span {
    color: #f4e19b;
    font-size: 1rem;
}

.gpj-saving {
    margin: 10px 0 0;
    color: var(--gp-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.gpj-hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gpj-crypto-inline {
    margin-top: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #c4c9d3;
    font-size: 0.9rem;
}

.gpj-crypto-inline b {
    border: 1px solid #343a49;
    border-radius: 999px;
    padding: 5px 10px;
    background: #121722;
    font-size: 0.78rem;
}

.gpj-media-card {
    min-height: 540px;
    border-radius: 20px;
    border: 1px solid #2b313f;
    background:
        radial-gradient(320px 180px at 10% 5%, rgba(229, 9, 20, 0.2), transparent 72%),
        radial-gradient(300px 180px at 92% 90%, rgba(255, 204, 0, 0.2), transparent 72%),
        linear-gradient(145deg, #161b24, #10141d);
    box-shadow: var(--gp-shadow);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gpj-media-card h2 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    letter-spacing: 0.06em;
}

.gpj-media-card p {
    margin: 8px 0 0;
    color: #b8becb;
}

.gpj-media-logos {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gpj-media-logos img {
    width: 100%;
    height: 86px;
    object-fit: contain;
    border: 1px solid #31394a;
    border-radius: 11px;
    background: #0b0f15;
    padding: 8px;
}

.gpj-stats {
    border-top: 1px solid #2c3140;
    border-bottom: 1px solid #2c3140;
    background: linear-gradient(90deg, #a00812 0%, #ce0914 46%, #a00812 100%);
}

.gpj-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gpj-stats-grid > div {
    text-align: center;
    padding: 22px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.gpj-stats-grid > div:last-child {
    border-right: 0;
}

.gpj-stats-grid strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    line-height: 1;
}

.gpj-stats-grid span {
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.gpj-promo {
    background: #0a0c11;
    border-bottom: 1px solid var(--gp-border);
    padding: 86px 0;
}

.gpj-promo-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
    align-items: center;
}

.gpj-promo-copy h2 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    line-height: 1.02;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.gpj-promo-copy h2 span {
    color: var(--gp-red);
}

.gpj-promo-copy p {
    margin: 16px 0 0;
    color: var(--gp-gray);
}

.gpj-promo-copy ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.gpj-promo-copy li {
    position: relative;
    padding: 8px 0 8px 18px;
    color: #d9dde5;
    border-bottom: 1px solid #252b38;
}

.gpj-promo-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gp-yellow);
    transform: translateY(-50%);
}

.gpj-promo-tile {
    border: 1px solid #303746;
    border-radius: 16px;
    background: linear-gradient(145deg, #171c26, #10141d);
    padding: 28px 24px;
    box-shadow: var(--gp-shadow);
}

.gpj-promo-tile h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
}

.gpj-promo-tile p {
    margin: 10px 0 0;
    color: #b7bdc8;
}

.gpj-promo-logo-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gpj-promo-logo-grid img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border: 1px solid #333b4d;
    border-radius: 10px;
    background: #0a0d14;
    padding: 8px;
}

.gpj-section {
    padding: 72px 0;
}

.gpj-section-dark {
    background: #090b10;
}

.gpj-section-black {
    background: #060709;
}

.gpj-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.gpj-section-head h2 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

.gpj-section-head h2 span {
    color: var(--gp-red);
}

.gpj-section-head p {
    margin: 10px 0 0;
    color: var(--gp-gray);
}

.gpj-network-table {
    border: 1px solid var(--gp-border);
    border-radius: 16px;
    background: var(--gp-card);
    overflow: hidden;
}

.gpj-network-head,
.gpj-network-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 24px;
}

.gpj-network-head {
    border-bottom: 1px solid var(--gp-border);
    background: #0a0d13;
    color: #8f97a5;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.73rem;
    font-weight: 700;
}

.gpj-network-row {
    border-bottom: 1px solid #262d3b;
}

.gpj-network-row:last-child {
    border-bottom: 0;
}

.gpj-network-row:hover {
    background: var(--gp-card-hover);
}

.gpj-network-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gpj-network-brand img {
    width: 74px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #31394a;
    object-fit: contain;
    background: #0a0d14;
    padding: 6px;
}

.gpj-network-brand h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.06em;
    font-size: 1.43rem;
}

.gpj-network-brand p {
    margin: 2px 0 0;
    color: var(--gp-muted);
    font-size: 0.8rem;
}

.gpj-network-row > div:nth-child(2),
.gpj-network-row > div:nth-child(3) {
    color: var(--gp-yellow);
    font-weight: 700;
}

.gpj-network-row > div:nth-child(4) {
    color: #ff838a;
    font-weight: 700;
}

.gpj-network-total {
    margin-top: 18px;
    border: 1px solid var(--gp-border);
    border-top: 3px solid var(--gp-red);
    border-radius: 16px;
    background: linear-gradient(145deg, #10141c, #0a0d13);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 24px;
}

.gpj-network-total-left h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
}

.gpj-network-total-left p {
    margin: 8px 0 0;
    color: var(--gp-gray);
}

.gpj-quality-box {
    margin-top: 16px;
    border: 1px solid var(--gp-border);
    border-radius: 10px;
    background: #111520;
    padding: 14px;
}

.gpj-quality-box strong {
    display: block;
    color: var(--gp-yellow);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
}

.gpj-quality-box span {
    display: block;
    margin-top: 6px;
    color: var(--gp-gray);
    font-size: 0.88rem;
}

.gpj-network-total-right {
    text-align: right;
}

.gpj-was {
    margin: 0 0 4px;
    color: #8a91a0;
}

.gpj-was span {
    text-decoration: line-through;
}

.gpj-now-label {
    margin: 0;
    color: #b0b6c2;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gpj-now-price {
    margin: 2px 0 0;
    color: var(--gp-yellow);
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.gpj-now-period {
    margin: 4px 0 0;
    color: #adb3bf;
    font-size: 0.85rem;
}

.gpj-community {
    border-top: 1px solid var(--gp-border);
    border-bottom: 1px solid var(--gp-border);
    background: #0a0c11;
    padding: 42px 0;
}

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

.gpj-community-card {
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    background: linear-gradient(180deg, #141923, #10141d);
    padding: 24px 20px;
    transition: all 0.22s ease;
}

.gpj-community-card:hover {
    transform: translateY(-3px);
    border-color: var(--gp-border-light);
}

.gpj-community-card h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.08em;
}

.gpj-community-card p {
    margin: 10px 0 0;
    color: var(--gp-gray);
    font-size: 0.9rem;
}

.gpj-pricing-grid {
    max-width: 1160px;
    margin: 0 auto;
}

.gpj-pricing-row {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.gpj-pricing-row + .gpj-pricing-row {
    margin-top: 20px;
}

.gpj-plan-card {
    width: 100%;
    max-width: 350px;
    border: 1px solid #2c3240;
    border-radius: 16px;
    background: linear-gradient(180deg, #141a24 0%, #10151f 100%);
    padding: 22px;
    position: relative;
    box-shadow: var(--gp-shadow);
    transition: all 0.22s ease;
}

.gpj-plan-card:hover {
    transform: translateY(-4px);
    border-color: #4a5367;
}

.gpj-plan-card.is-selected {
    border-color: var(--gp-yellow);
    box-shadow: 0 14px 30px rgba(255, 204, 0, 0.16);
}

.gpj-plan-card h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.09em;
}

.gpj-plan-price {
    margin: 10px 0 0;
    color: var(--gp-yellow);
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.gpj-plan-price span {
    color: #d4d7df;
    font-size: 1rem;
}

.gpj-plan-meta {
    margin: 8px 0 0;
    color: var(--gp-muted);
    font-size: 0.86rem;
}

.gpj-plan-card ul {
    margin: 18px 0 20px;
    padding: 0;
    list-style: none;
}

.gpj-plan-card li {
    position: relative;
    padding: 9px 0 9px 18px;
    border-bottom: 1px solid #292f3f;
    color: #d8dce3;
    font-size: 0.9rem;
}

.gpj-plan-card li strong {
    color: #ffffff;
}

.gpj-plan-card li:last-child {
    border-bottom: 0;
}

.gpj-plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gp-green);
    transform: translateY(-50%);
}

.gpj-plan-card .gpj-btn {
    width: 100%;
}

.gpj-pricing-note {
    margin: 10px 0 0;
    color: #8f96a4;
    font-size: 0.72rem;
    line-height: 1.5;
}

.gpj-popular {
    border-color: #9b7a00;
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.14), #141923 42%, #111621);
}

.gpj-popular::before {
    content: "BEST VALUE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px;
    background: var(--gp-yellow);
    color: #111213;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.13em;
    font-size: 0.85rem;
    padding: 5px 14px;
}

.gpj-enterprise {
    border-color: #56318a;
    background: linear-gradient(180deg, rgba(126, 34, 206, 0.15), #151824 44%, #121520);
}

.gpj-checkout-panel {
    margin: 22px auto 0;
    max-width: 1020px;
    border: 1px solid #313749;
    border-radius: 16px;
    background: linear-gradient(180deg, #151b27, #101520);
    padding: 20px;
    box-shadow: var(--gp-shadow);
}

.gpj-checkout-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gpj-checkout-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #1f2532;
    border: 1px solid #394152;
    color: var(--gp-yellow);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.gpj-checkout-panel h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.85rem;
    letter-spacing: 0.09em;
}

.gpj-checkout-head p {
    margin: 6px 0 0;
    color: var(--gp-gray);
    font-size: 0.9rem;
}

.gpj-checkout-selected {
    margin-top: 12px;
    border: 1px solid #323a4a;
    border-radius: 10px;
    background: #101722;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #c4c9d3;
    font-size: 0.82rem;
}

.gpj-checkout-selected-label {
    color: #8f98a9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
}

.gpj-checkout-selected strong {
    color: #f4f6fa;
    font-size: 0.9rem;
}

.gpj-checkout-sep {
    color: #717b8f;
}

#checkoutSelectedPay {
    color: var(--gp-yellow);
}

.gpj-checkout-form {
    margin-top: 18px;
}

.gpj-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
}

.gpj-account-block {
    border: 1px solid #2f3646;
    border-radius: 12px;
    background: #111621;
    padding: 14px;
}

.gpj-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.gpj-field label {
    display: block;
    margin-bottom: 6px;
    color: #d4d8e1;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gpj-field input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #373f50;
    color: #fff;
    background: #0f141d;
    font-size: 0.95rem;
    font-family: "Inter", sans-serif;
}

.gpj-field input:focus {
    border-color: var(--gp-yellow);
    outline: none;
}

.gpj-field input.is-invalid {
    border-color: #f04450;
}

.gpj-field-error {
    min-height: 18px;
    margin-top: 5px;
    color: #ff7078;
    font-size: 0.78rem;
}

.gpj-summary-card {
    border: 1px solid #30384a;
    border-radius: 12px;
    background: linear-gradient(180deg, #131924, #0f141d);
    padding: 14px;
}

.gpj-summary-card h4 {
    margin: 0 0 10px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.09em;
}

.gpj-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #2a3040;
    font-size: 0.85rem;
}

.gpj-summary-row span {
    color: #a7aebc;
}

.gpj-summary-row strong {
    color: #f2f4f8;
    text-align: right;
    font-size: 0.87rem;
    line-height: 1.35;
    max-width: 62%;
}

.gpj-summary-account-row {
    border-color: rgba(255, 204, 0, 0.35);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255, 204, 0, 0.02));
    border-radius: 8px;
    padding: 8px 10px;
    margin: 2px 0;
}

.gpj-summary-account-row span {
    color: #ffe9a2;
}

.gpj-summary-account-row strong {
    color: #ffcc00;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.06em;
    font-size: 1.02rem;
}

.gpj-summary-total {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #464f63;
    background: #0f141d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gpj-summary-total span {
    color: #b8becc;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
}

.gpj-summary-total strong {
    color: var(--gp-yellow);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    font-size: 1.45rem;
}

.gpj-summary-crypto {
    margin-top: 12px;
}

.gpj-summary-crypto p {
    margin: 0 0 8px;
    color: #bec4d1;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.gpj-summary-crypto ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.gpj-summary-crypto li {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #303847;
    border-radius: 8px;
    background: #0f141d;
    padding: 6px 8px;
    font-size: 0.77rem;
    color: #d7dce6;
    font-weight: 600;
}

.gpj-summary-crypto .coin-logo {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.gpj-checkout-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.gpj-checkout-note {
    margin: 10px 0 0;
    color: #9ea7b8;
    font-size: 0.78rem;
}

.gpj-form-status {
    min-height: 20px;
    color: #b3bac8;
    font-size: 0.88rem;
}

.gpj-form-status.is-error {
    color: #ff7f86;
}

.gpj-form-status.is-success {
    color: var(--gp-green);
}

.gpj-form-status.is-progress {
    color: var(--gp-yellow);
}

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

.gpj-feature-card {
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    background: linear-gradient(180deg, #141923, #10151f);
    padding: 24px 20px;
    transition: all 0.22s ease;
}

.gpj-feature-card:hover {
    border-color: var(--gp-border-light);
    transform: translateY(-3px);
}

.gpj-feature-card h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.42rem;
    letter-spacing: 0.08em;
}

.gpj-feature-card p {
    margin: 10px 0 0;
    color: var(--gp-gray);
    font-size: 0.9rem;
}

.gpj-final-cta {
    border-top: 1px solid var(--gp-border);
    background:
        radial-gradient(700px 300px at 50% 0%, rgba(229, 9, 20, 0.16), transparent 72%),
        linear-gradient(180deg, #0a0b10, #060709);
    text-align: center;
    padding: 70px 0;
}

.gpj-final-cta h2 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 4.3vw, 3.7rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gpj-final-cta p {
    margin: 12px auto 28px;
    color: #bec3ce;
    max-width: 740px;
}

.gpj-crypto-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gpj-crypto-badges span {
    border: 1px solid #333a4a;
    border-radius: 999px;
    background: #111621;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: #d7dce5;
    font-weight: 600;
}

.gpj-footer {
    border-top: 1px solid var(--gp-border);
    background: #060608;
    padding: 44px 0 48px;
}

.gpj-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.gpj-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.gpj-footer-links a {
    color: #c1c6cf;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.gpj-footer-links a:hover {
    color: #fff;
}

.gpj-footer-bottom {
    margin-top: 18px;
    border-top: 1px solid #242a37;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.gpj-footer-copy {
    margin: 0;
    color: #8b93a3;
    max-width: 760px;
    font-size: 0.84rem;
}

.gpj-footer-badges {
    display: flex;
    gap: 8px;
}

.gpj-footer-badges span {
    border: 1px solid #353c4a;
    border-radius: 5px;
    background: #10151f;
    padding: 5px 10px;
    color: #adb3c1;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1220px) {
    .gpj-shell {
        width: min(1300px, calc(100% - 40px));
    }

    .gpj-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gpj-media-card {
        min-height: 0;
    }

    .gpj-promo-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gpj-community-grid,
    .gpj-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gpj-checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .gpj-nav {
        display: none;
    }

    .gpj-network-head {
        display: none;
    }

    .gpj-network-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gpj-network-row > div:nth-child(2),
    .gpj-network-row > div:nth-child(3),
    .gpj-network-row > div:nth-child(4) {
        padding-left: 88px;
    }

    .gpj-network-row > div:nth-child(2)::before {
        content: "Videos: ";
        color: #9198a7;
    }

    .gpj-network-row > div:nth-child(3)::before {
        content: "Sites: ";
        color: #9198a7;
    }

    .gpj-network-row > div:nth-child(4)::before {
        content: "Retail: ";
        color: #9198a7;
    }

    .gpj-network-total {
        flex-direction: column;
        text-align: left;
    }

    .gpj-network-total-right {
        text-align: left;
    }

    .gpj-pricing-row {
        flex-wrap: wrap;
    }

    .gpj-plan-card {
        max-width: 460px;
    }
}

@media (max-width: 860px) {
    .gpj-header {
        display: none;
    }

    .gpj-mobile-header {
        position: sticky;
        top: 0;
        z-index: 1100;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid #2a2f3c;
        background: rgba(7, 7, 9, 0.96);
        backdrop-filter: blur(8px);
        padding: 10px 14px;
    }

    .gpj-mobile-header .gpj-logo {
        font-size: 1.52rem;
        letter-spacing: 0.1em;
    }

    .gpj-mobile-header .gpj-btn {
        justify-self: center;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .gpj-menu-btn {
        width: 40px;
        height: 36px;
        border-radius: 8px;
        border: 1px solid #3f4653;
        background: #11151e;
        padding: 0 8px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .gpj-menu-btn span {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 99px;
        background: #eef0f4;
    }

    .gpj-shell {
        width: calc(100% - 26px);
    }

    .gpj-hero-grid {
        padding: 30px 0 36px;
        gap: 18px;
    }

    .gpj-subtitle {
        margin: 16px 0 18px;
        font-size: 0.95rem;
    }

    .gpj-price-box {
        padding: 14px;
    }

    .gpj-price-row {
        font-size: 0.88rem;
    }

    .gpj-price-old {
        font-size: 1.35rem;
    }

    .gpj-price-main {
        font-size: 2.5rem;
    }

    .gpj-hero-actions {
        margin-top: 16px;
        gap: 8px;
    }

    .gpj-hero-actions .gpj-btn {
        width: 100%;
    }

    .gpj-media-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .gpj-media-logos {
        gap: 8px;
    }

    .gpj-media-logos img {
        height: 70px;
    }

    .gpj-stats {
        background: #11151e;
        border-top: 2px solid var(--gp-red);
    }

    .gpj-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gpj-stats-grid > div {
        border-right: 1px solid #2a2f3c;
        border-bottom: 1px solid #2a2f3c;
        padding: 14px 8px;
    }

    .gpj-stats-grid > div:nth-child(2n) {
        border-right: 0;
    }

    .gpj-stats-grid > div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .gpj-promo,
    .gpj-section {
        padding: 42px 0;
    }

    .gpj-section-head {
        margin-bottom: 24px;
    }

    .gpj-section-head p {
        font-size: 0.92rem;
    }

    .gpj-network-row {
        padding: 14px;
    }

    .gpj-network-brand img {
        width: 64px;
        height: 40px;
    }

    .gpj-network-brand h3 {
        font-size: 1.25rem;
    }

    .gpj-network-row > div:nth-child(2),
    .gpj-network-row > div:nth-child(3),
    .gpj-network-row > div:nth-child(4) {
        padding-left: 74px;
    }

    .gpj-community-grid,
    .gpj-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gpj-community-card,
    .gpj-feature-card {
        padding: 18px 14px;
    }

    .gpj-plan-card {
        max-width: 100%;
        padding: 18px 14px;
    }

    .gpj-plan-price {
        font-size: 2.4rem;
    }

    .gpj-checkout-panel {
        margin-top: 16px;
        padding: 16px 12px;
    }

    .gpj-checkout-step {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 1.05rem;
    }

    .gpj-checkout-panel h3 {
        font-size: 1.4rem;
    }

    .gpj-checkout-head p {
        font-size: 0.84rem;
    }

    .gpj-account-block,
    .gpj-summary-card {
        padding: 12px;
    }

    .gpj-checkout-selected {
        margin-top: 10px;
        padding: 9px 10px;
        gap: 6px;
    }

    .gpj-checkout-actions .gpj-btn {
        width: 100%;
    }

    .gpj-final-cta {
        padding: 58px 0;
    }

    .gpj-final-cta p {
        margin: 8px auto 20px;
        font-size: 0.93rem;
    }

    .gpj-crypto-badges {
        margin-top: 20px;
        gap: 7px;
    }

    .gpj-footer {
        padding: 30px 0 36px;
    }

    .gpj-footer-top {
        justify-content: center;
        text-align: center;
    }

    .gpj-footer-links {
        justify-content: center;
    }

    .gpj-footer-bottom {
        margin-top: 14px;
        padding-top: 14px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .gpj-mobile-header {
        padding-inline: 10px;
    }

    .gpj-mobile-header .gpj-logo {
        font-size: 1.35rem;
    }

    .gpj-mobile-header .gpj-btn {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .gpj-mobile-menu-content a {
        font-size: 1.5rem;
    }

    .gpj-hero-copy h1 {
        font-size: 2.22rem;
    }

    .gpj-price-main {
        font-size: 2.2rem;
    }

    .gpj-price-main span {
        font-size: 0.92rem;
    }

    .gpj-checkout-selected {
        font-size: 0.75rem;
    }

    .gpj-summary-row strong {
        max-width: 58%;
        font-size: 0.82rem;
    }
}
/* v1.3 blueprint overrides */
.gpj-hero-login-link {
    margin: 10px 0 0;
    color: #9fa7b7;
    font-size: 0.88rem;
}

.gpj-hero-login-link a {
    color: #f0f2f7;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gpj-value-chips {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.gpj-value-chips > div {
    border: 1px solid #303748;
    border-radius: 10px;
    background: #101520;
    padding: 10px 8px;
    text-align: center;
}

.gpj-value-chips strong {
    display: block;
    color: #f4f6fa;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    font-size: 1.35rem;
    line-height: 1;
}

.gpj-value-chips span {
    display: block;
    margin-top: 4px;
    color: #aeb5c3;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.66rem;
}

.gpj-media-points {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.gpj-media-points li {
    position: relative;
    padding: 6px 0 6px 14px;
    color: #d7dbe5;
    font-size: 0.84rem;
    border-bottom: 1px solid #2a3040;
}

.gpj-media-points li:last-child {
    border-bottom: 0;
}

.gpj-media-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gp-yellow);
}

.gpj-included-today {
    display: inline-flex;
    margin-top: 8px;
    border: 1px solid #715900;
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(255, 204, 0, 0.1);
    color: #ffe082;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.gpj-captcha-block {
    margin-top: 14px;
    border: 1px solid #30394a;
    border-radius: 12px;
    background: #101721;
    padding: 12px;
    max-width: 100%;
    overflow: hidden;
}

.gpj-captcha-block.is-under-password {
    margin-top: 14px;
}

.gpj-captcha-block.is-above-actions {
    margin-top: 4px;
    margin-bottom: 6px;
}

.gpj-captcha-block.is-invalid {
    border-color: #f04450;
    box-shadow: 0 0 0 1px rgba(240, 68, 80, 0.35) inset;
}

.gpj-captcha-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
}

.gpj-captcha-head h4 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.09em;
    font-size: 1.3rem;
}

.gpj-captcha-head p {
    margin: 0;
    color: #9aa3b4;
    font-size: 0.79rem;
}

.gpj-captcha-panel {
    margin-top: 10px;
    max-width: 100%;
}

.gpj-captcha-panel[hidden] {
    display: none !important;
}

.gpj-captcha-image-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.gpj-captcha-image-row img {
    width: 180px;
    max-width: 100%;
    height: 56px;
    object-fit: cover;
    border: 1px solid #3a4356;
    border-radius: 8px;
    background: #0e131b;
}

.gpj-captcha-provider {
    min-height: 72px;
    border: 1px dashed #485068;
    border-radius: 8px;
    background: #0f141d;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.gpj-captcha-provider.is-invalid {
    border-color: #f04450;
    background: #1b1017;
}

.gpj-captcha-provider iframe {
    max-width: 100%;
}

.gpj-captcha-provider .g-recaptcha {
    max-width: 100%;
}

.gpj-captcha-help {
    margin: 8px 0 0;
    color: #98a0b0;
    font-size: 0.78rem;
}

.gpj-captcha-provider-error {
    min-height: 18px;
    margin-top: 6px;
    color: #ff7078;
    font-size: 0.78rem;
}

.gpj-captcha-provider-error[hidden] {
    display: none !important;
}

.gpj-included .gpj-section-head {
    margin-bottom: 22px;
}

.gpj-network-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gpj-network-mini-card {
    border: 1px solid #2d3444;
    border-radius: 12px;
    background: #111722;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gpj-network-mini-card img {
    width: 54px;
    height: 36px;
    object-fit: contain;
    border: 1px solid #333a4a;
    border-radius: 8px;
    background: #0b0f16;
    padding: 4px;
}

.gpj-network-mini-card h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.07em;
    font-size: 1.24rem;
}

.gpj-network-mini-card p {
    margin: 2px 0 0;
    color: #9aa3b5;
    font-size: 0.76rem;
}

.gpj-membership-brief {
    margin-top: 14px;
    border: 1px solid #313a4a;
    border-radius: 12px;
    background: linear-gradient(160deg, #121823, #0d131d);
    padding: 14px;
}

.gpj-membership-brief h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    font-size: 1.45rem;
}

.gpj-membership-brief ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.gpj-membership-brief li {
    position: relative;
    padding: 7px 0 7px 16px;
    border-bottom: 1px solid #2a3040;
    color: #d5dae5;
    font-size: 0.86rem;
}

.gpj-membership-brief li:last-child {
    border-bottom: 0;
}

.gpj-membership-brief li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    transform: translateY(-50%);
}

.gpj-mobile-planbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    border-top: 1px solid #3a4355;
    background: rgba(10, 12, 17, 0.98);
    backdrop-filter: blur(6px);
    padding: 10px 12px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transform: translateZ(0);
    min-height: 56px;
}

.gpj-mobile-planbar[hidden] {
    display: none !important;
}

.gpj-mobile-planbar #mobilePlanBarContinue[hidden] {
    display: none !important;
}

.gpj-mobile-planbar #mobilePlanBarContinue {
    min-width: 108px;
    transition: opacity 0.2s ease;
}

.gpj-mobile-planbar .gpj-btn.is-hidden {
    display: inline-flex !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.gpj-mobile-planbar-meta {
    min-width: 0;
}

.gpj-mobile-planbar-meta span {
    display: block;
    color: #b9c0ce;
    font-size: 0.71rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gpj-mobile-planbar-meta strong {
    display: block;
    color: var(--gp-yellow);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    font-size: 1.36rem;
    line-height: 1;
}

body.has-mobile-planbar {
    padding-bottom: 0;
}

@media (max-width: 1220px) {
    .gpj-network-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .gpj-value-chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gpj-captcha-block {
        padding: 10px;
    }

    .gpj-captcha-block.is-above-actions {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .gpj-network-mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gpj-mobile-planbar:not([hidden]) {
        display: flex;
    }

    body.has-mobile-planbar {
        padding-bottom: 72px;
    }
}

@media (max-width: 460px) {
    .gpj-captcha-image-row img {
        width: 148px;
        height: 50px;
    }

    .gpj-mobile-planbar {
        padding: 8px 10px;
    }

    .gpj-mobile-planbar .gpj-btn {
        padding: 9px 12px;
        font-size: 0.78rem;
    }

    .gpj-captcha-provider .g-recaptcha {
        transform: scale(0.86);
        transform-origin: left top;
    }

    .gpj-captcha-provider {
        min-height: 64px;
    }
}

@media (max-width: 360px) {
    .gpj-captcha-provider .g-recaptcha {
        transform: scale(0.78);
    }

    .gpj-captcha-provider {
        min-height: 58px;
    }
}
