:root {
    --primary: #25f46a;
    --secondary: #2f8cff;
    --accent: #d5ad4d;
    --bg: #07090f;
    --panel: #111722;
    --text: #f4f6fb;
    --muted: #aab2c5;
    --line: rgba(255, 255, 255, .11);
    --shadow: 0 28px 70px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(115deg, rgba(37, 244, 106, .12), transparent 34%),
        linear-gradient(245deg, rgba(47, 140, 255, .11), transparent 38%),
        var(--bg);
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.narrow {
    width: min(100% - 32px, 560px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.tilt-card {
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.top-ticker {
    position: fixed;
    z-index: 30;
    inset: 0 0 auto 0;
    height: 28px;
    overflow: hidden;
    border-bottom: 1px solid rgba(37, 244, 106, .25);
    background: rgba(4, 12, 10, .78);
    backdrop-filter: blur(18px);
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 32px;
    align-items: center;
    height: 28px;
    animation: ticker 28s linear infinite;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.access-band {
    position: relative;
    padding: 52px 0 44px;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
}

.access-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(180deg, rgba(7, 9, 15, .55), rgba(7, 9, 15, .95) 92%);
}

.access-media {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .48;
    filter: saturate(1.1) contrast(1.05);
    animation: hero-drift 30s ease-in-out infinite alternate;
}

.access-inner {
    width: min(100% - 32px, 640px);
    margin: 0 auto;
}

.access-inner .section-head {
    margin-bottom: 18px;
}

.hero {
    position: relative;
    min-height: 92vh;
    padding: 60px 0 63px;
    isolation: isolate;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero::before {
    background: linear-gradient(180deg, rgba(7, 9, 15, .62), rgba(7, 9, 15, .97) 90%);
}

.hero::after {
    background: linear-gradient(90deg, rgba(37,244,106,.08), transparent 18%, transparent 82%, rgba(47,140,255,.08));
    mix-blend-mode: screen;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .4;
    filter: saturate(1.15) contrast(1.08);
    animation: hero-drift 26s ease-in-out infinite alternate;
}

@keyframes hero-drift {
    from { transform: scale(1.02) translateY(0); }
    to { transform: scale(1.08) translateY(-1.5%); }
}

.hero-inner {
    display: grid;
    justify-items: center;
    width: min(100% - 32px, 520px);
    text-align: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 11px;
    box-shadow: 0 0 24px rgba(37, 244, 106, .34);
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #061009;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 11px;
    box-shadow: 0 0 24px rgba(37, 244, 106, .34);
}

.status-pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 17px;
    padding: 6px 11px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(16px);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.status-pill span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 14px var(--primary);
}

.mini-title,
.section-head p {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 900;
    line-height: .96;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 420px;
    font-size: clamp(46px, 13vw, 86px);
}

h1 .accent-text,
h2 .accent-text,
h1 strong,
h1 em,
.final-cta h2 strong {
    color: var(--primary);
    font-style: normal;
    text-shadow: 0 0 20px rgba(37, 244, 106, .48);
}

.hero h1 .accent-text {
    display: block;
}

.hero-copy {
    max-width: 420px;
    margin: 16px auto 0;
    color: rgba(244, 246, 251, .82);
    font-size: 14px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 24px;
}

.metric-card,
.glass-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), var(--shadow);
    backdrop-filter: blur(18px);
    position: relative;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37,244,106,.35), rgba(47,140,255,0) 40%, rgba(47,140,255,.3) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
}

.metric-card {
    padding: 11px 6px;
    border-top-color: rgba(37, 244, 106, .72);
    transition: transform .3s ease, box-shadow .3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(37, 244, 106, .16), var(--shadow);
}

.metric-card strong {
    display: block;
    font-size: 15px;
    line-height: 1;
}

.metric-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid rgba(37, 244, 106, .34);
    border-radius: 12px;
    background: rgba(37, 244, 106, .08);
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
}

.countdown span {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: .06em;
}

.countdown strong {
    color: var(--text);
    letter-spacing: .06em;
    font-size: 14px;
}

.notice {
    width: 100%;
    margin-top: 17px;
    padding: 16px;
    border: 1px solid rgba(213, 173, 77, .38);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    background: rgba(255, 255, 255, .045);
    text-align: left;
}

.notice span {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.notice p {
    margin: 0;
    color: rgba(244, 246, 251, .84);
    font-size: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 19px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}

.btn:hover::after {
    left: 130%;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    width: 100%;
    margin-top: 17px;
    color: #061009;
    background: linear-gradient(180deg, #46ff83, var(--primary));
    box-shadow: 0 13px 32px rgba(37, 244, 106, .35);
}

.btn-ghost {
    width: 100%;
    color: var(--secondary);
    border: 1px solid rgba(47, 140, 255, .28);
    background: rgba(5, 9, 15, .5);
}

.reserve-form {
    width: 100%;
    margin-top: 16px;
}

.reserve-form p {
    margin: 0 0 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.form-flash {
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 13px;
}

.form-flash.success {
    color: #bdfed0;
    border: 1px solid rgba(37,244,106,.25);
    background: rgba(37,244,106,.12);
}

.form-flash.error {
    color: #ffd3da;
    border: 1px solid rgba(255,88,113,.3);
    background: rgba(255,88,113,.12);
}

input,
textarea,
select {
    width: 100%;
    min-height: 40px;
    padding: 0 13px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    outline: none;
    font-size: 13px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(47, 140, 255, .7);
    box-shadow: 0 0 0 3px rgba(47, 140, 255, .12);
}

.restriction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    width: 100%;
    margin-top: 9px;
}

.restriction-box {
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
    text-align: left;
    transition: transform .25s ease, border-color .25s ease;
}

.restriction-box:hover {
    transform: translateY(-2px);
    border-color: rgba(213, 173, 77, .4);
}

.restriction-box strong {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.restriction-box p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.access-card {
    padding: 16px;
    text-align: left;
    transition: transform .35s ease, box-shadow .35s ease;
}

.access-card:hover {
    transform: translateY(-4px) rotateX(2deg);
    box-shadow: 0 26px 60px rgba(37, 244, 106, .18), var(--shadow);
}

.access-card h3 {
    margin: 0 0 5px;
    font-size: 15px;
    text-transform: uppercase;
}

.access-card > p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
}

.access-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 12px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
}

.access-stats div {
    text-align: center;
}

.access-stats strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
}

.access-stats span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.access-card .btn {
    margin-top: 0;
    min-height: 38px;
    font-size: 11px;
    padding: 0 12px;
}

.final-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.final-links .btn {
    width: auto;
    margin-top: 0;
    padding: 0 15px;
    min-height: 36px;
    font-size: 11px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.signal-card {
    overflow: hidden;
    padding: 0;
    text-align: left;
    transition: transform .35s ease, box-shadow .35s ease;
    transform-style: preserve-3d;
}

.signal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .5), var(--shadow);
}

.signal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 13px;
    border-bottom: 1px solid var(--line);
}

.signal-provider {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signal-avatar {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: #061009;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    font-size: 9px;
    font-weight: 900;
}

.signal-provider strong {
    display: block;
    font-size: 11px;
}

.signal-provider small {
    display: block;
    color: var(--muted);
    font-size: 9px;
}

.signal-status {
    padding: 4px 8px;
    color: var(--primary);
    border: 1px solid rgba(37, 244, 106, .34);
    border-radius: 999px;
    background: rgba(37, 244, 106, .08);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.signal-pair {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
}

.signal-pair.side-sell {
    color: #ff5871;
}

.signal-pair.side-buy {
    color: var(--primary);
}

.signal-arrow {
    font-size: 11px;
}

.signal-pair strong {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.signal-pair-name {
    color: var(--text);
    font-weight: 800;
    font-size: 13px;
}

.signal-pair time {
    margin-left: auto;
    color: var(--muted);
    font-size: 9px;
}

.signal-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-top: 1px solid var(--line);
}

.signal-row span {
    color: var(--muted);
    font-size: 11px;
}

.signal-row strong {
    color: var(--text);
    font-weight: 800;
    font-size: 13px;
}

.signal-row.tp-row strong {
    color: var(--primary);
}

.signal-row.tp-row em {
    color: var(--primary);
    font-style: normal;
}

.signal-row.sl-row strong {
    color: #ff5871;
}

.signal-footer {
    margin: 10px 13px 13px;
    padding: 10px;
    border: 1px solid rgba(37, 244, 106, .3);
    border-radius: 10px;
    background: rgba(37, 244, 106, .08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.section {
    width: min(100% - 32px, 640px);
    margin: 0 auto;
    padding: 52px 0;
}

.section-head {
    margin-bottom: 20px;
    text-align: center;
}

.section-head h2,
.final-cta h2 {
    font-size: clamp(30px, 8vw, 54px);
}

.section-head span,
.final-cta > .container > p {
    display: block;
    max-width: 400px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 13px;
}

.scroll-row {
    display: grid;
    grid-auto-columns: minmax(180px, 1fr);
    grid-auto-flow: column;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 13px;
    scroll-snap-type: x mandatory;
}

.trade-card {
    min-height: 135px;
    padding: 16px;
    scroll-snap-align: start;
    transition: transform .3s ease;
}

.trade-card:hover {
    transform: translateY(-3px);
}

.trade-card small {
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
}

.trade-card h3,
.step-card h3,
.feature-list h3 {
    margin: 7px 0 3px;
    font-size: 13px;
}

.trade-card strong {
    display: block;
    margin: 7px 0;
    color: var(--primary);
    font-size: 27px;
    line-height: 1;
}

.trade-card p,
.step-card p,
.feature-list p,
.testimonial-card p,
.faq-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.step-list {
    display: grid;
    gap: 10px;
}

.step-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 13px;
    align-items: start;
    padding: 17px;
    transition: transform .3s ease;
}

.step-card:hover {
    transform: translateX(4px);
}

.step-card > strong {
    color: var(--secondary);
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 0 18px rgba(47, 140, 255, .42);
}

.feature-list {
    overflow: hidden;
}

.feature-list article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    padding: 15px;
    border-bottom: 1px solid var(--line);
    transition: background .25s ease;
}

.feature-list article:hover {
    background: rgba(255, 255, 255, .03);
}

.feature-list article:last-child {
    border-bottom: 0;
}

.feature-list article > span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    color: var(--secondary);
    border: 1px solid rgba(47, 140, 255, .25);
    border-radius: 9px;
    background: rgba(47, 140, 255, .1);
    font-weight: 900;
    font-size: 11px;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    padding: 13px;
}

.country-grid div {
    min-height: 60px;
    padding: 11px 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    text-align: center;
    transition: transform .25s ease, background .25s ease;
}

.country-grid div:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .07);
}

.country-grid strong {
    display: block;
    font-size: 14px;
}

.country-grid span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.analyst-card {
    overflow: hidden;
}

.analyst-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.analyst-card > div {
    padding: 17px;
}

.analyst-card small {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: 11px;
}

.analyst-card h3 {
    margin: 6px 0 7px;
    font-size: 27px;
    line-height: 1;
    text-transform: uppercase;
}

.analyst-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.testimonial-grid {
    display: grid;
    gap: 10px;
}

.testimonial-card {
    padding: 17px;
    transition: transform .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    margin-top: 14px;
    font-size: 14px;
}

.testimonial-card span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-list details {
    padding: 14px;
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    font-size: 13px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    color: var(--secondary);
    transition: transform .3s ease;
}

.faq-list details[open] summary::after {
    content: "x";
}

.faq-list p {
    padding-top: 13px;
}

.final-cta {
    padding: 77px 0;
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(47, 140, 255, .08), rgba(37, 244, 106, .05));
}

footer {
    padding: 42px 0 92px;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

footer strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 14px 0;
}

footer a {
    color: var(--secondary);
    font-weight: 800;
    font-size: 12px;
    transition: opacity .2s ease;
}

footer a:hover {
    opacity: .7;
}

.sticky-cta {
    position: fixed;
    z-index: 25;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 9px max(14px, calc((100vw - 760px) / 2));
    border-top: 1px solid var(--line);
    background: rgba(6, 8, 13, .85);
    backdrop-filter: blur(18px);
}

.sticky-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.sticky-cta .btn {
    min-height: 38px;
    width: auto;
    margin: 0;
    padding: 0 16px;
    font-size: 12px;
}

.section-reveal {
    opacity: 1;
    transform: none;
}

.js .section-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.js .section-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 760px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    body {
        background-size: 46px 46px, 46px 46px, auto, auto, auto;
    }

    .container,
    .section,
    .narrow {
        width: min(100% - 22px, 100%);
    }

    .hero {
        padding-top: 56px;
    }

    .brand {
        margin-bottom: 16px;
    }

    .brand span:last-child {
        display: none;
    }

    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown {
        display: grid;
        gap: 4px;
    }

    .step-card {
        grid-template-columns: 40px 1fr;
        padding: 15px 12px;
    }

    .feature-list article {
        grid-template-columns: 32px 1fr;
        padding: 14px 11px;
    }

    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restriction-grid {
        grid-template-columns: 1fr;
    }

    .access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .access-card {
        padding: 11px;
    }

    .access-card h3 {
        font-size: 12px;
    }

    .access-card > p {
        display: none;
    }

    .signal-grid {
        grid-template-columns: 1fr;
    }

    .signal-row {
        grid-template-columns: 1fr auto;
    }

    .sticky-cta {
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 9px max(12px, calc((100vw - 760px) / 2));
    }

    .sticky-cta p {
        font-size: 10px;
    }

    .sticky-cta .btn {
        min-width: 100px;
        padding: 0 12px;
        font-size: 10px;
        min-height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

/* Final premium layout, hero visibility, and performance tuning */
.access-band {
    padding: 54px 0 38px;
}

.access-band::before {
    background: linear-gradient(180deg, rgba(7, 9, 15, .5), rgba(7, 9, 15, .94) 88%);
}

.access-inner {
    width: min(100% - 32px, 720px);
}

.site-brand {
    display: flex;
    width: max-content;
    margin: 0 auto 18px;
    justify-content: center;
}

.access-heading {
    margin: 22px auto 0;
}

.access-heading h2 {
    font-size: clamp(28px, 7vw, 46px);
}

.hero {
    min-height: 88vh;
    padding-top: 56px;
}

.hero::before {
    background: linear-gradient(180deg, rgba(7, 9, 15, .42), rgba(7, 9, 15, .72) 48%, rgba(7, 9, 15, .93) 92%);
}

.hero::after {
    background:
        radial-gradient(circle at 50% 20%, rgba(37, 244, 106, .16), transparent 28%),
        linear-gradient(90deg, rgba(37, 244, 106, .08), transparent 28%, transparent 72%, rgba(47, 140, 255, .1));
    mix-blend-mode: normal;
}

.hero-media,
.access-media {
    animation: none;
    transform: none;
}

.hero .hero-media {
    opacity: .68;
    background-position: center top;
    filter: saturate(1.25) contrast(1.14) brightness(1.08);
}

.access-media {
    opacity: .36;
}

.section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.tilt-card {
    will-change: auto;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tilt-card.is-tilting {
    will-change: transform;
}

.premium-signal-grid {
    perspective: 1200px;
}

.premium-signal-grid .signal-card {
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .035) 42%, rgba(37, 244, 106, .07)),
        linear-gradient(180deg, rgba(13, 19, 29, .96), rgba(6, 9, 15, .98));
    border-color: rgba(255, 255, 255, .16);
    box-shadow:
        0 26px 64px rgba(0, 0, 0, .58),
        0 0 32px rgba(37, 244, 106, .12),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    transform: translateZ(0);
}

.premium-signal-grid .signal-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 21px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(47, 140, 255, .16), transparent 30%);
    pointer-events: none;
}

.premium-signal-grid .signal-card:hover {
    transform: translateY(-7px) rotateX(1.5deg);
    box-shadow:
        0 34px 80px rgba(0, 0, 0, .64),
        0 0 42px rgba(37, 244, 106, .18),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.premium-signal-grid .signal-head,
.premium-signal-grid .signal-pair,
.premium-signal-grid .signal-row,
.premium-signal-grid .signal-footer {
    position: relative;
    z-index: 1;
}

@media (hover: none), (pointer: coarse) {
    .tilt-card:hover,
    .premium-signal-grid .signal-card:hover,
    .metric-card:hover,
    .access-card:hover,
    .trade-card:hover,
    .step-card:hover,
    .testimonial-card:hover,
    .country-grid div:hover,
    .restriction-box:hover,
    .btn:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .access-band {
        padding-top: 46px;
    }

    .site-brand span:last-child {
        display: inline;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 48px;
    }

    .hero .hero-media {
        opacity: .58;
        background-position: center center;
    }
}
/* HERO ACCESS CARDS - FINAL */

.hero-inner {
    width: min(100% - 32px, 620px);
}

.hero-access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 24px;
}

.hero-access-grid .access-card {
    min-width: 0;
    padding: 14px;
}

.hero-access-grid .access-card h3 {
    font-size: 13px;
}

.hero-access-grid .access-card > p {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.5;
}

.hero-access-grid .access-stats {
    padding: 8px;
}

.hero-access-grid .access-card .btn {
    min-height: 38px;
    font-size: 10px;
}

@media (max-width: 640px) {
    .hero-access-grid {
        grid-template-columns: 1fr;
    }
}
/* FINAL HERO + SIGNAL SIZE + ANIMATION */

/* Choose Your Access Point heading animation */
.hero h1 {
    animation: accessTitleFloat 4s ease-in-out infinite;
    transform-origin: center;
}

.hero h1 .accent-text {
    animation: accessGlowPulse 2.8s ease-in-out infinite;
}

@keyframes accessTitleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes accessGlowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(37, 244, 106, .38);
    }
    50% {
        text-shadow:
            0 0 18px rgba(37, 244, 106, .75),
            0 0 42px rgba(37, 244, 106, .28);
    }
}

/* 4 admin metric boxes */
.hero-metrics {
    margin-top: 24px;
    animation: metricsReveal .8s ease both;
}

.hero-metrics .metric-card {
    animation: metricFloat 4s ease-in-out infinite;
}

.hero-metrics .metric-card:nth-child(2) {
    animation-delay: .2s;
}

.hero-metrics .metric-card:nth-child(3) {
    animation-delay: .4s;
}

.hero-metrics .metric-card:nth-child(4) {
    animation-delay: .6s;
}

@keyframes metricsReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes metricFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Private Signal + App cards */
.hero-access-grid {
    margin-top: 18px;
}

/* Daily, Weekly and Monthly sections width smaller */
#daily-signal,
#weekly-signal,
#monthly-signal {
    width: min(100% - 32px, 540px);
}

/* Signal cards premium subtle animation */
#daily-signal .signal-card,
#weekly-signal .signal-card,
#monthly-signal .signal-card {
    animation: signalCardFloat 5s ease-in-out infinite;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

#weekly-signal .signal-card {
    animation-delay: .35s;
}

#monthly-signal .signal-card {
    animation-delay: .7s;
}

#daily-signal .signal-card:hover,
#weekly-signal .signal-card:hover,
#monthly-signal .signal-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(37, 244, 106, .34);
    box-shadow:
        0 28px 65px rgba(0, 0, 0, .55),
        0 0 30px rgba(37, 244, 106, .12);
}

@keyframes signalCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 640px) {
    #daily-signal,
    #weekly-signal,
    #monthly-signal {
        width: min(100% - 22px, 100%);
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        animation-duration: 5s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero h1 .accent-text,
    .hero-metrics,
    .hero-metrics .metric-card,
    #daily-signal .signal-card,
    #weekly-signal .signal-card,
    #monthly-signal .signal-card {
        animation: none !important;
    }
}
/* ACCESS CARDS - ALWAYS ONE ROW + ICONS */

.hero-access-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
    width: 100%;
}

.access-card-title {
    display: flex;
    align-items: center;
    gap: 7px;
}

.access-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    border: 1px solid rgba(37, 244, 106, .28);
    border-radius: 8px;
    background: rgba(37, 244, 106, .09);
    font-size: 14px;
}

@media (max-width: 640px) {
    .hero-access-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px;
    }

    .hero-access-grid .access-card {
        min-width: 0;
        padding: 10px;
    }

    .access-card-title {
        gap: 5px;
        font-size: 11px !important;
        line-height: 1.25;
    }

    .access-title-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .hero-access-grid .access-stats {
        gap: 4px;
        padding: 6px 3px;
    }

    .hero-access-grid .access-stats strong {
        font-size: 11px;
    }

    .hero-access-grid .access-stats span {
        font-size: 6px;
    }

    .hero-access-grid .access-card .btn {
        padding: 0 5px;
        font-size: 8px;
        letter-spacing: .06em;
    }
}
/* ACCESS CARDS - WIDER + LARGE VISIBLE ICONS */

.hero-inner {
    width: min(100% - 24px, 760px) !important;
}

.hero-access-grid {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.hero-access-grid .access-card {
    width: 100%;
    padding: 15px !important;
}

.access-card-title {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    font-size: 15px !important;
}

.access-title-icon {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(37, 244, 106, .45);
    border-radius: 11px;
    background: rgba(37, 244, 106, .12);
    box-shadow: 0 0 18px rgba(37, 244, 106, .16);
}

/* Private lock icon */
.icon-private::before {
    content: "";
    width: 14px;
    height: 11px;
    border: 2px solid var(--primary);
    border-radius: 3px;
}

.icon-private::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 9px;
    top: 7px;
    border: 2px solid var(--primary);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

/* App/mobile icon */
.icon-app::before {
    content: "";
    width: 14px;
    height: 22px;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.icon-app::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary);
}

@media (max-width: 640px) {
    .hero-inner {
        width: min(100% - 12px, 100%) !important;
    }

    .hero-access-grid {
        gap: 8px !important;
    }

    .hero-access-grid .access-card {
        padding: 11px !important;
    }

    .access-card-title {
        gap: 7px !important;
        font-size: 12px !important;
    }

    .access-title-icon {
        flex-basis: 32px;
        width: 32px !important;
        height: 32px !important;
    }
}
/* FINAL MOBILE HERO + ACCESS CARDS FIX */

/* Restore old stacked Choose Your Access Point */
.hero h1 {
    max-width: 420px !important;
}

.hero h1 .accent-text {
    display: block !important;
}

/* Access cards stay in one row */
.hero-access-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 20px !important;
}

/* Make cards slightly taller downward */
.hero-access-grid .access-card {
    min-width: 0 !important;
    min-height: 255px !important;
    padding: 16px 14px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Title + icon */
.access-card-title {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 0 10px !important;
}

/* Description under title */
.hero-access-grid .access-card > p {
    display: block !important;
    min-height: 38px;
    margin: 0 0 12px !important;
    color: var(--muted);
    font-size: 11px !important;
    line-height: 1.45 !important;
}

/* Bigger visible icon */
.access-title-icon {
    position: relative !important;
    display: inline-flex !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(37, 244, 106, .5) !important;
    border-radius: 10px !important;
    background: rgba(37, 244, 106, .12) !important;
    box-shadow: 0 0 16px rgba(37, 244, 106, .2) !important;
}

/* Lock icon */
.icon-private::before {
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    top: 16px !important;
    width: 12px !important;
    height: 10px !important;
    border: 2px solid var(--primary) !important;
    border-radius: 3px !important;
}

.icon-private::after {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 7px !important;
    width: 8px !important;
    height: 10px !important;
    border: 2px solid var(--primary) !important;
    border-bottom: 0 !important;
    border-radius: 7px 7px 0 0 !important;
}

/* App/mobile icon */
.icon-app::before {
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    top: 5px !important;
    width: 13px !important;
    height: 22px !important;
    border: 2px solid var(--primary) !important;
    border-radius: 4px !important;
}

.icon-app::after {
    content: "" !important;
    position: absolute !important;
    left: 16px !important;
    bottom: 5px !important;
    width: 3px !important;
    height: 3px !important;
    border-radius: 50% !important;
    background: var(--primary) !important;
}

/* Keep stats and button lower */
.hero-access-grid .access-stats {
    margin-top: auto !important;
    margin-bottom: 12px !important;
}

.hero-access-grid .access-card .btn {
    min-height: 48px !important;
}

/* MOBILE */
@media (max-width: 640px) {
    /* Exact old tall stacked hero heading */
    .hero h1 {
        max-width: 420px !important;
        font-size: clamp(46px, 13vw, 86px) !important;
        line-height: .96 !important;
    }

    .hero h1 .accent-text {
        display: block !important;
    }

    .hero-access-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .hero-access-grid .access-card {
        min-height: 245px !important;
        padding: 13px 10px !important;
    }

    .access-card-title {
        gap: 6px !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .access-title-icon {
        flex-basis: 32px !important;
        width: 32px !important;
        height: 32px !important;
    }

    .hero-access-grid .access-card > p {
        display: block !important;
        min-height: 48px !important;
        font-size: 9px !important;
        line-height: 1.4 !important;
    }
}
/* FINAL RESTRICTIONS ANIMATION */

.restriction-animate {
    animation: restrictionReveal .85s cubic-bezier(.2,.8,.2,1) both;
}

.countdown.restriction-animate {
    animation-delay: .10s;
}

.notice.restriction-animate {
    animation-delay: .22s;
}

.restriction-grid.restriction-animate {
    animation-delay: .34s;
}

@keyframes restrictionReveal {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.98);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.restriction-box {
    animation: restrictionFloat 4s ease-in-out infinite;
}

.restriction-box:nth-child(2) {
    animation-delay: .5s;
}

@keyframes restrictionFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.notice.restriction-animate {
    transition: border-color .3s ease, box-shadow .3s ease;
}

.notice.restriction-animate:hover {
    border-color: rgba(213, 173, 77, .7);
    box-shadow: 0 16px 40px rgba(213, 173, 77, .10);
}

@media (prefers-reduced-motion: reduce) {
    .restriction-animate,
    .restriction-box {
        animation: none !important;
    }
}
/* FINAL HERO TITLE — 4 EXACT LINES */

.hero h1 {
    width: 100% !important;
    max-width: 390px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: clamp(72px, 10vw, 150px) !important;
    line-height: .82 !important;
}

.hero h1 .accent-text {
    display: block !important;
}

@media (max-width: 640px) {
    .hero h1 {
        max-width: 300px !important;
        font-size: clamp(68px, 19vw, 100px) !important;
        line-height: .84 !important;
    }
}
/* HERO TITLE — FINAL SIZE */

.hero h1 {
    max-width: 430px !important;
    font-size: clamp(48px, 7vw, 100px) !important;
}

@media (max-width: 640px) {
    .hero h1 {
        max-width: 330px !important;
        font-size: clamp(46px, 13vw, 68px) !important;
    }
}

/* PREMIUM ACCESS CARDS - FINAL READY BUILD */
.premium-access-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 22px !important;
}
.premium-access-card {
    min-width: 0 !important;
    min-height: 500px !important;
    padding: 18px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border-color: rgba(37, 244, 106, .35) !important;
}
.premium-access-card h3 {
    margin: 0 !important;
    text-align: center !important;
    font-size: 24px !important;
    line-height: .95 !important;
}
.premium-access-card h3 span {
    display: block !important;
    margin-top: 6px !important;
    color: var(--primary) !important;
    text-shadow: 0 0 18px rgba(37, 244, 106, .5);
}
.premium-access-card > p {
    display: block !important;
    min-height: 48px !important;
    margin: 16px 0 8px !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
}
.access-visual {
    position: relative;
    width: 100%;
    height: 230px;
    margin: 4px 0 14px;
    overflow: hidden;
}
.access-visual img {
    position: absolute;
    top: 0;
    width: 200%;
    max-width: none !important;
    height: 100%;
    object-fit: cover;
}
.private-visual img { left: 0; }
.app-visual img { right: 0; }
.premium-access-card .access-stats { margin-top: auto !important; }
.premium-access-card .btn {
    min-height: 54px !important;
    margin-top: 12px !important;
}
@media (max-width: 640px) {
    .premium-access-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
    .premium-access-card {
        min-height: 390px !important;
        padding: 12px 7px !important;
    }
    .premium-access-card h3 { font-size: 15px !important; }
    .premium-access-card > p {
        min-height: 55px !important;
        margin: 10px 0 5px !important;
        font-size: 8px !important;
    }
    .access-visual {
        height: 150px;
        margin-bottom: 8px;
    }
    .premium-access-card .btn {
        min-height: 46px !important;
        font-size: 9px !important;
    }
}


/* FINAL SEPARATE ACCESS VISUALS */
.premium-access-card .access-visual {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    margin: 10px 0 16px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: transparent !important;
}
.premium-access-card .access-visual img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}
@media (max-width: 640px) {
    .premium-access-card .access-visual {
        height: 210px !important;
        margin: 8px 0 12px !important;
        border-radius: 12px !important;
    }
}


/* FINAL 3D CSS VISUALS — NO PICTURES */
.premium-access-card .access-3d-visual {
    position: relative !important;
    width: 100% !important;
    height: 285px !important;
    margin: 12px 0 16px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 50% 48%, rgba(37,244,106,.16), transparent 48%),
        linear-gradient(145deg, rgba(5,20,15,.92), rgba(2,8,12,.98)) !important;
    perspective: 900px;
}
.visual-orbit {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    left: 14%;
    top: 12%;
    border: 3px solid rgba(37,244,106,.72);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(37,244,106,.65), inset 0 0 24px rgba(37,244,106,.2);
    animation: orbitPulse 3.4s ease-in-out infinite;
}
.visual-core {
    position: absolute;
    inset: 17% 18%;
    transform: rotateX(7deg) rotateY(-7deg);
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.45));
    animation: coreFloat 4s ease-in-out infinite;
}
.visual-glow {
    position: absolute;
    width: 42%;
    height: 10px;
    left: 29%;
    bottom: 9%;
    border-radius: 50%;
    background: rgba(37,244,106,.55);
    filter: blur(15px);
}
.signal-bars {
    position: absolute;
    width: 68%;
    height: 38%;
    left: 16%;
    top: 8%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px;
    border: 2px solid rgba(37,244,106,.85);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(20,70,45,.95), rgba(4,18,15,.96));
    box-shadow: inset 0 0 20px rgba(37,244,106,.15), 0 0 18px rgba(37,244,106,.2);
}
.signal-bars i {
    width: 10%;
    border-radius: 3px;
    background: linear-gradient(#75ff9b, #14c950);
    box-shadow: 0 0 10px rgba(37,244,106,.5);
}
.signal-bars i:nth-child(1){height:42%}.signal-bars i:nth-child(2){height:68%}.signal-bars i:nth-child(3){height:90%}.signal-bars i:nth-child(4){height:55%}.signal-bars i:nth-child(5){height:78%}
.signal-users {
    position: absolute;
    width: 88%;
    height: 48%;
    left: 6%;
    bottom: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4%;
}
.signal-users i {
    position: relative;
    width: 29%;
    height: 52%;
    border-radius: 48% 48% 28% 28%;
    background: linear-gradient(145deg, #79ff9f, #087a39 72%);
    border: 1px solid rgba(210,255,220,.75);
    box-shadow: inset -8px -10px 15px rgba(0,0,0,.22), 0 0 16px rgba(37,244,106,.28);
}
.signal-users i::before {
    content:"";
    position:absolute;
    width:58%;
    aspect-ratio:1;
    left:21%;
    top:-48%;
    border-radius:50%;
    background:linear-gradient(145deg,#9affb7,#0d9b49 72%);
    border:1px solid rgba(220,255,228,.75);
}
.signal-users i:nth-child(2){width:36%;height:68%;z-index:2}
.app-phone {
    position:absolute;
    width:52%;
    height:88%;
    left:24%;
    top:3%;
    border:4px solid #53ff82;
    border-radius:22px;
    background:linear-gradient(145deg,#07141b,#0b2c22);
    box-shadow:inset 0 0 24px rgba(37,244,106,.14), 0 0 24px rgba(37,244,106,.35);
    transform:rotate(-10deg);
}
.app-phone::before {
    content:"";
    position:absolute;
    width:34%;
    height:5px;
    left:33%;
    top:8px;
    border-radius:8px;
    background:#0b0f12;
}
.app-chart {
    position:absolute;
    inset:22% 15% 16%;
    display:flex;
    align-items:end;
    justify-content:space-between;
}
.app-chart i {
    width:15%;
    background:linear-gradient(#83ffa5,#15cc51);
    box-shadow:0 0 9px rgba(37,244,106,.45);
}
.app-chart i:nth-child(1){height:28%}.app-chart i:nth-child(2){height:48%}.app-chart i:nth-child(3){height:66%}.app-chart i:nth-child(4){height:88%}
.app-bell {
    position:absolute;
    width:25%;
    aspect-ratio:1;
    right:8%;
    top:18%;
    border-radius:16px;
    background:linear-gradient(145deg,#7dffa0,#0b8f43);
    border:2px solid rgba(220,255,228,.85);
    box-shadow:0 0 22px rgba(37,244,106,.55);
}
.app-bell::before {
    content:"";
    position:absolute;
    width:38%;
    height:46%;
    left:31%;
    top:22%;
    border-radius:50% 50% 35% 35%;
    background:#eaffef;
}
@keyframes coreFloat {0%,100%{transform:translateY(0) rotateX(7deg) rotateY(-7deg)}50%{transform:translateY(-8px) rotateX(3deg) rotateY(7deg)}}
@keyframes orbitPulse {0%,100%{transform:scale(.98);opacity:.72}50%{transform:scale(1.04);opacity:1}}
@media (max-width:640px){
    .premium-access-card .access-3d-visual{height:205px !important;margin:8px 0 12px !important;border-radius:13px !important}
    .visual-orbit{width:82%;left:9%;top:11%}
    .visual-core{inset:18% 10%}
}
@media (prefers-reduced-motion:reduce){
    .visual-orbit,.visual-core{animation:none !important}
}
/* ACCESS CARD TITLE — SLIGHTLY BIGGER */

.premium-access-card h3 {
    font-size: 32px !important;
}

@media (max-width: 640px) {
    .premium-access-card h3 {
        font-size: 22px !important;
    }
}/* Reference performance suite */
.performance-section{width:min(1120px,calc(100% - 32px));margin:80px auto;color:#f5f7fb}.today-best-title{text-align:center;margin-bottom:28px}.today-best-title h2{font-size:clamp(44px,7vw,82px);line-height:.95;margin:0;background:linear-gradient(#fff,#20ee64);-webkit-background-clip:text;color:transparent;text-shadow:0 0 28px rgba(37,244,106,.22)}.today-best-title p{font-size:20px;color:#c6cbd6}.today-best-title i{display:inline-block;width:9px;height:9px;border-radius:50%;background:#20ef65;box-shadow:0 0 14px #20ef65;margin:0 18px}.today-best-card,.performance-card,.recap-card{background:linear-gradient(145deg,rgba(8,17,27,.98),rgba(5,12,20,.98));border:2px solid transparent;border-radius:30px;background-image:linear-gradient(#08111b,#06101a),linear-gradient(90deg,#23ef61,#2d8cff,#23ef61);background-origin:border-box;background-clip:padding-box,border-box;box-shadow:0 0 45px rgba(20,126,255,.08);overflow:hidden}.today-best-card{max-width:1050px;margin:auto;padding:0 46px 38px}.today-best-card header{display:flex;justify-content:space-between;align-items:center;padding:34px 0;border-bottom:1px solid #273240}.provider{display:flex;align-items:center;gap:18px}.provider-logo{width:72px;height:72px;border-radius:18px;background:#03070b;display:grid;place-items:center;color:#24ef68;font-size:34px;font-weight:900}.provider strong{display:block;font-size:28px}.provider strong b{color:#20ef65}.provider small{font-size:18px;color:#929bac}.status-dot{border:1px solid #1fae4d;border-radius:999px;padding:14px 24px;color:#25f46a;font-weight:800}.trade-line{display:flex;justify-content:space-between;align-items:center;padding:34px 8px}.trade-line>div{display:flex;gap:20px;align-items:center}.trade-line strong{font-size:34px}.trade-line strong.sell,.trade-arrow.sell{color:#ff5967}.trade-line strong.buy,.trade-arrow.buy{color:#25f46a}.trade-line b{font-size:25px}.trade-line time{color:#b0b7c5}.price-row{display:flex;justify-content:space-between;align-items:center;padding:22px 28px;margin:14px 0;border:1px solid #33404d;border-radius:17px;background:rgba(255,255,255,.015);font-size:22px}.price-row span{color:#a9b2c2}.price-row strong{font-size:25px}.price-row.target{border-color:#148d3a;background:linear-gradient(90deg,rgba(11,78,35,.18),rgba(11,78,35,.32))}.price-row.target strong{color:#23ef64}.price-row.stop strong{color:#6f7a8d}.pips-captured{display:flex;align-items:center;gap:24px;border:1px solid #16863a;border-radius:18px;padding:24px 30px;margin:22px 0;background:rgba(10,77,34,.15)}.pips-captured>.crosshair{font-size:58px;color:#22ef65}.pips-captured>strong{font-size:64px;color:#22ef65;line-height:1}.pips-captured div b,.pips-captured div small{display:block}.pips-captured div b{font-size:20px}.pips-captured div small{color:#c0c5cf;margin-top:8px}.trade-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.trade-metrics>div{border:1px solid #34404c;border-radius:16px;padding:20px;display:grid;grid-template-columns:auto 1fr;column-gap:12px}.trade-metrics span{grid-row:1/3;color:#22ef65;font-size:36px}.trade-metrics small{color:#c8cdd6}.trade-metrics strong{color:#25f46a}.perf-heading{display:flex;align-items:center;gap:22px;margin-bottom:36px}.calendar-icon{width:76px;height:76px;border:1px solid #178b3a;border-radius:22px;display:grid;place-items:center;color:#25f46a;font-size:36px}.perf-heading h2{font-size:42px;margin:0}.perf-heading h2 em{font-style:normal;color:#25f46a}.perf-heading p{color:#c0c6d1}.performance-card{padding:34px 30px 20px}.perf-row{display:grid;grid-template-columns:1.25fr 1.2fr 1fr 1fr 60px;align-items:center;min-height:82px;border-bottom:1px solid #26313d;padding:0 20px}.perf-head{min-height:70px}.perf-head b:first-child{color:#25f46a}.perf-row>div{display:flex;align-items:center;gap:18px}.mini-cal,.trend{width:46px;height:46px;border:1px solid #147b34;border-radius:14px;display:grid;place-items:center;color:#25f46a}.perf-row>b{color:#25f46a;font-size:24px}.perf-summary{display:grid;grid-template-columns:repeat(5,1fr);margin-top:20px;border:1px solid #234235;border-radius:20px;overflow:hidden}.perf-summary div{text-align:center;padding:22px 10px;border-right:1px solid #244033}.perf-summary div:last-child{border:0}.perf-summary small,.perf-summary strong,.perf-summary em{display:block}.perf-summary strong{font-size:34px;color:#25f46a;margin-top:8px}.perf-summary .negative{color:#ff4f62}.perf-summary em{font-style:normal;font-size:12px}.recap-section{max-width:850px}.recap-heading{text-align:center;margin-bottom:40px}.recap-heading>span{letter-spacing:8px;color:#318cff}.recap-heading h2{font-size:52px;line-height:1.05;margin:16px 0}.recap-heading p{color:#9fa8b8;font-size:20px}.recap-card{border-radius:22px}.recap-card header{padding:28px 32px;display:flex;justify-content:space-between;border-bottom:1px solid #26313d}.recap-card header strong{color:#d8b752;font-size:26px;letter-spacing:4px}.recap-card header span{border:1px solid #187c37;border-radius:999px;padding:8px 18px;color:#25f46a}.recap-row{display:grid;grid-template-columns:100px 1fr 150px 30px;padding:24px 32px;border-bottom:1px solid #27313d;border-left:4px solid #25f46a}.recap-row strong{font-size:24px;text-align:right}.recap-row i{color:#25f46a;text-align:right}.recap-row.loss{border-left-color:#ff5362}.recap-row.loss strong,.recap-row.loss i{color:#ff5362}.recap-profit{padding:34px;background:linear-gradient(145deg,rgba(6,50,36,.4),rgba(5,20,22,.5))}.recap-profit>small{letter-spacing:4px}.recap-profit>strong{display:block;color:#25f46a;font-size:68px}.recap-profit>p{letter-spacing:3px;color:#929cab}.recap-profit>div{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #2b3940;margin-top:28px;padding-top:28px}.recap-profit>div span{text-align:center;letter-spacing:2px}.recap-profit>div b{display:block;color:#fff;font-size:20px;margin-bottom:8px}
@media(max-width:760px){.performance-section{width:min(100% - 20px,1120px);margin:55px auto}.today-best-card{padding:0 16px 20px;border-radius:22px}.today-best-card header{padding:20px 0}.provider-logo{width:50px;height:50px}.provider strong{font-size:18px}.provider small{font-size:13px}.status-dot{padding:9px 12px;font-size:12px}.trade-line{padding:24px 2px}.trade-line strong{font-size:24px}.trade-line b{font-size:18px}.trade-line time{font-size:12px}.price-row{padding:16px;font-size:16px}.price-row strong{font-size:18px}.pips-captured{padding:18px;gap:12px}.pips-captured>.crosshair{font-size:36px}.pips-captured>strong{font-size:38px}.pips-captured div b{font-size:13px}.pips-captured div small{font-size:11px}.trade-metrics{grid-template-columns:1fr 1fr}.trade-metrics>div{padding:14px}.perf-heading h2{font-size:28px}.calendar-icon{width:56px;height:56px}.performance-card{padding:16px 8px}.perf-table{overflow-x:auto}.perf-row{min-width:720px}.perf-summary{grid-template-columns:1fr 1fr;overflow:visible}.perf-summary div{border-bottom:1px solid #244033}.perf-summary div:last-child{grid-column:1/-1}.recap-heading h2{font-size:38px}.recap-row{grid-template-columns:65px 1fr 90px 20px;padding:18px 14px;font-size:13px}.recap-row strong{font-size:17px}.recap-profit>strong{font-size:52px}}

/* PERFORMANCE SUITE — FINAL RESPONSIVE FIT OVERRIDES */
.performance-section{max-width:980px;margin:58px auto}.today-best-card{max-width:760px}.today-best-title h2{font-size:clamp(38px,5.2vw,66px)}.perf-heading{margin-bottom:24px}.perf-heading h2{font-size:34px}.calendar-icon{width:62px;height:62px}.performance-card{padding:24px 20px 16px}.perf-row{min-height:68px;padding:0 12px;grid-template-columns:1.25fr 1.2fr .9fr .9fr 48px}.mini-cal,.trend{width:38px;height:38px;border-radius:11px}.perf-row>b{font-size:20px}.perf-summary div{padding:16px 6px}.perf-summary strong{font-size:27px}.recap-section{max-width:720px}.recap-heading h2{font-size:44px}.recap-row{padding:19px 26px}.recap-profit{padding:28px}.recap-profit>strong{font-size:56px}
@media(max-width:760px){
.performance-section{width:calc(100% - 20px);margin:38px auto}.today-best-title{margin-bottom:18px}.today-best-title h2{font-size:clamp(34px,11vw,52px);line-height:.9}.today-best-title p{font-size:15px}.today-best-title i{width:7px;height:7px;margin:0 9px}.today-best-card{width:100%;padding:0 14px 16px;border-radius:20px}.today-best-card header{padding:16px 0}.provider{gap:10px;min-width:0}.provider-logo{width:44px;height:44px;border-radius:12px;font-size:25px;flex:0 0 44px}.provider strong{font-size:16px;white-space:nowrap}.provider small{font-size:11px;white-space:nowrap}.status-dot{padding:8px 10px;font-size:10px;white-space:nowrap}.trade-line{padding:20px 2px;gap:8px}.trade-line>div{gap:10px}.trade-line strong{font-size:22px}.trade-line b{font-size:16px}.trade-line time{font-size:10px;white-space:nowrap}.price-row{padding:14px 16px;margin:10px 0;border-radius:14px;font-size:15px}.price-row strong{font-size:17px}.pips-captured{display:grid;grid-template-columns:42px auto 1fr;gap:10px;padding:16px;margin:16px 0}.pips-captured>.crosshair{font-size:32px}.pips-captured>strong{font-size:38px;white-space:nowrap}.pips-captured div{min-width:0}.pips-captured div b{font-size:12px;line-height:1.2}.pips-captured div small{font-size:10px;line-height:1.25;margin-top:4px}.trade-metrics{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.trade-metrics>div{padding:11px 9px;border-radius:12px;column-gap:8px}.trade-metrics span{font-size:25px}.trade-metrics small{font-size:10px}.trade-metrics strong{font-size:12px}.perf-heading{gap:12px;margin-bottom:18px}.calendar-icon{width:48px;height:48px;border-radius:15px;font-size:24px;flex:0 0 48px}.perf-heading h2{font-size:25px;line-height:1}.perf-heading p{font-size:13px;line-height:1.4;margin:7px 0 0}.performance-card{padding:12px 10px 10px;border-radius:20px}.perf-table{overflow:visible;width:100%}.perf-row{min-width:0!important;width:100%;grid-template-columns:1.25fr 1.25fr .9fr .9fr 28px;min-height:54px;padding:0 4px;column-gap:4px;font-size:10px}.perf-head{min-height:46px;font-size:10px}.perf-row>div{gap:6px;min-width:0}.perf-row>div b{font-size:10px;white-space:nowrap}.perf-row>span{white-space:nowrap;font-size:9px}.mini-cal,.trend{width:27px;height:27px;border-radius:8px;font-size:11px;flex:0 0 27px}.perf-row>b{font-size:13px;white-space:nowrap}.perf-summary{grid-template-columns:repeat(5,minmax(0,1fr));margin-top:10px;border-radius:14px;overflow:hidden}.perf-summary div,.perf-summary div:last-child{grid-column:auto;padding:12px 3px;border-bottom:0}.perf-summary small{font-size:7px;line-height:1.2}.perf-summary strong{font-size:15px;margin-top:5px;white-space:nowrap}.perf-summary em{font-size:7px}.recap-section{width:calc(100% - 28px)}.recap-heading{margin-bottom:22px}.recap-heading>span{font-size:10px;letter-spacing:5px}.recap-heading h2{font-size:32px;margin:10px 0}.recap-heading p{font-size:13px}.recap-card{border-radius:18px}.recap-card header{padding:17px 16px}.recap-card header strong{font-size:17px;letter-spacing:2px}.recap-card header span{padding:6px 10px;font-size:10px}.recap-row{grid-template-columns:48px 1fr 70px 14px;padding:14px 12px;font-size:10px;border-left-width:3px}.recap-row strong{font-size:14px}.recap-profit{padding:20px 16px}.recap-profit>small{font-size:9px;letter-spacing:3px}.recap-profit>strong{font-size:44px}.recap-profit>p{font-size:10px;letter-spacing:2px}.recap-profit>div{margin-top:18px;padding-top:18px}.recap-profit>div span{font-size:8px;letter-spacing:1px}.recap-profit>div b{font-size:15px;margin-bottom:5px}
}
@media(max-width:390px){.performance-section{width:calc(100% - 12px)}.today-best-card{padding-left:10px;padding-right:10px}.provider strong{font-size:14px}.provider small{font-size:9px}.status-dot{font-size:9px;padding:7px}.trade-line strong{font-size:19px}.trade-line b{font-size:14px}.pips-captured{grid-template-columns:34px auto 1fr;padding:13px 10px}.pips-captured>strong{font-size:31px}.perf-row{grid-template-columns:1.2fr 1.2fr .88fr .88fr 24px}.mini-cal,.trend{width:23px;height:23px;flex-basis:23px}.perf-row>div b{font-size:9px}.perf-row>b{font-size:11px}.perf-summary strong{font-size:13px}}

/* TODAY BEST ENTRY — MOBILE COMPACT FIX ONLY */
@media (max-width:760px){
  .today-best-wrap{width:calc(100% - 16px)!important;margin:30px auto 40px!important;overflow:hidden!important}
  .today-best-title{margin-bottom:14px!important}
  .today-best-title h2{font-size:clamp(32px,10vw,44px)!important;line-height:.88!important;letter-spacing:-1px!important}
  .today-best-title p{font-size:14px!important;margin-top:14px!important}
  .today-best-card{box-sizing:border-box!important;width:100%!important;max-width:none!important;padding:0 12px 14px!important;overflow:hidden!important}
  .today-best-card header{padding:14px 0!important;gap:8px!important}
  .provider{min-width:0!important;flex:1 1 auto!important}
  .provider>div:last-child{min-width:0!important}
  .provider-logo{width:42px!important;height:42px!important;flex-basis:42px!important}
  .provider strong{font-size:15px!important;line-height:1.15!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;display:block!important}
  .provider small{font-size:10px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;display:block!important}
  .status-dot{flex:0 0 auto!important;padding:7px 9px!important;font-size:9px!important}
  .trade-line{padding:16px 2px!important;gap:6px!important}
  .trade-line>div{min-width:0!important;gap:8px!important}
  .trade-line strong{font-size:20px!important}.trade-line b{font-size:14px!important}.trade-line time{font-size:9px!important}
  .price-row{min-height:0!important;padding:12px 14px!important;margin:8px 0!important;border-radius:13px!important;font-size:14px!important}
  .price-row strong{font-size:16px!important}
  .pips-captured{box-sizing:border-box!important;width:100%!important;display:grid!important;grid-template-columns:30px minmax(0,1fr)!important;grid-template-areas:'icon value' 'icon label' 'icon note'!important;column-gap:10px!important;row-gap:1px!important;padding:13px 14px!important;margin:13px 0!important;overflow:hidden!important}
  .pips-captured>.crosshair{grid-area:icon!important;align-self:center!important;font-size:29px!important}
  .pips-captured>strong{grid-area:value!important;min-width:0!important;font-size:30px!important;line-height:1!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
  .pips-captured>div{display:contents!important}
  .pips-captured div b{grid-area:label!important;font-size:10px!important;line-height:1.15!important;color:#fff!important}
  .pips-captured div small{grid-area:note!important;min-width:0!important;font-size:9px!important;line-height:1.2!important;margin:2px 0 0!important;white-space:normal!important;overflow-wrap:anywhere!important;color:#aeb7c4!important}
  .trade-metrics{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:5px!important}
  .trade-metrics>div{min-width:0!important;padding:8px 5px!important;border-radius:10px!important;display:grid!important;grid-template-columns:20px minmax(0,1fr)!important;column-gap:4px!important}
  .trade-metrics span{font-size:19px!important}.trade-metrics small{font-size:7px!important;line-height:1.15!important;white-space:normal!important}.trade-metrics strong{font-size:9px!important;line-height:1.15!important;white-space:normal!important;overflow-wrap:anywhere!important}
}
@media (max-width:390px){
  .today-best-wrap{width:calc(100% - 10px)!important}
  .today-best-card{padding-left:9px!important;padding-right:9px!important}
  .today-best-title h2{font-size:34px!important}
  .pips-captured>strong{font-size:27px!important}
  .trade-metrics>div{padding:7px 3px!important;grid-template-columns:17px minmax(0,1fr)!important}.trade-metrics span{font-size:16px!important}.trade-metrics small{font-size:6.5px!important}.trade-metrics strong{font-size:8px!important}
}

/* TODAY BEST ENTRY — MATCH WEEKLY/MONTHLY MOBILE SCALE */
@media (max-width:760px){
  .today-best-wrap{width:calc(100% - 20px)!important;margin:38px auto!important}
  .today-best-title{margin-bottom:18px!important}
  .today-best-title h2{max-width:270px!important;margin:0 auto!important;font-size:34px!important;line-height:.9!important;letter-spacing:-.5px!important;white-space:normal!important}
  .today-best-title p{font-size:13px!important;margin:10px 0 0!important}
  .today-best-card{padding:0 10px 12px!important;border-radius:20px!important}
  .today-best-card header{padding:10px 0!important}
  .provider{gap:7px!important}.provider-logo{width:36px!important;height:36px!important;flex-basis:36px!important;font-size:21px!important;border-radius:10px!important}
  .provider strong{font-size:13px!important}.provider small{font-size:8px!important;margin-top:2px!important}
  .status-dot{padding:6px 8px!important;font-size:8px!important}
  .trade-line{padding:12px 1px!important}.trade-line>div{gap:6px!important}.trade-line strong{font-size:17px!important}.trade-line b{font-size:12px!important}.trade-line time{font-size:8px!important}
  .price-row{padding:9px 11px!important;margin:6px 0!important;border-radius:11px!important;font-size:12px!important}.price-row strong{font-size:14px!important}
  .pips-captured{grid-template-columns:24px minmax(0,1fr)!important;padding:10px 11px!important;margin:9px 0!important;column-gap:7px!important;border-radius:12px!important}
  .pips-captured>.crosshair{font-size:23px!important}.pips-captured>strong{font-size:23px!important}.pips-captured div b{font-size:8px!important}.pips-captured div small{font-size:7px!important;line-height:1.15!important}
  .trade-metrics{gap:4px!important}.trade-metrics>div{padding:6px 3px!important;grid-template-columns:15px minmax(0,1fr)!important;column-gap:3px!important;border-radius:9px!important}.trade-metrics span{font-size:14px!important}.trade-metrics small{font-size:6px!important}.trade-metrics strong{font-size:7px!important}
}
@media (max-width:390px){
  .today-best-title h2{max-width:235px!important;font-size:30px!important}
  .today-best-card{padding-left:8px!important;padding-right:8px!important}
  .provider strong{font-size:12px!important}.trade-line strong{font-size:16px!important}.trade-line b{font-size:11px!important}
  .pips-captured>strong{font-size:21px!important}
}

/* FINAL TODAY BEST ENTRY DESKTOP SIZE FIX */
@media (min-width: 901px){
  .today-best-wrap{max-width:1100px!important;width:min(100% - 48px,1100px)!important;margin-left:auto!important;margin-right:auto!important}
  .today-best-card{max-width:1000px!important;width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:48px!important;padding-right:48px!important}
  .today-best-title h2{font-size:clamp(58px,6vw,88px)!important}
  .today-best-title p{font-size:24px!important}
  .today-best-card header{padding-top:34px!important;padding-bottom:34px!important}
  .today-best-card .provider strong{font-size:30px!important}
  .today-best-card .trade-line{padding-top:38px!important;padding-bottom:38px!important}
  .today-best-card .price-row{min-height:88px!important;font-size:25px!important}
  .today-best-card .pips-captured{min-height:145px!important}
}
@media (min-width: 701px) and (max-width: 900px){
  .today-best-wrap{width:min(100% - 32px,820px)!important}
  .today-best-card{width:100%!important}
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp{position:fixed;right:22px;bottom:92px;z-index:9998;display:flex;align-items:center;gap:10px;padding:13px 18px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:linear-gradient(135deg,#25d366,#12a94d);color:#fff;text-decoration:none;font-weight:900;box-shadow:0 14px 36px rgba(37,211,102,.32);transition:transform .25s ease,box-shadow .25s ease}
.floating-whatsapp:hover{transform:translateY(-4px) scale(1.03);box-shadow:0 20px 45px rgba(37,211,102,.45)}
.wa-icon{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#fff;color:#16b956;font-size:17px}
@media(max-width:640px){.floating-whatsapp{right:14px;bottom:84px;padding:12px}.wa-label{display:none}}
