@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
    --bg: #050505;
    --bg2: #0b0b0b;
    --card: #111111;
    --card2: #171717;
    --gold: #d4af37;
    --gold2: #f5d36c;
    --text: #ffffff;
    --muted: #b8b8b8;
    --line: rgba(212, 175, 55, 0.28);
    --telegram: #229ed9;
    --green: #58d26f;
    --red: #ff5b55;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Tajawal', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 35%), var(--bg);
    color: var(--text);
    line-height: 1.8;
}

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

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

.risk-top {
    text-align: center;
    background: #100d05;
    color: var(--gold2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding: 8px 14px;
    font-size: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

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

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

.brand-logo {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--gold2);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.04));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    font-size: 26px;
}

.brand strong {
    display: block;
    color: var(--gold2);
    letter-spacing: 0.4px;
}

.brand span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.desktop-nav {
    display: flex;
    gap: 26px;
    color: #e8e8e8;
    font-size: 15px;
}

.desktop-nav a:hover {
    color: var(--gold2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    transition: 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--telegram), #38bdf8);
    color: white;
    box-shadow: 0 12px 38px rgba(34, 158, 217, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(34, 158, 217, 0.38);
}

.btn-secondary,
.btn-outline {
    color: var(--gold2);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background:
        linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), transparent),
        repeating-linear-gradient(90deg, transparent 0 38px, rgba(212, 175, 55, 0.08) 39px, transparent 40px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    color: var(--gold2);
    font-weight: 800;
    letter-spacing: 1px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.08;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: #fff;
}

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

.hero-text {
    margin: 24px 0 0;
    max-width: 610px;
    color: #e8e8e8;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

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

.brief-card {
    position: relative;
    min-height: 510px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
        #0a0a0a;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transform: rotate(-2deg);
}

.brief-glow {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: var(--gold2);
    filter: blur(90px);
    opacity: 0.3;
}

.chart-line {
    height: 180px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 22px;
    margin-bottom: 26px;
    background:
        linear-gradient(130deg, transparent 8%, rgba(212, 175, 55, 0.12) 9%, transparent 10%),
        linear-gradient(160deg, transparent 20%, rgba(245, 211, 108, 0.45) 21%, transparent 22%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px);
    box-shadow: inset 0 -40px 70px rgba(212, 175, 55, 0.12);
}

.brief-head h2 {
    color: var(--gold2);
    font-size: 34px;
    margin: 0;
    line-height: 1.2;
}

.brief-head p {
    margin: 4px 0 24px;
    color: #fff;
    font-size: 18px;
}

.brief-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brief-row span {
    color: var(--muted);
}

.brief-row strong {
    text-align: left;
    direction: ltr;
}

.green { color: var(--green); }
.red { color: var(--red); }
.gold { color: var(--gold2); }

.card-disclaimer {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.section {
    padding: 38px 0;
}

.stats-section {
    margin-top: 32px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title.compact {
    margin-bottom: 20px;
}

.section-title h2 {
    color: var(--gold2);
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.25;
    margin: 0;
}

.section-title p {
    color: var(--muted);
    margin: 10px 0 0;
}

.stats-grid,
.features-grid,
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card,
.feature-card,
.transparency-grid div,
.compare-card,
.sample-card,
.telegram-cta,
.faq-grid details {
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.stat-card {
    padding: 28px 22px;
    text-align: center;
}

.stat-card span,
.feature-card .icon {
    font-size: 34px;
    display: block;
    color: var(--gold2);
}

.stat-card strong {
    display: block;
    color: var(--gold2);
    font-size: 26px;
    margin-top: 8px;
}

.stat-card p,
.feature-card p {
    color: var(--muted);
    margin: 6px 0 0;
}

.feature-card {
    padding: 30px 24px;
}

.feature-card h3 {
    color: var(--gold2);
    margin: 14px 0 6px;
    font-size: 22px;
}

.compare-card {
    padding: 36px;
}

.compare-card h2 {
    text-align: center;
    color: var(--gold2);
    margin: 0 0 28px;
    font-size: clamp(28px, 3vw, 42px);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    gap: 24px;
}

.compare-box {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
}

.compare-box h3 {
    margin: 0 0 14px;
    font-size: 26px;
}

.compare-box ul {
    margin: 0;
    padding: 0 22px 0 0;
}

.compare-box li {
    margin: 8px 0;
}

.compare-box.danger {
    background: rgba(255, 91, 85, 0.08);
}

.compare-box.danger h3 {
    color: var(--red);
}

.compare-box.success {
    background: rgba(88, 210, 111, 0.08);
}

.compare-box.success h3 {
    color: var(--green);
}

.vs {
    color: var(--gold2);
    font-size: 64px;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.45);
}

.sample-card {
    padding: 30px;
}

.sample-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.mini-chart {
    min-height: 190px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.09);
    background:
        linear-gradient(160deg, transparent 30%, rgba(88, 210, 111, 0.25) 31%, transparent 32%),
        linear-gradient(30deg, transparent 45%, rgba(255, 91, 85, 0.22) 46%, transparent 47%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 38px),
        #080808;
}

.sample-content p {
    margin: 0;
    color: #eeeeee;
    font-size: 20px;
}

.sample-content small {
    display: block;
    margin-top: 16px;
    color: var(--muted);
}

.telegram-cta {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-color: rgba(212, 175, 55, 0.42);
    background:
        radial-gradient(circle at left, rgba(34, 158, 217, 0.22), transparent 25%),
        radial-gradient(circle at right, rgba(212, 175, 55, 0.24), transparent 25%),
        #090909;
}

.telegram-icon {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--telegram), #38bdf8);
    border-radius: 28px;
    font-size: 48px;
    box-shadow: 0 16px 50px rgba(34, 158, 217, 0.28);
}

.telegram-cta h2 {
    color: var(--gold2);
    font-size: 42px;
    margin: 0;
    direction: ltr;
    text-align: right;
}

.telegram-cta p {
    color: #eeeeee;
    margin: 6px 0 18px;
}

.telegram-cta small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
}

.transparency-grid {
    grid-template-columns: repeat(6, 1fr);
}

.transparency-grid div {
    padding: 24px 14px;
    text-align: center;
    color: var(--gold2);
    min-height: 136px;
    display: grid;
    place-items: center;
    gap: 8px;
}

.transparency-grid strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

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

.faq-grid details {
    padding: 0;
    overflow: hidden;
}

.faq-grid summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    font-weight: 800;
    color: #fff;
}

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

.faq-grid p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
}

.site-footer {
    margin-top: 36px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    background: #070707;
}

.footer-grid {
    display: grid;
    grid-template-columns: 260px 1fr 180px;
    gap: 36px;
    padding: 36px 0;
}

.footer-brand {
    display: grid;
    gap: 10px;
    color: var(--gold2);
}

.footer-brand span {
    color: var(--muted);
}

.risk-footer h3 {
    margin: 0 0 8px;
    color: var(--gold2);
}

.risk-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #ddd;
}

.footer-links a:hover {
    color: var(--gold2);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--muted);
    text-align: center;
    padding: 14px;
    font-size: 13px;
}

.mobile-sticky {
    display: none;
}

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

    .hero-grid,
    .sample-content,
    .telegram-cta,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 44px;
    }

    .brief-card {
        transform: none;
        min-height: auto;
    }

    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .vs {
        font-size: 42px;
    }

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

    .telegram-cta h2 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 76px;
    }

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

    .risk-top {
        font-size: 12px;
        line-height: 1.6;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 22px;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand span {
        font-size: 12px;
    }

    .site-header .btn {
        display: none;
    }

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

    .hero-text {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .brief-card {
        padding: 24px;
        border-radius: 24px;
    }

    .brief-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .brief-row strong {
        text-align: right;
    }

    .stats-grid,
    .features-grid,
    .transparency-grid {
        grid-template-columns: 1fr;
    }

    .compare-card,
    .sample-card,
    .telegram-cta {
        padding: 22px;
    }

    .mobile-sticky {
        position: fixed;
        right: 14px;
        left: 14px;
        bottom: 14px;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--telegram), #38bdf8);
        color: #fff;
        font-weight: 900;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
    }
}

.legal-page {
    max-width: 900px;
    padding-top: 70px;
    padding-bottom: 90px;
}

.legal-page h1 {
    color: var(--gold2);
    font-size: clamp(34px, 5vw, 58px);
    margin: 0 0 24px;
}

.legal-page h2 {
    color: var(--gold2);
    margin: 34px 0 8px;
    font-size: 26px;
}

.legal-page p {
    color: #e8e8e8;
    font-size: 18px;
}

.legal-page .btn {
    margin-top: 18px;
    width: auto;
}

.brand-logo {
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
}

.hero-copy {
    animation: softFadeUp 0.65s ease both;
}

.brief-card {
    animation: softFadeUp 0.85s ease both;
}

.stat-card,
.feature-card,
.compare-card,
.sample-card,
.telegram-cta,
.transparency-grid div,
.faq-grid details {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.stat-card:hover,
.feature-card:hover,
.transparency-grid div:hover,
.faq-grid details:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 211, 108, 0.45);
    box-shadow: 0 24px 70px rgba(212, 175, 55, 0.10);
}

@keyframes softFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-sticky {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: 0.25s ease;
}

.show-sticky-cta .mobile-sticky {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ===== DESIGN POLISH V3 ===== */

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
}

.gold-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(70px);
    opacity: 0.28;
    background: #d4af37;
}

.gold-orb-one {
    width: 260px;
    height: 260px;
    top: 120px;
    right: -80px;
}

.gold-orb-two {
    width: 320px;
    height: 320px;
    bottom: 30px;
    left: -120px;
}

.gold-bars-decoration {
    position: absolute;
    left: 3%;
    bottom: 70px;
    width: 210px;
    height: 210px;
    opacity: 0.45;
    background:
        linear-gradient(180deg, rgba(245, 211, 108, 0.9), rgba(122, 85, 8, 0.25)) 0 90px / 18px 120px no-repeat,
        linear-gradient(180deg, rgba(245, 211, 108, 0.9), rgba(122, 85, 8, 0.25)) 36px 55px / 18px 155px no-repeat,
        linear-gradient(180deg, rgba(245, 211, 108, 0.9), rgba(122, 85, 8, 0.25)) 72px 20px / 18px 190px no-repeat,
        linear-gradient(180deg, rgba(245, 211, 108, 0.9), rgba(122, 85, 8, 0.25)) 108px 75px / 18px 135px no-repeat,
        linear-gradient(180deg, rgba(245, 211, 108, 0.9), rgba(122, 85, 8, 0.25)) 144px 42px / 18px 168px no-repeat;
    transform: skewX(-8deg);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, #050505);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: -34px -34px auto auto;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold2));
    border-radius: 999px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: rgba(212, 175, 55, 0.08);
    padding: 8px 14px;
    border-radius: 999px;
}

.eyebrow::before {
    content: "●";
    color: var(--gold2);
    font-size: 12px;
    text-shadow: 0 0 12px rgba(245, 211, 108, 0.9);
}

.hero h1 {
    text-shadow: 0 0 45px rgba(212, 175, 55, 0.15);
}

.brief-card {
    z-index: 2;
    border-color: rgba(245, 211, 108, 0.42);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 60px rgba(212, 175, 55, 0.12);
}

.brief-card::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 70px;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold2), transparent);
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(245, 211, 108, 0.65);
}

.chart-line {
    position: relative;
    overflow: hidden;
}

.chart-line svg {
    position: absolute;
    inset: 22px;
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    overflow: visible;
}

.chart-line polyline {
    fill: none;
    stroke: #f5d36c;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(245, 211, 108, 0.8));
}

.chart-line .chart-shadow {
    stroke: rgba(245, 211, 108, 0.22);
    stroke-width: 18;
    filter: blur(10px);
}

.brief-row {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-section {
    position: relative;
    z-index: 3;
    margin-top: -18px;
}

.stats-grid {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 28px;
    padding: 16px;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(14px);
}

.stat-card {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    border-left: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 0;
}

.stat-card:last-child {
    border-left: 0;
}

.feature-card {
    min-height: 210px;
}

.compare-card,
.sample-card,
.telegram-cta {
    position: relative;
    overflow: hidden;
}

.compare-card::before,
.sample-card::before,
.telegram-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 45%);
    pointer-events: none;
}

.mini-chart {
    position: relative;
    overflow: hidden;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 38px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 44px),
        #080808;
}

.mini-chart::after {
    content: "";
    position: absolute;
    right: 20px;
    left: 20px;
    top: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(245, 211, 108, 0.1), rgba(245, 211, 108, 0.9), rgba(245, 211, 108, 0.1));
    transform: rotate(-7deg);
    box-shadow: 0 0 18px rgba(245, 211, 108, 0.65);
}

.mini-level {
    position: absolute;
    left: 16px;
    font-weight: 900;
    font-size: 14px;
    z-index: 2;
}

.mini-red {
    top: 34px;
    color: var(--red);
}

.mini-green {
    color: var(--green);
}

.level-one {
    top: 82px;
}

.level-two {
    top: 124px;
}

.mini-chart::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 40px;
    height: 1px;
    border-top: 1px dashed rgba(255, 91, 85, 0.65);
    box-shadow: 0 48px 0 rgba(88, 210, 111, 0.6), 0 90px 0 rgba(88, 210, 111, 0.45);
}

.mini-candle {
    position: absolute;
    bottom: 42px;
    width: 14px;
    border-radius: 4px;
    background: var(--green);
    box-shadow: 0 0 16px rgba(88, 210, 111, 0.35);
}

.mini-candle::before {
    content: "";
    position: absolute;
    top: -18px;
    bottom: -18px;
    right: 6px;
    width: 2px;
    background: currentColor;
    opacity: 0.8;
}

.red-candle {
    background: var(--red);
    color: var(--red);
    box-shadow: 0 0 16px rgba(255, 91, 85, 0.35);
}

.candle-1 { right: 45px; height: 58px; }
.candle-2 { right: 78px; height: 42px; bottom: 60px; }
.candle-3 { right: 112px; height: 76px; bottom: 48px; }
.candle-4 { right: 148px; height: 54px; bottom: 82px; }
.candle-5 { right: 184px; height: 64px; bottom: 72px; }
.candle-6 { right: 222px; height: 86px; bottom: 88px; }

.footer-links a,
.desktop-nav a {
    position: relative;
}

.footer-links a::after,
.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold2);
    transition: width 0.2s ease;
}

.footer-links a:hover::after,
.desktop-nav a:hover::after {
    width: 100%;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
    }

    .gold-bars-decoration {
        display: none;
    }

    .stats-grid {
        border-radius: 24px;
    }

    .stat-card {
        border-left: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 34px;
    }

    .brief-card::after {
        left: 36px;
        width: 90px;
    }

    .stats-grid {
        padding: 8px;
    }

    .stat-card {
        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
        border-left: 0;
        border-radius: 18px;
    }
}

/* ===== ANIMATION V4 ===== */

@media (prefers-reduced-motion: no-preference) {
    .brand-logo {
        animation: logoPulse 3.8s ease-in-out infinite;
    }

    .brief-card {
        animation:
            softFadeUp 0.85s ease both,
            briefFloat 5.5s ease-in-out infinite 1s;
    }

    .gold-orb-one {
        animation: orbFloatOne 9s ease-in-out infinite;
    }

    .gold-orb-two {
        animation: orbFloatTwo 11s ease-in-out infinite;
    }

    .gold-bars-decoration {
        animation: barsGlow 4s ease-in-out infinite;
    }

    .chart-line polyline:not(.chart-shadow) {
        stroke-dasharray: 760;
        stroke-dashoffset: 760;
        animation: drawGoldChart 2.2s ease forwards 0.55s;
    }

    .chart-line .chart-shadow {
        opacity: 0;
        animation: chartShadowIn 1.4s ease forwards 1.5s;
    }

    .hero h1 {
        animation: headlineGlow 4.2s ease-in-out infinite;
    }

    .btn-shimmer {
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

    .btn-shimmer::after {
        content: "";
        position: absolute;
        top: -40%;
        bottom: -40%;
        width: 46px;
        right: -80px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
        transform: rotate(18deg);
        animation: btnShimmer 3.2s ease-in-out infinite;
        z-index: -1;
    }

    .anim-ready .js-animate {
        opacity: 0;
        transform: translateY(28px) scale(0.985);
        transition:
            opacity 0.7s ease var(--delay),
            transform 0.7s ease var(--delay);
    }

    .anim-ready .js-animate.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .stat-card span,
    .feature-card .icon,
    .transparency-grid div {
        animation: iconSoftPulse 3.8s ease-in-out infinite;
    }

    .mini-candle {
        transform-origin: bottom center;
        animation: candlePop 0.8s ease both;
    }

    .candle-1 { animation-delay: 0.15s; }
    .candle-2 { animation-delay: 0.25s; }
    .candle-3 { animation-delay: 0.35s; }
    .candle-4 { animation-delay: 0.45s; }
    .candle-5 { animation-delay: 0.55s; }
    .candle-6 { animation-delay: 0.65s; }
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 0 24px rgba(212, 175, 55, 0.16);
    }
    50% {
        box-shadow: 0 0 38px rgba(245, 211, 108, 0.34);
    }
}

@keyframes briefFloat {
    0%, 100% {
        transform: rotate(-2deg) translateY(0);
    }
    50% {
        transform: rotate(-2deg) translateY(-12px);
    }
}

@keyframes orbFloatOne {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-35px, 28px) scale(1.08);
    }
}

@keyframes orbFloatTwo {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(32px, -24px) scale(1.12);
    }
}

@keyframes barsGlow {
    0%, 100% {
        opacity: 0.34;
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.24));
    }
    50% {
        opacity: 0.62;
        filter: drop-shadow(0 0 18px rgba(245, 211, 108, 0.42));
    }
}

@keyframes drawGoldChart {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes chartShadowIn {
    to {
        opacity: 1;
    }
}

@keyframes headlineGlow {
    0%, 100% {
        text-shadow: 0 0 36px rgba(212, 175, 55, 0.12);
    }
    50% {
        text-shadow: 0 0 56px rgba(245, 211, 108, 0.22);
    }
}

@keyframes btnShimmer {
    0% {
        right: -90px;
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    45% {
        right: calc(100% + 80px);
        opacity: 0;
    }
    100% {
        right: calc(100% + 80px);
        opacity: 0;
    }
}

@keyframes iconSoftPulse {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 0 rgba(245, 211, 108, 0));
    }
    50% {
        transform: translateY(-3px);
        filter: drop-shadow(0 0 10px rgba(245, 211, 108, 0.28));
    }
}

@keyframes candlePop {
    from {
        transform: scaleY(0.12);
        opacity: 0.2;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
    .brief-card {
        animation:
            softFadeUp 0.85s ease both,
            briefMobileFloat 5.5s ease-in-out infinite 1s;
    }

    @keyframes briefMobileFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }
}

/* ===== MOBILE POLISH V5 ===== */

@media (max-width: 768px) {
    .risk-top {
        padding: 7px 12px;
        font-size: 12px;
        line-height: 1.55;
    }

    .site-header {
        top: 0;
    }

    .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    .header-inner > .btn.small {
        display: inline-flex;
        width: auto;
        min-height: 40px;
        padding: 0 13px;
        border-radius: 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .brand {
        min-width: 0;
        gap: 10px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 14px;
    }

    .brand strong {
        font-size: 13px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .brand span {
        font-size: 11px;
        line-height: 1.3;
    }

    .hero {
        padding: 34px 0 28px;
    }

    .hero-grid {
        gap: 32px;
    }

    .eyebrow {
        font-size: 12px;
        padding: 7px 12px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 56px);
        line-height: 1.08;
        letter-spacing: -0.5px;
    }

    .hero-text {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.9;
    }

    .hero-actions {
        margin-top: 22px;
        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 52px;
        border-radius: 14px;
        font-size: 15px;
    }

    .micro-note {
        margin-top: 13px;
        font-size: 12px;
        line-height: 1.7;
    }

    .brief-card {
        padding: 20px;
        border-radius: 24px;
    }

    .chart-line {
        height: 135px;
        margin-bottom: 18px;
    }

    .chart-line svg {
        inset: 16px;
        width: calc(100% - 32px);
        height: calc(100% - 32px);
    }

    .brief-head h2 {
        font-size: 26px;
        text-align: center;
    }

    .brief-head p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 16px;
    }

    .brief-row {
        padding: 11px 12px;
        margin-bottom: 8px;
        border-radius: 13px;
    }

    .brief-row span {
        font-size: 13px;
    }

    .brief-row strong {
        font-size: 14px;
    }

    .card-disclaimer {
        font-size: 12px;
        line-height: 1.6;
    }

    .stats-section {
        margin-top: 6px;
    }

    .section {
        padding: 28px 0;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.8;
    }

    .stat-card {
        padding: 20px 14px;
    }

    .stat-card span,
    .feature-card .icon {
        font-size: 28px;
    }

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

    .stat-card p,
    .feature-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .feature-card {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .compare-card,
    .sample-card,
    .telegram-cta {
        border-radius: 22px;
    }

    .compare-card h2 {
        font-size: 27px;
        line-height: 1.35;
    }

    .compare-box {
        padding: 20px;
        border-radius: 18px;
    }

    .compare-box h3 {
        font-size: 22px;
    }

    .compare-box li {
        font-size: 14px;
    }

    .vs {
        font-size: 34px;
        line-height: 1;
    }

    .sample-content p {
        font-size: 16px;
        line-height: 1.9;
    }

    .mini-chart {
        min-height: 155px;
    }

    .telegram-cta {
        gap: 18px;
        text-align: center;
    }

    .telegram-icon {
        width: 78px;
        height: 78px;
        margin: 0 auto;
        border-radius: 22px;
        font-size: 38px;
    }

    .telegram-cta h2 {
        text-align: center;
        font-size: 28px;
        line-height: 1.2;
    }

    .telegram-cta p {
        font-size: 15px;
        line-height: 1.8;
    }

    .telegram-cta small {
        font-size: 12px;
        line-height: 1.7;
    }

    .transparency-grid div {
        min-height: 110px;
        padding: 18px 12px;
        border-radius: 18px;
    }

    .transparency-grid strong {
        font-size: 14px;
    }

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

    .faq-grid p {
        padding: 0 18px 18px;
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-grid {
        gap: 24px;
        padding: 30px 0;
        text-align: center;
    }

    .footer-brand {
        justify-items: center;
    }

    .risk-footer p {
        font-size: 13px;
        line-height: 1.9;
    }

    .footer-links {
        justify-items: center;
    }

    .mobile-sticky {
        right: 12px;
        left: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        min-height: 54px;
        border-radius: 15px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-text {
        font-size: 15px;
    }

    .header-inner > .btn.small {
        padding: 0 10px;
        font-size: 11px;
    }

    .brand strong {
        font-size: 12px;
    }

    .brand span {
        display: none;
    }

    .brief-card {
        padding: 18px;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .telegram-cta h2 {
        font-size: 25px;
    }
}

@media (max-width: 360px) {
    .header-inner > .btn.small {
        display: none;
    }

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

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .gold-orb {
        opacity: 0.18;
    }

    .hero h1 {
        animation-duration: 5.5s;
    }

    .btn-shimmer::after {
        animation-duration: 4.2s;
    }
}

/* ===== AWARD SECTION V7 ===== */

.award-section {
    padding-top: 42px;
}

.award-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
    align-items: center;
    padding: 36px;
    border: 1px solid rgba(245, 211, 108, 0.32);
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 211, 108, 0.16), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(212, 175, 55, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        #090909;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.38),
        0 0 70px rgba(212, 175, 55, 0.08);
}

.award-card::before {
    content: "";
    position: absolute;
    top: -2px;
    right: 80px;
    width: 180px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold2), transparent);
    box-shadow: 0 0 28px rgba(245, 211, 108, 0.72);
}

.award-card::after {
    content: "★";
    position: absolute;
    left: 34px;
    top: 24px;
    color: rgba(245, 211, 108, 0.16);
    font-size: 110px;
    line-height: 1;
}

.award-copy {
    position: relative;
    z-index: 2;
}

.award-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 14px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold2);
    font-weight: 900;
}

.award-eyebrow::before {
    content: "🏆";
}

.award-copy h2 {
    margin: 0;
    color: var(--gold2);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.25;
}

.award-copy p {
    margin: 18px 0 0;
    color: #eeeeee;
    font-size: 19px;
    line-height: 1.9;
}

.award-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.award-badges div {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(245, 211, 108, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.award-badges strong {
    display: block;
    direction: ltr;
    color: var(--gold2);
    font-size: 28px;
    line-height: 1.1;
}

.award-badges span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.award-copy small {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.award-media {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    padding: 10px;
    border: 1px solid rgba(245, 211, 108, 0.22);
    background: rgba(0, 0, 0, 0.28);
    transform: rotate(-2deg);
}

.award-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.42);
}

@media (prefers-reduced-motion: no-preference) {
    .award-card {
        animation: softFadeUp 0.8s ease both;
    }

    .award-media {
        animation: awardFloat 5.5s ease-in-out infinite 1s;
    }

    @keyframes awardFloat {
        0%, 100% {
            transform: rotate(-2deg) translateY(0);
        }
        50% {
            transform: rotate(-2deg) translateY(-10px);
        }
    }
}

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

    .award-media {
        transform: none;
    }
}

@media (max-width: 640px) {
    .award-section {
        padding-top: 28px;
    }

    .award-card {
        padding: 22px;
        border-radius: 24px;
        gap: 22px;
    }

    .award-copy h2 {
        font-size: 28px;
    }

    .award-copy p {
        font-size: 15px;
        line-height: 1.9;
    }

    .award-badges {
        grid-template-columns: 1fr;
    }

    .award-badges strong {
        font-size: 24px;
    }

    .award-media {
        border-radius: 22px;
        padding: 8px;
    }

    .award-media img {
        border-radius: 18px;
    }
}
