:root {
    --ink: #141416;
    --muted: #60646c;
    --paper: #f5f7f2;
    --panel: #ffffff;
    --line: rgba(20, 20, 22, 0.12);
    --line-dark: rgba(255, 255, 255, 0.2);
    --green: #1bbf75;
    --green-dark: #0d7c4c;
    --red: #f04a57;
    --blue: #2f6bff;
    --gold: #dba83f;
    --radius: 8px;
    --shadow: 0 24px 70px rgba(14, 18, 24, 0.18);
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-display: "Unbounded", "Manrope", "Segoe UI", sans-serif;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    text-rendering: geometricPrecision;
}

body::selection {
    background: rgba(27, 191, 117, 0.28);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid #87f2b6;
    outline-offset: 4px;
}

svg {
    display: block;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 100;
    transform: translateY(-140%);
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 14px;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    left: 50%;
    z-index: 20;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 64px;
    padding: 10px 12px 10px 16px;
    color: #ffffff;
    background: rgba(16, 18, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.48), transparent 29%),
        radial-gradient(circle at 82% 84%, rgba(219, 168, 63, 0.22), transparent 30%),
        linear-gradient(145deg, #42d7d0 0%, #1bbf75 54%, #0a4f38 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow:
        0 16px 36px rgba(27, 191, 117, 0.28),
        0 0 36px rgba(47, 107, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.brand-mark::after {
    inset: -60% -40%;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.34) 49%, transparent 60%);
    transform: translateX(-42%) rotate(8deg);
    animation: brand-mark-sheen 5.2s ease-in-out infinite;
}

.brand-mark svg {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    overflow: visible;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.brand-card-rear {
    fill: none;
    stroke: rgba(255, 255, 255, 0.34);
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-wallet-body {
    fill: rgba(4, 12, 13, 0.44);
    stroke: rgba(255, 255, 255, 0.68);
    stroke-width: 2.2;
    stroke-linejoin: round;
}

.brand-wallet-pocket {
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(255, 255, 255, 0.54);
    stroke-width: 2;
    stroke-linejoin: round;
}

.brand-card-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.72);
    stroke-width: 2.3;
    stroke-linecap: round;
}

.brand-card-line-short {
    opacity: 0.56;
}

.brand-wallet-dot {
    fill: #dba83f;
    filter: drop-shadow(0 0 8px rgba(219, 168, 63, 0.7));
}

.brand-copy {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.brand-word {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0;
}

.brand-sub {
    color: rgba(255, 255, 255, 0.54);
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links {
    justify-self: center;
    display: flex;
    gap: 6px;
}

.nav-links a,
.login-link {
    border-radius: var(--radius);
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.login-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border: 0;
    border-radius: var(--radius);
    padding: 0 20px;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.btn-telegram {
    color: #ffffff;
    background: linear-gradient(135deg, #25a4e8, #1bbf75 62%, #0d7c4c);
    box-shadow: 0 18px 36px rgba(27, 191, 117, 0.28);
}

.btn-telegram path {
    fill: currentColor;
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(37, 164, 232, 0.32);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.btn-small {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
}

.btn-small svg {
    width: 18px;
    height: 18px;
}

.hero {
    position: relative;
    min-height: 88svh;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background: #050707;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 76% 24%, rgba(37, 164, 232, 0.2), transparent 24%),
        radial-gradient(circle at 78% 76%, rgba(27, 191, 117, 0.26), transparent 30%),
        radial-gradient(circle at 42% 88%, rgba(219, 168, 63, 0.1), transparent 28%),
        linear-gradient(90deg, rgba(5, 7, 8, 0.98) 0%, rgba(5, 7, 8, 0.91) 42%, rgba(5, 7, 8, 0.62) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    height: 170px;
    background: linear-gradient(180deg, rgba(245, 247, 242, 0), var(--paper));
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 7, 8, 0.98) 0%, rgba(5, 7, 8, 0.94) 42%, rgba(5, 7, 8, 0.52) 58%, transparent 78%);
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.24;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 7px);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.hero-stage {
    position: absolute;
    top: 92px;
    right: max(20px, calc((100vw - 1180px) / 2 - 60px));
    z-index: 1;
    width: min(62vw, 880px);
    height: 660px;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.hero-lattice {
    position: absolute;
    inset: -18% -10% -4% -12%;
    border-radius: 42px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 96px),
        linear-gradient(25deg, rgba(135, 242, 182, 0.08) 0 1px, transparent 1px 118px),
        radial-gradient(circle at 64% 22%, rgba(37, 164, 232, 0.18), transparent 28%),
        radial-gradient(circle at 58% 72%, rgba(27, 191, 117, 0.18), transparent 32%);
    opacity: 0.78;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
    animation: hero-lattice-drift 16s ease-in-out infinite;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 0 42px rgba(135, 242, 182, 0.06), 0 0 72px rgba(27, 191, 117, 0.08);
    backdrop-filter: blur(2px);
}

.hero-orbit-one {
    top: 46px;
    right: 52px;
    width: 580px;
    height: 420px;
    transform: rotate(-7deg);
    animation: hero-panel-float 9s ease-in-out infinite;
}

.hero-orbit-two {
    top: 245px;
    right: 132px;
    width: 520px;
    height: 355px;
    transform: rotate(9deg);
    animation: hero-panel-float 10.5s ease-in-out infinite reverse;
}

.hero-card-scene {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: hero-scene-breathe 8s ease-in-out infinite;
}

.ad-pay-card {
    position: absolute;
    overflow: hidden;
    width: 390px;
    min-height: 238px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow:
        0 38px 90px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform-style: preserve-3d;
    backdrop-filter: blur(18px);
}

.ad-pay-card::before,
.ad-pay-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.ad-pay-card::before {
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 25% 64%, rgba(255, 255, 255, 0.12)),
        radial-gradient(circle at 82% 18%, var(--card-halo), transparent 30%);
    mix-blend-mode: screen;
    opacity: 0.82;
}

.ad-pay-card::after {
    inset: auto 18px 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-halo), transparent);
    opacity: 0.75;
    animation: hero-card-rail 3.8s ease-in-out infinite;
}

.ad-card-sheen {
    position: absolute;
    inset: -42% -60%;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.24) 48%, transparent 62%);
    transform: translateX(-42%) rotate(6deg);
    animation: hero-card-sheen 5.8s ease-in-out infinite;
}

.card-facebook {
    --card-halo: rgba(37, 164, 232, 0.52);
    top: 74px;
    right: 110px;
    z-index: 3;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 20%, rgba(24, 119, 242, 0.34), transparent 32%),
        linear-gradient(145deg, rgba(17, 20, 23, 0.96), rgba(9, 12, 13, 0.82));
    transform: rotate(6deg);
    animation: hero-card-float-main 9s ease-in-out infinite;
}

.card-google {
    --card-halo: rgba(251, 188, 5, 0.48);
    top: 214px;
    right: 276px;
    z-index: 2;
    color: #131515;
    background:
        radial-gradient(circle at 72% 22%, rgba(251, 188, 5, 0.28), transparent 29%),
        radial-gradient(circle at 18% 78%, rgba(52, 168, 83, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(236, 242, 232, 0.78));
    transform: rotate(-10deg);
    animation: hero-card-float-back 10.5s ease-in-out infinite;
}

.card-tiktok {
    --card-halo: rgba(254, 44, 85, 0.42);
    top: 332px;
    right: 32px;
    z-index: 4;
    color: #111515;
    background:
        radial-gradient(circle at 20% 18%, rgba(37, 244, 238, 0.2), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(254, 44, 85, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(249, 252, 244, 0.9), rgba(226, 235, 224, 0.78));
    transform: rotate(4deg);
    animation: hero-card-float-front 8.6s ease-in-out infinite;
}

.ad-card-top,
.ad-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ad-chip {
    display: inline-block;
    width: 58px;
    height: 42px;
    border-radius: 11px;
    background:
        linear-gradient(90deg, transparent 47%, rgba(20, 20, 22, 0.36) 48% 52%, transparent 53%),
        linear-gradient(180deg, transparent 46%, rgba(20, 20, 22, 0.3) 47% 53%, transparent 54%),
        linear-gradient(135deg, #e7b94d, #b98923);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 12px 24px rgba(0, 0, 0, 0.16);
}

.ad-platform-logo {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 34px rgba(0, 0, 0, 0.18);
}

.card-google .ad-platform-logo,
.card-tiktok .ad-platform-logo {
    background: rgba(255, 255, 255, 0.72);
}

.ad-platform-logo svg {
    width: 34px;
    height: 34px;
}

.ad-card-title {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 23px;
    line-height: 1;
}

.ad-card-lines {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 11px;
    margin-top: 24px;
}

.ad-card-lines span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.18;
}

.card-facebook .ad-card-lines span {
    opacity: 0.32;
}

.ad-card-lines span:nth-child(1) {
    width: 82%;
}

.ad-card-lines span:nth-child(2) {
    width: 58%;
}

.ad-card-lines span:nth-child(3) {
    width: 72%;
}

.ad-card-footer {
    margin-top: 26px;
    font-size: 13px;
    color: currentColor;
}

.ad-card-footer span {
    opacity: 0.58;
}

.ad-card-footer strong {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1;
}

.signal-dot {
    position: absolute;
    z-index: 5;
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
        var(--dot-bg);
    box-shadow: 0 22px 50px var(--dot-shadow);
    animation: hero-signal-float 6s ease-in-out infinite;
}

.signal-dot::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 4px solid rgba(255, 255, 255, 0.44);
    border-radius: 10px;
}

.signal-dot-one {
    --dot-bg: #25f4ee;
    --dot-shadow: rgba(37, 244, 238, 0.28);
    top: 58px;
    right: 454px;
}

.signal-dot-two {
    --dot-bg: #1877f2;
    --dot-shadow: rgba(24, 119, 242, 0.3);
    top: 230px;
    right: 20px;
    animation-delay: 800ms;
}

.signal-dot-three {
    --dot-bg: #34a853;
    --dot-shadow: rgba(52, 168, 83, 0.3);
    top: 524px;
    right: 286px;
    animation-delay: 1400ms;
}

.hero-inner {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 164px 0 72px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.platform-inner h2,
.white-offer-copy h2,
.income-copy h2,
.process-copy h2,
.final-inner h2 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: 0;
    line-height: 1.04;
}

.hero h1 {
    max-width: 760px;
    font-size: 58px;
}

.hero-wordmark {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.08em;
    text-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.wordmark-amp {
    display: inline-grid;
    place-items: center;
    width: 0.98em;
    height: 0.98em;
    color: #081211;
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.86), transparent 28%),
        linear-gradient(135deg, #87f2b6, #2f6bff 52%, #1bbf75);
    border-radius: 0.2em;
    box-shadow:
        0 20px 46px rgba(27, 191, 117, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transform: translateY(0.08em) rotate(-3deg);
    animation: wordmark-amp-glow 4.8s ease-in-out infinite;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 22px;
    line-height: 1.45;
}

.cashback-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
    color: #ffffff;
}

.cashback-inline span {
    color: rgba(135, 242, 182, 0.92);
    font-size: 0.72em;
    font-weight: 900;
    text-transform: uppercase;
}

.cashback-inline strong {
    color: #87f2b6;
    font-family: var(--font-display);
    font-size: 1.08em;
    text-shadow: 0 0 26px rgba(27, 191, 117, 0.42);
}

.cashback-spotlight {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    width: min(410px, 100%);
    min-height: 112px;
    margin-top: 28px;
    padding: 18px 22px;
    border: 1px solid rgba(135, 242, 182, 0.24);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 16% 20%, rgba(135, 242, 182, 0.18), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow:
        0 24px 58px rgba(27, 191, 117, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
}

.cashback-spotlight::before,
.cashback-spotlight::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.cashback-spotlight::before {
    inset: 0;
    z-index: -1;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 24%,
            rgba(135, 242, 182, 0.95) 35%,
            transparent 48% 66%,
            rgba(47, 107, 255, 0.72) 78%,
            transparent 92% 100%
        );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.78;
    animation: benefit-border-spin 6.6s linear infinite;
}

.cashback-spotlight::after {
    inset: -55% -45%;
    background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.28) 48%, transparent 60%);
    transform: translateX(-42%) rotate(5deg);
    animation: cashback-sheen 5.4s ease-in-out infinite;
}

.cashback-spotlight span,
.cashback-spotlight strong,
.cashback-spotlight em {
    position: relative;
    z-index: 1;
}

.cashback-spotlight span {
    color: rgba(135, 242, 182, 0.9);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cashback-spotlight strong {
    margin-top: 2px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 46px;
    line-height: 0.95;
    text-shadow:
        0 0 26px rgba(135, 242, 182, 0.36),
        0 18px 38px rgba(0, 0, 0, 0.24);
}

.cashback-spotlight em {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
}

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

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(760px, 100%);
    margin: 58px 0 0;
}

.hero-metrics div {
    min-height: 130px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.hero-metrics dt {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
}

.hero-metrics dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

@keyframes hero-lattice-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.74;
    }
    50% {
        transform: translate3d(-18px, 10px, 0);
        opacity: 0.92;
    }
}

@keyframes hero-panel-float {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 18px -14px;
    }
}

@keyframes hero-scene-breathe {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -8px, 0) scale(1.018);
    }
}

@keyframes hero-card-sheen {
    0%,
    38% {
        transform: translateX(-48%) rotate(6deg);
        opacity: 0;
    }
    48% {
        opacity: 0.86;
    }
    68%,
    100% {
        transform: translateX(48%) rotate(6deg);
        opacity: 0;
    }
}

@keyframes hero-card-rail {
    0%,
    100% {
        transform: scaleX(0.42);
        opacity: 0.24;
    }
    50% {
        transform: scaleX(1);
        opacity: 0.88;
    }
}

@keyframes hero-card-float-main {
    0%,
    100% {
        transform: rotate(6deg) translate3d(0, 0, 0);
    }
    50% {
        transform: rotate(5deg) translate3d(0, -16px, 0);
    }
}

@keyframes hero-card-float-back {
    0%,
    100% {
        transform: rotate(-10deg) translate3d(0, 0, 0);
    }
    50% {
        transform: rotate(-8.5deg) translate3d(-12px, 12px, 0);
    }
}

@keyframes hero-card-float-front {
    0%,
    100% {
        transform: rotate(4deg) translate3d(0, 0, 0);
    }
    50% {
        transform: rotate(5.5deg) translate3d(16px, -12px, 0);
    }
}

@keyframes hero-signal-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.05);
    }
}

@keyframes brand-mark-sheen {
    0%,
    42% {
        transform: translateX(-48%) rotate(8deg);
        opacity: 0;
    }
    52% {
        opacity: 0.9;
    }
    72%,
    100% {
        transform: translateX(48%) rotate(8deg);
        opacity: 0;
    }
}

@keyframes wordmark-amp-glow {
    0%,
    100% {
        box-shadow:
            0 20px 46px rgba(27, 191, 117, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }
    50% {
        box-shadow:
            0 26px 62px rgba(47, 107, 255, 0.28),
            0 0 36px rgba(135, 242, 182, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

@keyframes cashback-sheen {
    0%,
    36% {
        transform: translateX(-46%) rotate(5deg);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    72%,
    100% {
        transform: translateX(46%) rotate(5deg);
        opacity: 0;
    }
}

@keyframes platform-tile-in {
    0% {
        opacity: 0;
        transform: translate3d(18px, 16px, 0) rotateX(5deg);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateX(0);
        filter: blur(0);
    }
}

@keyframes platform-tile-sheen {
    0%,
    38% {
        transform: translateX(-44%) rotate(5deg);
        opacity: 0;
    }
    50% {
        opacity: 0.62;
    }
    72%,
    100% {
        transform: translateX(44%) rotate(5deg);
        opacity: 0;
    }
}

@keyframes platform-logo-aura {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.28;
    }
    50% {
        transform: scale(1.14);
        opacity: 0.58;
    }
}

.section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(10px);
    transition:
        opacity 760ms var(--ease-premium),
        transform 760ms var(--ease-premium),
        filter 760ms var(--ease-premium);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-ready [data-reveal="left"] {
    transform: translate3d(-30px, 0, 0);
}

.reveal-ready [data-reveal="right"] {
    transform: translate3d(30px, 0, 0);
}

.reveal-ready [data-reveal="scale"] {
    transform: translate3d(0, 24px, 0) scale(0.96);
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    will-change: auto;
}

.reveal-ready .benefit-card[data-reveal] {
    transition:
        opacity 760ms var(--ease-premium),
        transform 760ms var(--ease-premium),
        filter 760ms var(--ease-premium),
        translate 760ms cubic-bezier(0.19, 1, 0.22, 1),
        border-color 760ms ease,
        box-shadow 760ms ease;
}

.reveal-ready .benefit-card[data-reveal]:hover,
.reveal-ready .benefit-card[data-reveal]:focus-within {
    transition-delay: 0ms;
}

.platform-band {
    position: relative;
    z-index: 2;
    margin-top: -62px;
    padding: 40px 0;
    overflow: hidden;
}

.platform-band::before {
    content: "";
    position: absolute;
    inset: 10px 0 auto;
    z-index: -1;
    height: 220px;
    background:
        radial-gradient(ellipse at 70% 22%, rgba(37, 164, 232, 0.12), transparent 34%),
        radial-gradient(ellipse at 84% 28%, rgba(27, 191, 117, 0.1), transparent 30%);
    filter: blur(8px);
    opacity: 0.9;
}

.platform-inner {
    display: grid;
    grid-template-columns: minmax(430px, 0.75fr) minmax(700px, 1fr);
    gap: 30px;
    align-items: center;
}

.platform-inner h2 {
    max-width: 470px;
    font-size: 34px;
}

.platform-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    perspective: 1100px;
}

.platform-logos li {
    --platform-accent: var(--green);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 104px;
    padding: 20px;
    background:
        radial-gradient(circle at 18% 24%, color-mix(in srgb, var(--platform-accent), transparent 84%), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 246, 0.84));
    border: 1px solid rgba(20, 20, 22, 0.1);
    border-radius: var(--radius);
    box-shadow:
        0 22px 56px rgba(20, 20, 22, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font-weight: 800;
    backdrop-filter: blur(10px);
    transform: translateZ(0);
    transition:
        transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 320ms ease,
        box-shadow 320ms ease;
    animation: platform-tile-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.platform-logos li::before,
.platform-logos li::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.platform-logos li::before {
    inset: 0;
    z-index: 0;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 24%,
            color-mix(in srgb, var(--platform-accent), transparent 18%) 36%,
            transparent 48% 70%,
            rgba(255, 255, 255, 0.9) 82%,
            transparent 94% 100%
        );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.34;
    animation: benefit-border-spin 7.4s linear infinite;
}

.platform-logos li::after {
    inset: -65% -50%;
    z-index: 0;
    background: linear-gradient(115deg, transparent 38%, color-mix(in srgb, var(--platform-accent), transparent 72%) 49%, transparent 60%);
    transform: translateX(-44%) rotate(5deg);
    opacity: 0;
    animation: platform-tile-sheen 6.2s ease-in-out infinite;
}

.platform-logos li:hover {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, var(--platform-accent), transparent 45%);
    box-shadow:
        0 32px 76px rgba(20, 20, 22, 0.14),
        0 0 44px color-mix(in srgb, var(--platform-accent), transparent 84%),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.platform-logos li:hover::before {
    opacity: 0.88;
}

.platform-logos li:hover::after {
    opacity: 0.72;
}

.platform-logos li > * {
    position: relative;
    z-index: 1;
}

.platform-logos li > span:last-child {
    font-size: 22px;
    letter-spacing: 0;
    white-space: nowrap;
}

.platform-tiktok {
    --platform-accent: #25f4ee;
}

.platform-facebook {
    --platform-accent: #1877f2;
    animation-delay: 80ms;
}

.platform-google {
    --platform-accent: #4285f4;
    animation-delay: 160ms;
}

.logo-icon {
    position: relative;
    isolation: isolate;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    flex: 0 0 auto;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.88), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(236, 241, 238, 0.74));
    border-radius: var(--radius);
    box-shadow:
        0 18px 34px color-mix(in srgb, var(--platform-accent), transparent 78%),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.logo-icon::before {
    content: "";
    position: absolute;
    inset: -9px;
    z-index: -1;
    border-radius: inherit;
    background: color-mix(in srgb, var(--platform-accent), transparent 72%);
    filter: blur(14px);
    opacity: 0.42;
    animation: platform-logo-aura 4.8s ease-in-out infinite;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 8px 14px rgba(20, 20, 22, 0.12));
}

.logo-tiktok {
    background:
        radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(145deg, #101416, #060808);
    box-shadow:
        0 20px 42px rgba(37, 244, 238, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.logo-tiktok svg {
    width: 44px;
    height: 44px;
}

.tk-cyan {
    fill: #25f4ee;
}

.tk-red {
    fill: #fe2c55;
}

.tk-main {
    fill: #ffffff;
}

.logo-facebook {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.36), transparent 31%),
        linear-gradient(145deg, #2c91ff, #0f5ed7 58%, #063a9d);
    box-shadow:
        0 20px 42px rgba(24, 119, 242, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-facebook svg path {
    fill: #ffffff;
}

.logo-google {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.98), transparent 33%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 241, 246, 0.78));
    box-shadow:
        0 20px 42px rgba(66, 133, 244, 0.18),
        0 12px 28px rgba(52, 168, 83, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.logo-google .ads-green {
    fill: #34a853;
}

.logo-google .ads-blue {
    fill: #4285f4;
}

.logo-google .ads-yellow {
    fill: #fbbc04;
}

.logo-facebook svg,
.logo-google svg {
    width: 42px;
    height: 42px;
}

.benefits,
.white-offer,
.income-section,
.process {
    padding: 92px 0;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.process-copy h2,
.final-inner h2 {
    font-size: 42px;
}

.section-heading p,
.process-copy p {
    max-width: 630px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.benefit-payouts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.benefit-payouts span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    color: #0d7b45;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background:
        linear-gradient(135deg, rgba(135, 242, 182, 0.22), rgba(65, 123, 255, 0.08)),
        rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(27, 191, 117, 0.24);
    border-radius: 999px;
    box-shadow:
        0 14px 34px rgba(27, 191, 117, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.benefit-payouts span::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 18px rgba(27, 191, 117, 0.55);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 38px;
    perspective: 1200px;
}

.benefit-card {
    --card-lift: 0px;
    --card-accent: var(--green);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 290px;
    padding: 26px;
    translate: 0 var(--card-lift);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 246, 0.9)),
        var(--panel);
    border: 1px solid rgba(20, 20, 22, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 22px 52px rgba(20, 20, 22, 0.07);
    transition:
        translate 760ms cubic-bezier(0.19, 1, 0.22, 1),
        border-color 760ms ease,
        box-shadow 760ms ease;
    animation: none;
    will-change: translate;
}

.benefit-card::before,
.benefit-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.benefit-card::before {
    inset: 0;
    z-index: 0;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 26%,
            color-mix(in srgb, var(--card-accent), transparent 15%) 36%,
            transparent 48% 68%,
            rgba(255, 255, 255, 0.9) 78%,
            transparent 88% 100%
        );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.18;
    transition: opacity 900ms ease;
    animation: benefit-border-spin 18s linear infinite;
}

.benefit-card::after {
    top: var(--glow-y, -18%);
    left: var(--glow-x, -24%);
    z-index: 0;
    width: 210px;
    height: 210px;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--card-accent), transparent 25%), transparent 64%);
    filter: blur(14px);
    opacity: 0.18;
    transform: translate3d(0, 0, 0);
    transition: opacity 900ms ease;
    animation: benefit-soft-orbit 18s ease-in-out infinite;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card:hover,
.benefit-card:focus-within {
    translate: 0 calc(var(--card-lift) - 4px);
    border-color: color-mix(in srgb, var(--card-accent), transparent 48%);
    box-shadow:
        0 28px 72px rgba(20, 20, 22, 0.12),
        0 0 0 1px color-mix(in srgb, var(--card-accent), transparent 72%),
        0 0 46px color-mix(in srgb, var(--card-accent), transparent 86%);
}

.benefit-card:hover::before,
.benefit-card:focus-within::before {
    opacity: 0.48;
}

.benefit-card:hover::after,
.benefit-card:focus-within::after {
    opacity: 0.34;
}

.benefit-card:nth-child(2) {
    --card-lift: 28px;
    --card-accent: var(--blue);
    animation-delay: 90ms;
}

.benefit-card:nth-child(3) {
    --card-accent: var(--gold);
    background:
        radial-gradient(circle at 20% 8%, rgba(219, 168, 63, 0.16), transparent 38%),
        linear-gradient(145deg, #171918, #101312);
    color: #ffffff;
    animation-delay: 180ms;
}

.benefit-card:nth-child(3)::before {
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 24%,
            rgba(219, 168, 63, 0.94) 36%,
            transparent 48% 66%,
            rgba(135, 242, 182, 0.74) 78%,
            transparent 90% 100%
        );
}

.benefit-card h3,
.steps h3 {
    margin: 22px 0 10px;
    font-size: 22px;
    line-height: 1.15;
}

.benefit-card h3 {
    display: block;
    position: relative;
    width: fit-content;
    margin-bottom: 16px;
}

.benefit-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: min(150px, 72%);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
    background-size: 220% 100%;
    opacity: 0.46;
    animation: benefit-title-rail 8.6s ease-in-out infinite;
}

.benefit-card p,
.steps p {
    margin: 0;
    color: var(--muted);
}

.benefit-card:nth-child(3) p {
    color: rgba(255, 255, 255, 0.7);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: var(--ink);
    border-radius: var(--radius);
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(20, 20, 22, 0.16);
    transition:
        transform 760ms cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 760ms ease;
}

.benefit-number::after {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border-radius: inherit;
    background: color-mix(in srgb, var(--card-accent), transparent 72%);
    filter: blur(10px);
    opacity: 0.24;
    transition:
        opacity 900ms ease,
        transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
    animation: benefit-number-aura 9.6s ease-in-out infinite;
}

.benefit-card:hover .benefit-number,
.benefit-card:focus-within .benefit-number {
    transform: translate3d(0, -2px, 0) scale(1.025);
    box-shadow: 0 18px 36px color-mix(in srgb, var(--card-accent), transparent 72%);
}

.benefit-card:hover .benefit-number::after,
.benefit-card:focus-within .benefit-number::after {
    opacity: 0.54;
    transform: scale(1.04);
}

.benefit-card:nth-child(2) .benefit-number {
    background: var(--blue);
}

.benefit-card:nth-child(3) .benefit-number {
    color: var(--ink);
    background: var(--gold);
}

@property --spin {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@keyframes benefit-card-in {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes benefit-border-spin {
    to {
        --spin: 360deg;
    }
}

@keyframes benefit-soft-orbit {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    45% {
        transform: translate3d(26px, 18px, 0) scale(1.08);
    }
    70% {
        transform: translate3d(72px, 48px, 0) scale(0.98);
    }
}

@keyframes benefit-number-aura {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.06);
        opacity: 0.38;
    }
}

@keyframes benefit-title-rail {
    0%,
    100% {
        background-position: 110% 50%;
        opacity: 0.32;
    }
    50% {
        background-position: -10% 50%;
        opacity: 0.68;
    }
}

@keyframes white-offer-grid {
    to {
        background-position: 72px 72px, 72px 72px;
    }
}

@keyframes white-proof-sheen {
    0%,
    36% {
        transform: translateX(-45%) rotate(5deg);
        opacity: 0;
    }
    50% {
        opacity: 0.68;
    }
    74%,
    100% {
        transform: translateX(45%) rotate(5deg);
        opacity: 0;
    }
}

.white-offer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(27, 191, 117, 0.1), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(37, 164, 232, 0.1), transparent 28%),
        linear-gradient(180deg, #f5f7f2 0%, #ffffff 100%);
}

.white-offer::before,
.white-offer::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.white-offer::before {
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(rgba(20, 20, 22, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 20, 22, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
    opacity: 0.58;
    animation: white-offer-grid 18s linear infinite;
}

.white-offer::after {
    left: -20%;
    right: -20%;
    top: 50%;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 191, 117, 0.34), rgba(37, 164, 232, 0.28), transparent);
    box-shadow: 0 0 42px rgba(27, 191, 117, 0.18);
}

.white-offer-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    gap: 58px;
    align-items: center;
}

.white-offer-copy {
    max-width: 640px;
}

.white-offer-copy h2 {
    font-size: 42px;
}

.white-offer-copy > p {
    max-width: 610px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.white-proof {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 380px;
    padding: 28px;
    color: #ffffff;
    border: 1px solid rgba(135, 242, 182, 0.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 14%, rgba(135, 242, 182, 0.2), transparent 35%),
        radial-gradient(circle at 86% 18%, rgba(47, 107, 255, 0.18), transparent 34%),
        linear-gradient(145deg, #111817, #07100f 62%, #0c2b22);
    box-shadow:
        0 34px 86px rgba(20, 20, 22, 0.18),
        0 0 70px rgba(27, 191, 117, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.white-proof::before,
.white-proof::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.white-proof::before {
    inset: 0;
    z-index: -1;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 24%,
            rgba(135, 242, 182, 0.88) 36%,
            transparent 48% 68%,
            rgba(255, 255, 255, 0.62) 82%,
            transparent 94% 100%
        );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.64;
    animation: benefit-border-spin 7.2s linear infinite;
}

.white-proof::after {
    inset: -62% -48%;
    z-index: 0;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.2) 48%, transparent 58%);
    transform: translateX(-45%) rotate(5deg);
    opacity: 0;
    animation: white-proof-sheen 6.6s ease-in-out infinite;
}

.white-proof > * {
    position: relative;
    z-index: 1;
}

.white-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 14px;
    color: #87f2b6;
    border: 1px solid rgba(135, 242, 182, 0.24);
    border-radius: var(--radius);
    background: rgba(135, 242, 182, 0.08);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.white-proof-badge i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #87f2b6;
    box-shadow: 0 0 18px rgba(135, 242, 182, 0.86);
}

.white-proof ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.white-proof li {
    display: grid;
    gap: 6px;
    min-height: 82px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.white-proof strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
}

.white-proof span:not(.white-proof-badge) {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

@keyframes income-grid-flow {
    to {
        background-position: 84px 84px, 84px 84px;
    }
}

@keyframes income-aurora-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(34px, -22px, 0) scale(1.12);
    }
}

@keyframes income-panel-sheen {
    0%,
    34% {
        transform: translateX(-46%) rotate(6deg);
        opacity: 0;
    }
    48% {
        opacity: 0.78;
    }
    72%,
    100% {
        transform: translateX(46%) rotate(6deg);
        opacity: 0;
    }
}

.income-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 18%, rgba(47, 107, 255, 0.2), transparent 30%),
        radial-gradient(circle at 78% 18%, rgba(27, 191, 117, 0.28), transparent 34%),
        radial-gradient(circle at 72% 92%, rgba(219, 168, 63, 0.12), transparent 30%),
        linear-gradient(135deg, #050707 0%, #0b1514 48%, #0e3428 100%);
}

.income-section::before,
.income-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.income-section::before {
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(90deg, transparent, #000 17%, #000 83%, transparent);
    opacity: 0.56;
    animation: income-grid-flow 16s linear infinite;
}

.income-section::after {
    left: -18%;
    right: -18%;
    top: 50%;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 164, 232, 0.58), rgba(135, 242, 182, 0.8), transparent);
    box-shadow:
        0 0 46px rgba(27, 191, 117, 0.28),
        0 0 96px rgba(37, 164, 232, 0.2);
}

.income-aurora {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(20px);
    animation: income-aurora-float 8.6s ease-in-out infinite;
}

.income-aurora-one {
    width: 430px;
    height: 430px;
    left: 2%;
    top: -210px;
    background: radial-gradient(circle, rgba(37, 164, 232, 0.26), transparent 64%);
}

.income-aurora-two {
    width: 560px;
    height: 560px;
    right: -110px;
    bottom: -300px;
    background: radial-gradient(circle, rgba(27, 191, 117, 0.34), transparent 62%);
    animation-delay: -3s;
}

.income-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
    gap: 58px;
    align-items: center;
}

.income-copy {
    max-width: 560px;
}

.income-copy .section-kicker {
    color: #87f2b6;
    text-shadow: 0 0 24px rgba(135, 242, 182, 0.28);
}

.income-copy h2 {
    font-size: 44px;
}

.income-copy > p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.income-calculator {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 456px;
    padding: 30px;
    border: 1px solid rgba(135, 242, 182, 0.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 12%, rgba(135, 242, 182, 0.18), transparent 36%),
        radial-gradient(circle at 86% 18%, rgba(47, 107, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
    box-shadow:
        0 36px 96px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(27, 191, 117, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
}

.income-calculator::before,
.income-calculator::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.income-calculator::before {
    inset: 0;
    z-index: -1;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 22%,
            rgba(135, 242, 182, 0.86) 34%,
            transparent 46% 66%,
            rgba(47, 107, 255, 0.72) 82%,
            transparent 96% 100%
        );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.7;
    animation: benefit-border-spin 7s linear infinite;
}

.income-calculator::after {
    inset: -62% -48%;
    z-index: 0;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.22) 48%, transparent 58%);
    transform: translateX(-46%) rotate(6deg);
    opacity: 0;
    animation: income-panel-sheen 6.8s ease-in-out infinite;
}

.income-calculator > * {
    position: relative;
    z-index: 1;
}

.income-gridline {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 82px),
        linear-gradient(25deg, rgba(135, 242, 182, 0.07) 0 1px, transparent 1px 118px);
    opacity: 0.52;
    mask-image: radial-gradient(circle at 55% 48%, #000, transparent 72%);
}

.income-topline {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
}

.income-topline span,
.income-result span {
    color: rgba(135, 242, 182, 0.9);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.income-topline strong {
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.income-range {
    position: relative;
    display: block;
    height: 48px;
    margin-top: 40px;
}

.income-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-50%);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.22),
        0 0 24px rgba(27, 191, 117, 0.08);
}

.income-range-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #25a4e8, #87f2b6 55%, #dba83f);
    box-shadow:
        0 0 18px rgba(135, 242, 182, 0.58),
        0 0 38px rgba(37, 164, 232, 0.28);
    transition: width 180ms ease;
}

.income-range input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 48px;
    margin: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.income-range input::-webkit-slider-runnable-track {
    height: 48px;
    background: transparent;
}

.income-range input::-moz-range-track {
    height: 48px;
    background: transparent;
}

.income-range input::-webkit-slider-thumb {
    width: 30px;
    height: 30px;
    margin-top: 9px;
    appearance: none;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 30%),
        linear-gradient(135deg, #87f2b6, #1bbf75 58%, #2f6bff);
    box-shadow:
        0 0 0 7px rgba(135, 242, 182, 0.12),
        0 0 34px rgba(27, 191, 117, 0.5),
        0 12px 26px rgba(0, 0, 0, 0.26);
}

.income-range input::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 30%),
        linear-gradient(135deg, #87f2b6, #1bbf75 58%, #2f6bff);
    box-shadow:
        0 0 0 7px rgba(135, 242, 182, 0.12),
        0 0 34px rgba(27, 191, 117, 0.5),
        0 12px 26px rgba(0, 0, 0, 0.26);
}

.income-range input:focus-visible {
    outline: 2px solid #87f2b6;
    outline-offset: 7px;
    border-radius: 999px;
}

.income-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    font-weight: 800;
}

.income-result {
    display: grid;
    gap: 8px;
    min-height: 168px;
    margin-top: 34px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 88% 20%, rgba(219, 168, 63, 0.2), transparent 32%),
        linear-gradient(145deg, rgba(5, 8, 8, 0.62), rgba(255, 255, 255, 0.055));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 20px 50px rgba(0, 0, 0, 0.18);
}

.income-result strong {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 0.98;
    text-shadow:
        0 0 34px rgba(135, 242, 182, 0.32),
        0 22px 50px rgba(0, 0, 0, 0.24);
}

.income-result em {
    color: rgba(255, 255, 255, 0.64);
    font-style: normal;
    font-weight: 800;
}

.income-presets {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.income-presets button {
    min-height: 46px;
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.065);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.income-presets button:hover,
.income-presets button:focus-visible,
.income-presets button.is-active {
    color: #ffffff;
    border-color: rgba(135, 242, 182, 0.46);
    background: rgba(27, 191, 117, 0.18);
    box-shadow:
        0 14px 34px rgba(27, 191, 117, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

@keyframes process-grid-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.84;
    }
    50% {
        transform: translate3d(-18px, 12px, 0);
        opacity: 1;
    }
}

@keyframes process-route-sweep {
    0%,
    100% {
        transform: translateX(-9%) scaleX(0.72);
        opacity: 0.28;
    }
    50% {
        transform: translateX(9%) scaleX(1);
        opacity: 0.72;
    }
}

@keyframes process-copy-rail {
    0%,
    100% {
        opacity: 0.35;
        transform: scaleY(0.74);
    }
    50% {
        opacity: 0.92;
        transform: scaleY(1);
    }
}

@keyframes process-card-in {
    from {
        opacity: 0;
        transform: translate3d(22px, 18px, 0);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes process-card-sheen {
    0%,
    38% {
        transform: translateX(-44%) rotate(4deg);
        opacity: 0;
    }
    48% {
        opacity: 0.58;
    }
    68%,
    100% {
        transform: translateX(44%) rotate(4deg);
        opacity: 0;
    }
}

@keyframes process-number-pulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.16);
        opacity: 0.6;
    }
}

@keyframes final-grid-drift {
    to {
        background-position: 64px 64px, 64px 64px;
    }
}

@keyframes final-route-sweep {
    0%,
    100% {
        transform: translateX(-8%) scaleX(0.76);
        opacity: 0.34;
    }
    50% {
        transform: translateX(8%) scaleX(1);
        opacity: 0.78;
    }
}

@keyframes final-aurora-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(34px, -24px, 0) scale(1.12);
    }
}

@keyframes final-status-pulse {
    0%,
    100% {
        transform: scale(0.82);
        opacity: 0.58;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

@keyframes final-token-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
    }
    50% {
        transform: translate3d(0, -13px, 0) rotate(2deg);
    }
}

@keyframes final-card-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -10px, 0) rotate(-0.7deg);
    }
}

@keyframes final-card-sheen {
    0%,
    38% {
        transform: translateX(-42%) rotate(5deg);
        opacity: 0;
    }
    50% {
        opacity: 0.76;
    }
    72%,
    100% {
        transform: translateX(42%) rotate(5deg);
        opacity: 0;
    }
}

.process {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(248, 250, 246, 0.98), rgba(255, 255, 255, 0.96)),
        #ffffff;
}

.process::before,
.process::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.process::before {
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(115deg, rgba(20, 20, 22, 0.05) 0 1px, transparent 1px 92px),
        linear-gradient(25deg, rgba(27, 191, 117, 0.07) 0 1px, transparent 1px 118px),
        radial-gradient(ellipse at 70% 18%, rgba(37, 164, 232, 0.13), transparent 38%),
        radial-gradient(ellipse at 76% 78%, rgba(27, 191, 117, 0.12), transparent 42%);
    opacity: 0.9;
    animation: process-grid-drift 18s ease-in-out infinite;
}

.process::after {
    left: -18%;
    right: -18%;
    top: 54%;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 191, 117, 0.2), rgba(37, 164, 232, 0.34), transparent);
    box-shadow: 0 0 38px rgba(37, 164, 232, 0.18);
    animation: process-route-sweep 7.5s ease-in-out infinite;
}

.process-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
    gap: 52px;
    align-items: center;
}

.process-copy {
    position: relative;
    padding: 28px 0;
}

.process-copy::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: -22px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(27, 191, 117, 0.95), rgba(37, 164, 232, 0.8), transparent);
    box-shadow: 0 0 24px rgba(27, 191, 117, 0.28);
    animation: process-copy-rail 4.2s ease-in-out infinite;
}

.steps {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.steps::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 51px;
    width: 2px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(27, 191, 117, 0.12), rgba(27, 191, 117, 0.7), rgba(37, 164, 232, 0.72), rgba(219, 168, 63, 0.58));
    box-shadow: 0 0 28px rgba(27, 191, 117, 0.22);
    animation: process-copy-rail 4.8s ease-in-out infinite reverse;
}

.steps li {
    --step-accent: var(--green);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    min-height: 126px;
    padding: 22px 24px 22px 30px;
    border: 1px solid rgba(20, 20, 22, 0.09);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 246, 0.72));
    box-shadow:
        0 22px 58px rgba(20, 20, 22, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    transition:
        transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 360ms ease,
        box-shadow 360ms ease;
    animation: process-card-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.steps li:nth-child(2) {
    --step-accent: var(--blue);
    animation-delay: 90ms;
}

.steps li:nth-child(3) {
    --step-accent: var(--gold);
    animation-delay: 180ms;
}

.steps li::before,
.steps li::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.steps li::before {
    inset: 0;
    z-index: 0;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 24%,
            color-mix(in srgb, var(--step-accent), transparent 12%) 36%,
            transparent 48% 70%,
            rgba(255, 255, 255, 0.92) 82%,
            transparent 94% 100%
        );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.34;
    animation: benefit-border-spin 7.2s linear infinite;
}

.steps li::after {
    inset: -60% -45%;
    z-index: 0;
    background: linear-gradient(115deg, transparent 38%, color-mix(in srgb, var(--step-accent), transparent 70%) 48%, transparent 58%);
    transform: translateX(-40%) rotate(4deg);
    opacity: 0;
    animation: process-card-sheen 6.4s ease-in-out infinite;
}

.steps li > * {
    position: relative;
    z-index: 1;
}

.steps li:hover,
.steps li:focus-within {
    transform: translate3d(-8px, -5px, 0);
    border-color: color-mix(in srgb, var(--step-accent), transparent 48%);
    box-shadow:
        0 34px 82px rgba(20, 20, 22, 0.12),
        0 0 0 1px color-mix(in srgb, var(--step-accent), transparent 76%),
        0 0 46px color-mix(in srgb, var(--step-accent), transparent 86%);
}

.steps li:hover::before,
.steps li:focus-within::before {
    opacity: 0.92;
}

.steps li:hover::after,
.steps li:focus-within::after {
    opacity: 0.72;
}

.steps span {
    display: grid;
    position: relative;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #ffffff;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--step-accent), #111 12%), color-mix(in srgb, var(--step-accent), #042112 34%));
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 20px;
    box-shadow:
        0 16px 34px color-mix(in srgb, var(--step-accent), transparent 70%),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.steps span::before,
.steps span::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.steps span::before {
    inset: -9px;
    z-index: -1;
    border-radius: inherit;
    background: color-mix(in srgb, var(--step-accent), transparent 76%);
    filter: blur(12px);
    opacity: 0.45;
    animation: process-number-pulse 4.4s ease-in-out infinite;
}

.steps span::after {
    inset: 9px;
    border: 2px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    opacity: 0.75;
}

.steps h3 {
    position: relative;
    display: block;
    width: fit-content;
    margin-top: 2px;
}

.steps h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: min(126px, 78%);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--step-accent), transparent);
    background-size: 220% 100%;
    opacity: 0.58;
    animation: benefit-title-rail 3.6s ease-in-out infinite;
}

.final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 104px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 20%, rgba(47, 107, 255, 0.2), transparent 29%),
        radial-gradient(circle at 80% 16%, rgba(27, 191, 117, 0.36), transparent 34%),
        radial-gradient(circle at 70% 100%, rgba(37, 164, 232, 0.16), transparent 31%),
        linear-gradient(135deg, #070a0b 0%, #0b1a17 46%, #10553d 100%);
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.final-cta::before {
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
    opacity: 0.54;
    animation: final-grid-drift 14s linear infinite;
}

.final-cta::after {
    left: -18%;
    right: -18%;
    top: 50%;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(135, 242, 182, 0.7), rgba(37, 164, 232, 0.58), transparent);
    box-shadow:
        0 0 40px rgba(27, 191, 117, 0.28),
        0 0 84px rgba(37, 164, 232, 0.2);
    animation: final-route-sweep 7.4s ease-in-out infinite;
}

.final-aurora {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px);
    opacity: 0.66;
    animation: final-aurora-float 9s ease-in-out infinite;
}

.final-aurora-one {
    width: 420px;
    height: 420px;
    left: 6%;
    bottom: -210px;
    background: radial-gradient(circle, rgba(27, 191, 117, 0.34), transparent 64%);
}

.final-aurora-two {
    width: 520px;
    height: 520px;
    top: -280px;
    right: 8%;
    background: radial-gradient(circle, rgba(37, 164, 232, 0.26), transparent 62%);
    animation-delay: -3.2s;
}

.final-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.46fr);
    gap: 58px;
    align-items: center;
}

.final-copy {
    max-width: 790px;
}

.final-inner .section-kicker {
    color: #87f2b6;
    text-shadow: 0 0 24px rgba(135, 242, 182, 0.28);
}

.final-inner h2 {
    max-width: 790px;
    font-size: 48px;
    text-wrap: balance;
}

.final-lead {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
}

.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
}

.final-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.final-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #87f2b6;
    box-shadow: 0 0 18px rgba(135, 242, 182, 0.78);
    animation: final-status-pulse 2.4s ease-in-out infinite;
}

.final-visual {
    position: relative;
    min-height: 360px;
}

.final-orbit-token {
    position: absolute;
    z-index: 2;
    display: grid;
    min-width: 92px;
    min-height: 48px;
    place-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.22),
        0 0 36px rgba(27, 191, 117, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-family: var(--font-display);
    font-size: 16px;
    backdrop-filter: blur(12px);
    animation: final-token-float 6.2s ease-in-out infinite;
}

.final-orbit-one {
    top: -22px;
    left: -24px;
}

.final-orbit-two {
    right: -24px;
    bottom: -20px;
    animation-delay: -2.1s;
}

.final-deal-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 342px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background:
        radial-gradient(circle at 14% 10%, rgba(135, 242, 182, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.28),
        0 0 76px rgba(27, 191, 117, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
    animation: final-card-float 8.6s ease-in-out infinite;
}

.final-deal-card::before,
.final-deal-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.final-deal-card::before {
    inset: 0;
    z-index: -1;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(
            from var(--spin, 0deg),
            transparent 0 22%,
            rgba(135, 242, 182, 0.78) 34%,
            transparent 46% 68%,
            rgba(47, 107, 255, 0.68) 82%,
            transparent 96% 100%
        );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.64;
    animation: benefit-border-spin 7s linear infinite;
}

.final-deal-card::after {
    inset: -70% -45%;
    z-index: 0;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.2) 48%, transparent 58%);
    transform: translateX(-42%) rotate(5deg);
    opacity: 0;
    animation: final-card-sheen 6.6s ease-in-out infinite;
}

.final-deal-card > * {
    position: relative;
    z-index: 1;
}

.final-card-top {
    display: grid;
    gap: 4px;
}

.final-card-top span {
    color: #87f2b6;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.final-card-top strong {
    font-family: var(--font-display);
    font-size: 58px;
    line-height: 0.98;
    text-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.final-card-rows {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
}

.final-card-rows div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.final-card-rows dt {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 800;
}

.final-card-rows dd {
    margin: 0;
    color: #ffffff;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.final-card-note {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 12px;
    align-items: start;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.final-card-note span {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #dba83f;
    box-shadow: 0 0 18px rgba(219, 168, 63, 0.7);
}

.final-card-note p {
    margin: 0;
}

.site-footer {
    padding: 26px 0;
    color: rgba(255, 255, 255, 0.72);
    background: #141416;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
}

.footer-inner span {
    font-weight: 800;
}

.footer-inner a:hover {
    color: #ffffff;
}

@media (min-width: 1180px) {
    .hero h1 {
        font-size: 72px;
    }
}

@media (min-width: 961px) and (max-height: 760px) {
    .hero-inner {
        padding-top: 126px;
        padding-bottom: 38px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-lead {
        max-width: 690px;
        margin-top: 16px;
        font-size: 20px;
    }

    .cashback-spotlight {
        width: 340px;
        min-height: 90px;
        margin-top: 18px;
        padding: 14px 18px;
    }

    .cashback-spotlight strong {
        font-size: 38px;
    }

    .cashback-spotlight em {
        margin-top: 4px;
        font-size: 12px;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .hero-metrics {
        margin-top: 28px;
    }

    .hero-metrics div {
        min-height: 98px;
        padding: 16px;
    }

    .hero-metrics dt {
        font-size: 24px;
    }

    .hero-stage {
        top: 88px;
        transform: scale(0.92);
        transform-origin: top right;
    }

    .platform-band {
        margin-top: -78px;
    }
}

@media (max-width: 1120px) {
    .platform-inner {
        grid-template-columns: 1fr;
    }

    .platform-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .nav-links,
    .login-link {
        display: none;
    }

    .hero-inner {
        padding-top: 142px;
    }

    .hero-stage {
        top: 112px;
        right: -270px;
        width: 820px;
        opacity: 0.74;
        transform: scale(0.86);
        transform-origin: top right;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-lead {
        font-size: 19px;
    }

    .cashback-spotlight {
        width: min(360px, 100%);
    }

    .platform-inner,
    .white-offer-inner,
    .income-inner,
    .process-inner,
    .final-inner {
        grid-template-columns: 1fr;
    }

    .platform-logos,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .platform-inner {
        gap: 24px;
    }

    .platform-logos li {
        min-height: 78px;
    }

    .benefit-card,
    .benefit-card:nth-child(2) {
        --card-lift: 0px;
        min-height: auto;
        transform: none;
    }

    .income-inner {
        gap: 38px;
    }

    .white-offer-inner {
        gap: 34px;
    }

    .white-offer-copy {
        max-width: 720px;
    }

    .white-proof {
        width: min(100%, 640px);
    }

    .income-copy {
        max-width: 720px;
    }

    .income-calculator {
        width: min(100%, 640px);
    }

    .final-inner {
        gap: 38px;
    }

    .final-visual {
        width: min(100%, 560px);
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .site-header {
        top: max(10px, env(safe-area-inset-top));
        width: calc(100% - 20px);
        min-height: 58px;
        padding: 8px 9px 8px 10px;
    }

    .brand {
        min-width: 0;
        gap: 8px;
        font-size: 14px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-mark svg {
        width: 29px;
        height: 29px;
    }

    .brand-word {
        font-size: 13px;
    }

    .brand-sub {
        display: none;
    }

    .btn-small span {
        display: none;
    }

    .btn-small {
        width: 42px;
        padding: 0;
    }

    .hero {
        min-height: 84svh;
    }

    .hero-bg {
        background:
            radial-gradient(circle at 70% 28%, rgba(37, 164, 232, 0.18), transparent 32%),
            radial-gradient(circle at 72% 82%, rgba(27, 191, 117, 0.26), transparent 38%),
            linear-gradient(180deg, rgba(5, 7, 8, 0.97) 0%, rgba(5, 7, 8, 0.9) 62%, rgba(5, 7, 8, 0.68) 100%);
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.9) 38%, rgba(5, 7, 8, 0.58) 68%, transparent 100%),
            linear-gradient(90deg, rgba(5, 7, 8, 0.72), rgba(5, 7, 8, 0.16));
    }

    .hero-stage {
        top: 226px;
        right: -88px;
        width: 720px;
        height: 620px;
        opacity: 0.42;
        transform: scale(0.68);
        transform-origin: top right;
    }

    .hero-lattice {
        inset: -10% -4% 4% -8%;
        opacity: 0.7;
    }

    .hero-orbit {
        opacity: 0.52;
    }

    .hero-inner,
    .section-inner {
        width: min(100% - 28px, 1180px);
    }

    .hero-inner {
        padding-top: 124px;
        padding-bottom: 54px;
    }

    .eyebrow,
    .section-kicker {
        font-size: 12px;
    }

    .hero h1 {
        max-width: 330px;
        font-size: 38px;
    }

    .wordmark-amp {
        border-radius: 0.18em;
    }

    .hero-lead {
        max-width: 360px;
        margin-top: 18px;
        font-size: 17px;
    }

    .cashback-inline {
        gap: 6px;
    }

    .cashback-spotlight {
        width: 100%;
        min-height: 96px;
        margin-top: 20px;
        padding: 15px 17px;
    }

    .cashback-spotlight strong {
        font-size: 36px;
    }

    .cashback-spotlight em {
        font-size: 12px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

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

    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 24px;
    }

    .hero-metrics div {
        min-height: 104px;
        padding: 12px 10px;
    }

    .hero-metrics dt {
        font-size: 20px;
    }

    .hero-metrics dd {
        font-size: 11px;
        line-height: 1.35;
    }

    .platform-band {
        margin-top: -36px;
        padding: 32px 0;
    }

    .platform-inner h2,
    .section-heading h2,
    .white-offer-copy h2,
    .income-copy h2,
    .process-copy h2,
    .final-inner h2 {
        font-size: 29px;
    }

    .section-heading p,
    .white-offer-copy > p,
    .income-copy > p,
    .process-copy p {
        font-size: 16px;
    }

    .benefit-payouts {
        gap: 8px;
        margin-top: 18px;
    }

    .benefit-payouts span {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .benefits,
    .white-offer,
    .income-section,
    .process,
    .final-cta {
        padding: 62px 0;
    }

    .white-proof {
        min-height: auto;
        padding: 22px;
        border-radius: 14px;
    }

    .white-proof ul {
        margin-top: 20px;
    }

    .white-proof li {
        min-height: auto;
        padding: 15px;
    }

    .white-proof strong {
        font-size: 16px;
    }

    .white-proof span:not(.white-proof-badge) {
        font-size: 12px;
    }

    .income-copy > p {
        margin-top: 16px;
    }

    .income-calculator {
        min-height: auto;
        padding: 22px;
        border-radius: 14px;
    }

    .income-topline {
        display: grid;
        gap: 8px;
    }

    .income-topline strong {
        font-size: 30px;
        text-align: left;
    }

    .income-range {
        margin-top: 26px;
    }

    .income-result {
        min-height: 142px;
        margin-top: 26px;
        padding: 19px;
    }

    .income-result strong {
        font-size: 42px;
    }

    .income-result em {
        font-size: 12px;
    }

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

    .final-cta {
        padding-top: 96px;
        padding-bottom: 70px;
    }

    .final-lead {
        margin-top: 16px;
        font-size: 16px;
    }

    .final-actions {
        display: grid;
        gap: 12px;
        margin-top: 24px;
    }

    .final-status {
        justify-content: center;
        min-height: 42px;
    }

    .final-visual {
        min-height: 318px;
    }

    .final-deal-card {
        min-height: 310px;
        padding: 22px;
    }

    .final-card-top strong {
        font-size: 42px;
    }

    .final-card-rows {
        margin-top: 20px;
    }

    .final-card-rows div {
        min-height: 50px;
        padding: 10px 12px;
    }

    .final-card-rows dt,
    .final-card-rows dd,
    .final-card-note {
        font-size: 12px;
    }

    .final-orbit-token {
        min-width: 78px;
        min-height: 42px;
        font-size: 13px;
    }

    .final-orbit-one {
        left: 10px;
        top: -16px;
    }

    .final-orbit-two {
        right: 10px;
        bottom: -28px;
    }

    .benefit-card {
        padding: 22px;
    }

    .benefit-card h3,
    .steps h3 {
        font-size: 20px;
    }

    .steps li {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 18px;
    }

    .steps span {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .final-inner {
        align-items: start;
    }

    .final-inner .btn {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
    }

    .reveal-ready [data-reveal],
    .reveal-ready [data-reveal="left"],
    .reveal-ready [data-reveal="right"],
    .reveal-ready [data-reveal="scale"] {
        transform: translate3d(0, 18px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}
