:root {
    --bg-dark: #050505;
    --bg-soft: #0d0d0f;
    --card-dark: rgba(255, 255, 255, 0.055);
    --text-white: #ffffff;
    --text-gray: #b8b8c2;
    --text-dark: #111111;
    --accent-gold: #f5c542;
    --accent-orange: #ff9f1c;
    --gold-gradient: linear-gradient(135deg, #fff2a8 0%, #f5c542 42%, #ff9f1c 100%);
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    color: var(--text-white);
    background: #050505;
    overflow-x: hidden;
}

main {
    background: #050505;
}

body.menu-open {
    overflow: hidden;
}

.ghost-anchors {
    position: absolute;
    inset: auto 0 0 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.ghost-anchors span {
    display: block;
    width: 0;
    height: 0;
}

.main-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245, 197, 66, 0.08) 10%,
        rgba(245, 197, 66, 0.34) 25%,
        rgba(255, 159, 28, 0.30) 50%,
        rgba(245, 197, 66, 0.34) 75%,
        rgba(245, 197, 66, 0.08) 90%,
        transparent 100%);
    pointer-events: none;
}

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

ul {
    list-style: none;
}

.main-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    background: rgba(5, 5, 5, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.navbar {
    width: calc(100% - 40px);
    max-width: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
    white-space: nowrap;
}

.logo span {
    color: var(--accent-gold);
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #080808;
    background: var(--gold-gradient);
    border-radius: 13px;
    box-shadow: 0 0 28px rgba(245, 197, 66, 0.35);
}

.nav-links {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 20px;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 13px;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.28s ease, transform 0.28s ease;
}

.nav-links a span,
.nav-links a i {
    position: relative;
    z-index: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.16), rgba(255, 159, 28, 0.06));
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245, 197, 66, 0), rgba(245, 197, 66, 0.95), rgba(255, 159, 28, 0.88), rgba(245, 197, 66, 0));
    transform: scaleX(0.32);
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
    transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.vip-link {
    color: #ffe28a !important;
}

.nav-cta {
    flex: 0 0 auto;
    margin-left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn,
.join-btn,
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transform: translateZ(0);
    transition:
        color 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.login-btn,
.join-btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
}

.btn-primary,
.btn-secondary {
    min-height: 54px;
    padding: 0 28px;
    font-size: 15px;
    border-radius: 16px;
}

.login-btn,
.btn-secondary,
.plan-btn {
    color: #ffe28a;
    border: 1px solid rgba(245, 197, 66, 0.38);
    background: rgba(8, 8, 10, 0.48);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.join-btn,
.btn-primary {
    color: #060606;
    border: 1px solid rgba(255, 226, 138, 0.6);
    background: var(--gold-gradient);
    box-shadow: 0 12px 32px rgba(245, 197, 66, 0.18);
}

.plan-btn i {
    color: #ffe28a;
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(245, 197, 66, 0.45));
}

.login-btn span,
.join-btn span,
.btn-primary span,
.btn-secondary span,
.login-btn i,
.join-btn i,
.btn-primary i,
.btn-secondary i {
    position: relative;
    z-index: 2;
}

.login-btn::before,
.btn-secondary::before,
.plan-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: var(--gold-gradient);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 0.28s ease, transform 0.32s ease;
    pointer-events: none;
}

.join-btn::before,
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.14);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.login-btn::after,
.join-btn::after,
.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: inherit;
    opacity: 0;
    box-shadow:
        0 0 14px rgba(245, 197, 66, 0.36),
        0 0 32px rgba(255, 159, 28, 0.20);
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.login-btn:hover,
.join-btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 226, 138, 0.72);
}

.login-btn:hover::before,
.btn-secondary:hover::before,
.plan-btn:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.join-btn:hover::before,
.btn-primary:hover::before {
    opacity: 1;
}

.login-btn:hover::after,
.join-btn:hover::after,
.btn-primary:hover::after,
.btn-secondary:hover::after {
    opacity: 1;
}

.login-btn:hover,
.btn-secondary:hover,
.plan-btn:hover {
    color: #060606;
    box-shadow:
        0 0 18px rgba(245, 197, 66, 0.28),
        0 16px 32px rgba(0, 0, 0, 0.26);
}

.join-btn:hover,
.btn-primary:hover {
    box-shadow:
        0 0 18px rgba(245, 197, 66, 0.26),
        0 18px 40px rgba(245, 197, 66, 0.24);
}

.mobile-menu-icon {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
    font-size: 18px;
    cursor: pointer;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 130px 5% 54px;
    background: linear-gradient(180deg, #0b0b0d 0%, #070708 42%, #050505 100%);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: none;
}

.hero-section::after {
    content: '';
    z-index: 0;
    position: absolute;
    inset: 0;
    background-image: 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: 58px 58px;
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 75%, transparent);
    pointer-events: none;
}

.hero-glow {
    display: none;
}

.market-particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.86;
    mix-blend-mode: screen;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(880px, 100%);
}

.eyebrow,
.section-label,
.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto 18px;
    padding: 8px 14px;
    border: 1px solid rgba(245, 197, 66, 0.26);
    border-radius: 999px;
    color: #ffe28a;
    background: rgba(245, 197, 66, 0.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 22px;
    letter-spacing: -3px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-content h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-gray);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 38px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.6s;
}

main {
    min-height: 100vh;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 16px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-primary {
    color: #060606;
    background: var(--gold-gradient);
    box-shadow: 0 18px 45px rgba(245, 197, 66, 0.24);
}

.btn-secondary {
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.signal-preview {
    width: fit-content;
    max-width: 100%;
    margin: 44px auto 0;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 22px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--text-gray);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.8s;
}

.signal-preview strong {
    color: var(--text-white);
    transition: opacity 0.25s ease;
}

.live-dot {
    width: 9px;
    height: 9px;
    background: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff66;
    animation: blink 1.5s infinite;
    flex: 0 0 auto;
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(1080px, 100%);
    margin-top: 42px;
}

.market-tile,
.signal-card,
.pricing-card,
.performance-row div,
.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-stat-card {
    border: 1px solid rgba(245, 197, 66, 0.22);
    background: linear-gradient(180deg, rgba(20, 20, 23, 0.95) 0%, rgba(8, 8, 10, 0.92) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    min-height: 108px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-stat-card::before {
    content: none;
}

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

.hero-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 197, 66, 0.28);
    background: #0d0d11;
}

.hero-stat-card strong,
.performance-row strong {
    display: block;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -1px;
    color: #ffe28a;
}

.hero-stat-card strong span {
    font-size: 0.58em;
    vertical-align: top;
    margin-left: 2px;
}

.hero-stat-card p {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.performance-row span {
    display: block;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 700;
}

.content-section {
    padding: 95px 5%;
    position: relative;
}

.light-section {
    color: var(--text-dark);
    background: #f6f4ef;
}

.dark-section {
    color: var(--text-white);
    background:
        radial-gradient(circle at 85% 20%, rgba(245, 197, 66, 0.09), transparent 25%),
        var(--bg-soft);
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2,
.contact-card h2 {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin-bottom: 15px;
}

.section-heading p,
.contact-card p {
    color: #69696f;
    font-size: 17px;
    line-height: 1.75;
}

.dark-section .section-heading p,
.contact-card p {
    color: var(--text-gray);
}

.cards-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.signal-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px rgba(30, 20, 0, 0.09);
    color: var(--text-dark);
    padding: 26px;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #9b6900;
    font-weight: 800;
}

.card-top i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff2c2;
}

.signal-card h3,
.pricing-card h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.signal-card p,
.signal-card small {
    color: #64646c;
    line-height: 1.65;
}

.pricing-card {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
    gap: 24px;
}

.pricing-card p,
.pricing-card li {
    color: var(--text-gray);
    line-height: 1.8;
}

.pricing-card li i {
    color: #ffe28a;
    margin-right: 8px;
}

.convert-section {
    color: var(--text-white);
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 159, 28, 0.12), transparent 24%),
        radial-gradient(circle at 80% 70%, rgba(245, 197, 66, 0.1), transparent 28%),
        #070707;
}

.convert-grid {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.convert-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.convert-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 197, 66, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.convert-card span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: #050505;
    background: var(--gold-gradient);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(245, 197, 66, 0.18);
}

.convert-card h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.convert-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.featured-convert {
    border-color: rgba(245, 197, 66, 0.28);
    background:
        linear-gradient(135deg, rgba(245, 197, 66, 0.11), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.045);
}

.market-grid,
.performance-row {
    width: min(1040px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.market-tile {
    padding: 24px;
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px rgba(30, 20, 0, 0.08);
}

.market-tile span,
.market-tile small {
    display: block;
    color: #6b6b72;
    font-weight: 800;
}

.market-tile strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 28px;
    color: #111;
}

.market-tile .up {
    color: #008f4c;
}

.market-tile .down {
    color: #d32828;
}

.performance-row {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.performance-row div {
    padding: 30px 20px;
}

.contact-section {
    background: #050505;
}

.contact-card {
    width: min(1050px, 100%);
    margin: 0 auto;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 5%;
    color: var(--text-gray);
    background: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
    color: #ffe28a;
    font-weight: 800;
}

.reveal-hidden {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes moveGlow {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 50px); }
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-22px) scale(1.08); }
}

@keyframes blink {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .navbar {
        gap: 12px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        margin-left: 16px;
        gap: 5px;
    }

    .nav-links a {
        font-size: 13px;
        padding: 9px 9px;
    }

    .login-btn,
    .join-btn {
        min-height: 40px;
        padding: 0 14px;
    }
}

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

    .mobile-menu-icon {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nav-links.mobile-open {
        position: fixed;
        top: 75px;
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 18px;
        background: rgba(8, 8, 8, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .nav-links.mobile-open a {
        justify-content: center;
        padding: 15px;
    }

    .hero-stats,
    .cards-grid,
    .market-grid,
    .convert-grid,
    .pricing-card {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card {
        align-items: stretch;
    }

    .pricing-card .btn-primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .navbar {
        width: calc(100% - 24px);
        gap: 12px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .hero-section {
        min-height: auto;
        padding: 112px 16px 36px;
    }

    .market-particle-canvas {
        opacity: 0.62;
    }

    .hero-content h1 {
        letter-spacing: -1.7px;
        margin-bottom: 18px;
    }

    .hero-btns,
    .contact-card,
    .site-footer {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .signal-preview {
        width: 100%;
        flex-wrap: wrap;
        border-radius: 22px;
        padding: 16px;
    }

    .hero-stats,
    .cards-grid,
    .market-grid,
    .convert-grid,
    .performance-row,
    .pricing-card {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .hero-stat-card {
        min-height: 96px;
        padding: 18px 14px;
        border-radius: 20px;
    }

    .hero-stat-card p {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .content-section {
        padding: 72px 16px;
    }

    .signal-card,
    .convert-card,
    .pricing-card,
    .contact-card {
        padding: 24px;
    }

    .contact-card {
        text-align: center;
        align-items: stretch;
    }

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


.site-footer {
    display: none;
}

.hero-section {
    min-height: 100vh;
    padding-bottom: 72px;
}

@media (max-width: 680px) {
    .hero-section {
        padding-bottom: 46px;
    }
}


.summary-section {
    position: relative;
    padding: 95px 5% 100px;
    background: #050505;
}

.summary-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
    opacity: 0.34;
}

.summary-wrapper {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.summary-top {
    width: min(760px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 999px;
    border: 1px solid rgba(245, 197, 66, 0.24);
    background: rgba(245, 197, 66, 0.08);
    color: #ffe28a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.subtle-badge {
    margin-bottom: 14px;
}

.summary-top h2,
.summary-highlight h3 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.summary-top h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.summary-top p,
.summary-highlight p {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.8;
}

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

.summary-card,
.summary-highlight {
    position: relative;
    border: 1px solid rgba(245, 197, 66, 0.12);
    background: #0a0a0d;
    border-radius: 26px;
    box-shadow: none;
    backdrop-filter: none;
}

.summary-card {
    padding: 26px;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.summary-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 197, 66, 0.24);
    background: #0d0d11;
}

.summary-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: #0a0a0b;
    background: var(--gold-gradient);
    box-shadow: 0 10px 28px rgba(245, 197, 66, 0.2);
    font-size: 18px;
}

.summary-card strong {
    display: block;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--text-white);
}

.summary-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.summary-highlight {
    margin-top: 26px;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 28px;
}

.summary-points {
    display: grid;
    gap: 14px;
}

.summary-points span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    color: #f2f2f2;
    font-weight: 700;
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.summary-points i {
    color: #ffe28a;
}


@media (max-width: 1100px) {
    .summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summary-highlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .summary-section {
        padding: 72px 16px 78px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .summary-card,
    .summary-highlight {
        padding: 22px;
        border-radius: 22px;
    }

    .summary-top p,
    .summary-highlight p {
        font-size: 15px;
    }

    .summary-points span {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 14px;
    }
}


.vip-member-section {
    position: relative;
    padding: 10px 5% 110px;
    background: #050505;
}

.vip-member-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.vip-member-card {
    position: relative;
    overflow: hidden;
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 36px 34px 38px;
    text-align: center;
    border-radius: 28px;
    border: 1px solid rgba(255, 211, 92, 0.45);
    background: linear-gradient(135deg, #f7d24c 0%, #f4bc3f 46%, #f5ab2d 100%);
    box-shadow:
        0 18px 44px rgba(245, 169, 37, 0.14),
        0 0 0 1px rgba(255, 239, 178, 0.12) inset;
}

.vip-member-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 18%, transparent 18% 100%),
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.vip-member-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 251, 215, 0.18);
    pointer-events: none;
}

.vip-member-shine {
    position: absolute;
    top: -22%;
    left: -32%;
    width: 34%;
    height: 170%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.04) 18%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.06) 82%, transparent 100%);
    transform: rotate(18deg);
    animation: vipSheen 6.8s linear infinite;
    pointer-events: none;
}

.vip-member-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #2d2100;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vip-member-card h2 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -1.2px;
    color: #090909;
}

.vip-member-card h2 i {
    font-size: 0.8em;
}

.vip-member-card p {
    position: relative;
    z-index: 1;
    width: min(670px, 100%);
    margin: 18px auto 28px;
    color: rgba(12, 10, 2, 0.82);
    font-size: 20px;
    line-height: 1.7;
    font-weight: 600;
}

.vip-member-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 34px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: #050505;
    color: #ffe28a;
    font-weight: 800;
    font-size: 16px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.vip-member-btn span,
.vip-member-btn i {
    position: relative;
    z-index: 1;
}

.vip-member-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 0.28s ease, transform 0.32s ease;
}

.vip-member-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    opacity: 0;
    box-shadow: 0 0 14px rgba(255, 214, 103, 0.42), 0 0 34px rgba(245, 169, 37, 0.26);
    transition: opacity 0.28s ease;
}

.vip-member-btn:hover {
    transform: translateY(-2px);
    color: #050505;
    border-color: rgba(255, 236, 161, 0.76);
}

.vip-member-btn:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.vip-member-btn:hover::after {
    opacity: 1;
}

@keyframes vipSheen {
    0% { transform: translateX(0) rotate(18deg); opacity: 0; }
    8% { opacity: 0.95; }
    24% { opacity: 0.5; }
    45% { transform: translateX(340%) rotate(18deg); opacity: 0; }
    100% { transform: translateX(340%) rotate(18deg); opacity: 0; }
}

@media (max-width: 680px) {
    .vip-member-section {
        padding: 4px 16px 78px;
    }

    .vip-member-card {
        padding: 28px 18px 30px;
        border-radius: 24px;
    }

    .vip-member-badge {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .vip-member-card p {
        margin: 16px auto 24px;
        font-size: 16px;
    }

    .vip-member-btn {
        width: 100%;
        min-height: 54px;
        padding: 0 24px;
    }
}


/* cleanup after removing the large summary highlight card */
.summary-grid {
    margin-bottom: 0;
}

/* larger VIP card */
.vip-member-section {
    padding: 28px 5% 120px;
    background: #050505;
}

.vip-member-card {
    width: min(1120px, 100%);
    min-height: 340px;
    padding: 56px 48px 54px;
    border-radius: 30px;
}

.vip-member-card h2 {
    font-size: clamp(40px, 5.5vw, 68px);
}

.vip-member-card p {
    width: min(760px, 100%);
    margin: 22px auto 32px;
    font-size: 22px;
    line-height: 1.75;
}

.vip-member-btn {
    min-height: 60px;
    padding: 0 42px;
    font-size: 17px;
}

@media (max-width: 680px) {
    .vip-member-section {
        padding: 12px 16px 82px;
    }

    .vip-member-card {
        width: 100%;
        min-height: auto;
        padding: 34px 20px 34px;
        border-radius: 24px;
    }

    .vip-member-card h2 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .vip-member-card p {
        width: 100%;
        font-size: 16px;
        margin: 16px auto 24px;
    }
}


.convert-summary-section {
    position: relative;
    padding: 0 5% 115px;
    background: #050505;
}

.convert-summary-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    align-items: center;
    gap: 28px;
}

.convert-summary-copy,
.convert-preview-card {
    position: relative;
    border: 1px solid rgba(245, 197, 66, 0.13);
    background: #0a0a0d;
    border-radius: 30px;
}

.convert-summary-copy {
    min-height: 390px;
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.convert-summary-copy h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -2px;
    max-width: 760px;
}

.convert-summary-copy p {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    max-width: 720px;
}

.convert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.convert-tags span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffe28a;
    font-size: 13px;
    font-weight: 800;
    background: rgba(245, 197, 66, 0.07);
    border: 1px solid rgba(245, 197, 66, 0.15);
}

.convert-preview-card {
    padding: 26px;
    overflow: hidden;
}

.convert-preview-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at top right, rgba(245, 197, 66, 0.12), transparent 40%);
    pointer-events: none;
}

.convert-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.convert-card-top span,
.convert-card-top small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe28a;
    font-weight: 800;
}

.convert-card-top small {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(245, 197, 66, 0.08);
    border: 1px solid rgba(245, 197, 66, 0.16);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.converter-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.converter-row + .converter-row {
    margin-top: 14px;
}

.converter-row > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #050505;
    background: var(--gold-gradient);
}

.converter-row small {
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.converter-row strong {
    display: block;
    margin: 5px 0 3px;
    color: var(--text-white);
    font-size: 28px;
    line-height: 1;
}

.converter-row span {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 700;
}

.crypto-row {
    background: #0e0e11;
}

.convert-action-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    margin-top: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 226, 138, 0.42);
    color: #050505;
    background: var(--gold-gradient);
    font-weight: 900;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.convert-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(245, 197, 66, 0.22);
}

@media (max-width: 980px) {
    .convert-summary-wrap {
        grid-template-columns: 1fr;
    }

    .convert-summary-copy {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .convert-summary-section {
        padding: 0 16px 78px;
    }

    .convert-summary-copy,
    .convert-preview-card {
        padding: 22px;
        border-radius: 24px;
    }

    .convert-summary-copy h2 {
        letter-spacing: -1.4px;
    }

    .convert-summary-copy p {
        font-size: 15px;
    }

    .convert-tags {
        gap: 10px;
    }

    .convert-tags span {
        width: 100%;
        justify-content: center;
    }

    .converter-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .converter-row > i {
        margin: 0 auto;
        transform: rotate(90deg);
    }
}


.image-scroll-section {
    position: relative;
    background: #050505;
}

.sticky-slide {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.28)),
        var(--slide-image),
        linear-gradient(135deg, #050505 0%, #111114 100%);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.sticky-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.12), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(255, 159, 28, 0.1), transparent 30%);
}

.sticky-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.55;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.18) 45%, rgba(5, 5, 5, 0.82) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.3) 55%, rgba(5, 5, 5, 0.72) 100%);
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px;
    border-radius: 32px;
    border: 1px solid rgba(245, 197, 66, 0.16);
    background: rgba(8, 8, 10, 0.54);
    backdrop-filter: blur(18px);
    text-align: center;
}

.slide-content h2 {
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.slide-content p {
    width: min(720px, 100%);
    margin: 20px auto 0;
    color: var(--text-gray);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.75;
}

.slide-one {
    --slide-image: none;
}

.slide-two {
    --slide-image: none;
}

.slide-three {
    --slide-image: none;
}

.slide-four {
    background:
        radial-gradient(circle at 18% 22%, rgba(245, 197, 66, 0.14), transparent 26%),
        radial-gradient(circle at 85% 72%, rgba(255, 159, 28, 0.12), transparent 28%),
        linear-gradient(135deg, #050505 0%, #101014 48%, #050505 100%);
}

@media (max-width: 680px) {
    .sticky-slide {
        min-height: 100vh;
        padding: 0 16px;
    }

    .slide-content {
        width: 100%;
        padding: 26px 20px;
        border-radius: 24px;
    }

    .slide-content h2 {
        letter-spacing: -1.5px;
    }
}

/* Images-only sticky scroll refinement */
.image-scroll-section {
    position: relative;
    background: #050505;
}

.sticky-slide {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.1)),
        var(--slide-image),
        linear-gradient(135deg, #050505 0%, #111114 100%);
    background-size: cover;
    background-position: center center;
    isolation: isolate;
}

.sticky-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.08), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(255, 159, 28, 0.06), transparent 30%);
    pointer-events: none;
}

.sticky-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.42;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.1) 45%, rgba(5, 5, 5, 0.68) 100%),
        radial-gradient(circle at center, rgba(5, 5, 5, 0) 35%, rgba(5, 5, 5, 0.32) 100%);
    pointer-events: none;
}

.slide-frame {
    position: absolute;
    inset: 40px;
    z-index: 2;
    border-radius: 30px;
    border: 1px solid rgba(245, 197, 66, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.slide-content {
    display: none !important;
}

/* Footer */
.site-footer {
    display: block;
    position: relative;
    background: #050505;
    padding: 34px 5% 28px;
    border-top: 1px solid rgba(245, 197, 66, 0.10);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.22;
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
}

.footer-wrap {
    position: relative;
    z-index: 1;
    width: min(1140px, 100%);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr;
    gap: 46px;
    align-items: start;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.footer-brand h3 span,
.footer-bottom strong,
.footer-links-block h4 {
    color: var(--accent-orange);
}

.footer-brand p {
    width: min(350px, 100%);
    margin-top: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--text-gray);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245, 197, 66, 0.14);
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    color: #ffe28a;
    border-color: rgba(245, 197, 66, 0.35);
    background: rgba(245, 197, 66, 0.08);
}

.footer-links-block h4 {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.footer-links-block ul {
    display: grid;
}

.footer-links-block li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-links-block a {
    display: block;
    padding: 14px 0;
    color: var(--text-gray);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links-block a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 197, 66, 0.16);
    text-align: center;
}

.footer-bottom p {
    color: #8f91a6;
    font-size: 15px;
}

.mobile-app-nav {
    display: none;
}

/* Mobile web app polish */
@media (max-width: 760px) {
    html {
        scroll-padding-top: 86px;
    }

    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
        background: #050505;
        -webkit-tap-highlight-color: transparent;
    }

    .main-header {
        padding: calc(12px + env(safe-area-inset-top)) 0 12px;
        background: rgba(5, 5, 5, 0.9);
    }

    .navbar {
        width: calc(100% - 24px);
        gap: 10px;
    }

    .logo {
        font-size: 17px;
        gap: 8px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }

    .mobile-menu-icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        margin-left: auto;
    }

    .nav-links.mobile-open {
        top: calc(76px + env(safe-area-inset-top));
        left: 12px;
        right: 12px;
        padding: 14px;
        border-radius: 24px;
        background: rgba(8, 8, 10, 0.98);
    }

    .nav-links.mobile-open a {
        min-height: 48px;
        padding: 12px;
    }

    .hero-section {
        min-height: 100svh;
        padding: calc(112px + env(safe-area-inset-top)) 16px 42px;
    }

    .eyebrow,
    .section-badge,
    .vip-member-badge {
        font-size: 10px;
        letter-spacing: 0.55px;
        padding: 7px 11px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: 0.98;
        letter-spacing: -2.1px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .btn-primary,
    .btn-secondary,
    .vip-member-btn,
    .convert-action-btn {
        min-height: 52px;
        border-radius: 18px;
    }

    .signal-preview {
        margin-top: 28px;
        border-radius: 20px;
        gap: 8px;
        font-size: 13px;
    }

    .hero-stats {
        margin-top: 28px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-stat-card {
        min-height: 92px;
        padding: 16px 10px;
        border-radius: 20px;
    }

    .hero-stat-card strong {
        font-size: 30px;
    }

    .summary-section {
        padding: 72px 16px 70px;
    }

    .summary-top {
        margin-bottom: 26px;
    }

    .summary-top h2,
    .convert-summary-copy h2 {
        font-size: clamp(32px, 10vw, 44px);
        letter-spacing: -1.6px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .summary-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        column-gap: 14px;
        padding: 18px;
        border-radius: 22px;
    }

    .summary-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        grid-row: span 2;
    }

    .summary-card strong {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .summary-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .vip-member-section {
        padding: 4px 16px 72px;
    }

    .vip-member-card {
        min-height: auto;
        padding: 32px 18px;
        border-radius: 26px;
    }

    .vip-member-card h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .vip-member-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .convert-summary-section {
        padding: 0 16px 72px;
    }

    .convert-summary-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .convert-summary-copy,
    .convert-preview-card {
        padding: 20px;
        border-radius: 24px;
    }

    .convert-summary-copy {
        min-height: auto;
    }

    .convert-summary-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .convert-tags span {
        width: 100%;
        min-height: 42px;
        justify-content: center;
    }

    .converter-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 16px;
    }

    .converter-row > i {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .sticky-slide {
        min-height: 82svh;
        background-size: cover;
    }

    .slide-frame {
        inset: 12px;
        border-radius: 22px;
    }

    .site-footer {
        padding: 28px 16px calc(90px + env(safe-area-inset-bottom));
    }

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

    .footer-brand h3 {
        font-size: 22px;
    }

    .footer-brand p {
        width: 100%;
        font-size: 15px;
    }

    .footer-socials a {
        width: 42px;
        height: 42px;
    }

    .footer-links-block h4 {
        margin-bottom: 10px;
    }

    .footer-links-block a {
        padding: 12px 0;
    }

    .footer-bottom {
        margin-top: 26px;
        padding-top: 18px;
    }

    .footer-bottom p {
        font-size: 14px;
        line-height: 1.7;
    }

    .mobile-app-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 1200;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 8px;
        border-radius: 24px;
        background: rgba(8, 8, 10, 0.88);
        border: 1px solid rgba(245, 197, 66, 0.16);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.44);
        backdrop-filter: blur(20px);
    }

    .mobile-app-nav a {
        min-height: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-radius: 18px;
        color: var(--text-gray);
        font-size: 11px;
        font-weight: 800;
        transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    .mobile-app-nav a i {
        font-size: 16px;
    }

    .mobile-app-nav a.active,
    .mobile-app-nav a:hover {
        color: #050505;
        background: var(--gold-gradient);
        transform: translateY(-1px);
    }
}


/* Trading guide + FAQ update */
.trading-guide-section,
.faq-section {
    position: relative;
    background: #050505;
    padding: 0 5% 110px;
}

.trading-guide-wrap,
.faq-wrap {
    width: min(1140px, 100%);
    margin: 0 auto;
}

.trading-guide-head,
.faq-head {
    width: min(760px, 100%);
    margin: 0 auto 38px;
    text-align: center;
}

.trading-guide-head h2,
.faq-head h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.06;
    letter-spacing: -1.8px;
}

.trading-guide-head p,
.faq-head p {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.75;
}

.trading-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.trading-guide-card {
    position: relative;
    padding: 30px 24px;
    border-radius: 28px;
    border: 1px solid rgba(245, 197, 66, 0.14);
    background: #0a0a0d;
    text-align: center;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.trading-guide-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 197, 66, 0.24);
    background: #0d0d11;
}

.trading-guide-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #050505;
    background: var(--gold-gradient);
    box-shadow: 0 12px 28px rgba(245, 197, 66, 0.16);
}

.trading-guide-card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.trading-guide-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.faq-section {
    padding-top: 0;
    padding-bottom: 72px;
}

.faq-list {
    width: min(920px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 24px;
    border: 1px solid rgba(245, 197, 66, 0.12);
    background: #0a0a0d;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffe28a;
    background: rgba(245, 197, 66, 0.08);
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
    background: var(--gold-gradient);
    color: #050505;
}

.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 980px) {
    .trading-guide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .trading-guide-section,
    .faq-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .trading-guide-section {
        padding-bottom: 72px;
    }

    .faq-section {
        padding-bottom: 54px;
    }

    .trading-guide-head,
    .faq-head {
        margin-bottom: 24px;
    }

    .trading-guide-head h2,
    .faq-head h2 {
        font-size: clamp(30px, 10vw, 42px);
        letter-spacing: -1.4px;
    }

    .trading-guide-head p,
    .faq-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .trading-guide-grid {
        gap: 12px;
    }

    .trading-guide-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .trading-guide-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 19px;
        margin-bottom: 14px;
    }

    .trading-guide-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .trading-guide-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 20px;
    }

    .faq-item summary {
        padding: 18px 16px;
        font-size: 15px;
    }

    .faq-item summary i {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: 12px;
    }

    .faq-item p {
        padding: 0 16px 18px;
        font-size: 14px;
        line-height: 1.7;
    }
}
