* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070b14;
    color: #ffffff;
    line-height: 1.6;
}

/* NAVBAR */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(7, 11, 20, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
    width: 92%;
    max-width: 1250px;
    min-height: 85px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-icon {
    color: #169bff;
    font-size: 34px;
    text-shadow: 0 0 18px rgba(22, 155, 255, 0.8);
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .active {
    color: #ffffff;
}

.nav-links .active::after,
.nav-links a:hover::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #169bff;
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 20px;
    box-shadow: 0 0 12px #169bff;
}

.nav-btn,
.primary-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    background: linear-gradient(135deg, #0066ff, #25c9ff);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.45);
    transition: 0.3s;
    white-space: nowrap;
}

.nav-btn:hover,
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 174, 255, 0.75);
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 150px 8% 100px;
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.25), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(37, 201, 255, 0.14), transparent 30%),
        linear-gradient(135deg, #060914, #111827 55%, #050810);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -160px;
    bottom: -160px;
    background: rgba(0, 132, 255, 0.2);
    filter: blur(90px);
    border-radius: 50%;
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 2;
}

.hero-label {
    color: #169bff;
    font-size: 28px;
    font-style: italic;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 92px);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
}

.hero h1 span {
    background: linear-gradient(135deg, #008cff, #45ddff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    max-width: 650px;
    color: #cbd5e1;
    font-size: 20px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.secondary-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.secondary-btn:hover {
    border-color: #169bff;
    transform: translateY(-3px);
}

/* HERO CARD */
.hero-card {
    background: rgba(9, 16, 31, 0.78);
    border: 1px solid rgba(37, 201, 255, 0.28);
    border-radius: 28px;
    padding: 35px;
    min-height: 420px;
    box-shadow:
        0 0 50px rgba(0, 132, 255, 0.22),
        inset 0 0 30px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
}

.screen-top {
    display: flex;
    gap: 8px;
    margin-bottom: 50px;
}

.screen-top span {
    width: 12px;
    height: 12px;
    background: #169bff;
    border-radius: 50%;
    box-shadow: 0 0 12px #169bff;
}

.hero-card h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-card p {
    color: #cbd5e1;
    margin-bottom: 35px;
}

.stat-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-box div {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.stat-box h3 {
    font-size: 26px;
    color: #ffffff;
}

.stat-box p {
    margin: 0;
    font-size: 13px;
}

/* FEATURES */
.features {
    width: 90%;
    max-width: 1100px;
    margin: -70px auto 80px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    padding: 28px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card.active-card {
    background: #0b1224;
    color: #ffffff;
    border: 1px solid rgba(37, 201, 255, 0.35);
    box-shadow: 0 0 35px rgba(0, 132, 255, 0.4);
}

.icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: inherit;
    opacity: 0.75;
}

/* GENERAL SECTION */
.section {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: #169bff;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

.section-intro {
    max-width: 900px;
    margin: -25px auto 45px;
    text-align: center;
    color: #cbd5e1;
    font-size: 18px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
}

.about-text,
.about-panel,
.scam-item,
.safety-item {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px;
    backdrop-filter: blur(12px);
}

.about-text h3,
.about-panel h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-text p {
    color: #cbd5e1;
    margin-bottom: 18px;
}

.about-panel ul {
    list-style: none;
}

.about-panel li {
    padding: 13px 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-panel li::before {
    content: "✓";
    color: #25c9ff;
    margin-right: 10px;
}

/* DARK SECTION */
.dark-section {
    max-width: 100%;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    background:
        radial-gradient(circle at center, rgba(0, 102, 255, 0.18), transparent 35%),
        #050810;
}

/* MARKET / CASE STUDY CARDS */
.market-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.market-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(37, 201, 255, 0.18);
    border-radius: 24px;
    padding: 25px;
    transition: 0.3s;
    backdrop-filter: blur(14px);
}

.market-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 201, 255, 0.55);
    box-shadow: 0 0 35px rgba(0, 132, 255, 0.2);
}

.market-img {
    height: 180px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(37, 201, 255, 0.08)),
        #0b1224;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    margin-bottom: 20px;
    font-weight: 700;
    overflow: hidden;
}

.market-card h3 {
    font-size: 24px;
    margin: 15px 0 10px;
}

.market-card p {
    color: #cbd5e1;
    margin-bottom: 18px;
}

.market-card ul {
    padding-left: 20px;
}

.market-card li {
    color: #cbd5e1;
    margin-bottom: 8px;
}

.risk {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.risk.historical {
    background: rgba(37, 99, 235, 0.16);
    color: #93c5fd;
    border: 1px solid rgba(37, 99, 235, 0.4);
}

.risk.seized {
    background: rgba(239, 68, 68, 0.14);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.risk.exit {
    background: rgba(245, 158, 11, 0.14);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

/* MOCK SCREENSHOT DESIGNS */
.mock-browser {
    width: 82%;
    height: 75%;
    border-radius: 14px;
    background: rgba(3, 7, 18, 0.78);
    border: 1px solid rgba(37, 201, 255, 0.25);
    padding: 16px;
    box-shadow: 0 0 28px rgba(0, 132, 255, 0.18);
}

.mock-top {
    width: 100%;
    height: 18px;
    border-radius: 20px;
    background: linear-gradient(90deg, #0f172a, #1d4ed8, #38bdf8);
    margin-bottom: 16px;
}

.mock-line {
    height: 9px;
    width: 60%;
    border-radius: 20px;
    background: rgba(148, 163, 184, 0.4);
    margin-bottom: 10px;
}

.mock-line.wide {
    width: 85%;
}

.mock-line.short {
    width: 40%;
}

.mock-boxes {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.mock-boxes span {
    display: block;
    height: 45px;
    flex: 1;
    border-radius: 10px;
    background: rgba(37, 201, 255, 0.16);
    border: 1px solid rgba(37, 201, 255, 0.2);
}

.mock-table {
    height: 35px;
    width: 100%;
    border-radius: 10px;
    background: rgba(37, 201, 255, 0.15);
    margin-bottom: 10px;
}

.mock-table.small {
    width: 72%;
}

.mock-warning {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 22px rgba(239, 68, 68, 0.2);
}

.mock-chat {
    width: 70%;
    height: 25px;
    border-radius: 20px;
    background: rgba(37, 201, 255, 0.2);
    margin-bottom: 12px;
}

.mock-chat.right {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.18);
}

.mock-id {
    width: 72px;
    height: 52px;
    border-radius: 10px;
    background: rgba(37, 201, 255, 0.18);
    border: 1px solid rgba(37, 201, 255, 0.25);
    margin-bottom: 12px;
}

.mock-lock {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(37, 201, 255, 0.16);
    border: 1px solid rgba(37, 201, 255, 0.25);
    margin: 0 auto 15px;
}

.mock-exit {
    height: 58px;
    width: 80%;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.28);
    margin: 0 auto 15px;
}

/* RISK PROFILE SECTION */
.risk-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(37, 201, 255, 0.18);
    border-radius: 22px;
    padding: 30px;
    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 201, 255, 0.55);
    box-shadow: 0 0 35px rgba(0, 132, 255, 0.18);
}

.profile-card span {
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    color: #169bff;
    margin-bottom: 10px;
}

.profile-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.profile-card p {
    color: #cbd5e1;
}

/* SCAM SECTION */
.scam-list {
    max-width: 950px;
    margin: auto;
    display: grid;
    gap: 20px;
}

.scam-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.scam-item span {
    font-size: 35px;
    color: #169bff;
    font-weight: 900;
}

.scam-item h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.scam-item p {
    color: #cbd5e1;
}

/* SAFETY */
.safety-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.safety-item {
    color: #e2e8f0;
    font-weight: 600;
}

.safety-item::before {
    content: "🛡️ ";
}

/* REPORT */
.report {
    text-align: center;
}

.report-content {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.22), rgba(37, 201, 255, 0.08));
    border: 1px solid rgba(37, 201, 255, 0.25);
    border-radius: 30px;
    padding: 60px 30px;
    box-shadow: 0 0 45px rgba(0, 132, 255, 0.22);
}

.report-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.report-content p {
    color: #cbd5e1;
    max-width: 850px;
    margin: 0 auto 35px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    background: #030712;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-btn {
        padding: 12px 22px;
    }
}

@media (max-width: 950px) {
    .navbar {
        height: auto;
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 230px;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .about-content,
    .market-grid,
    .risk-profile-grid,
    .safety-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-btn {
        display: none;
    }

    .hero {
        padding-top: 250px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-label {
        font-size: 22px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-card h2 {
        font-size: 32px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .stat-box {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .report-content h2 {
        font-size: 34px;
    }

    .scam-item {
        flex-direction: column;
        gap: 10px;
    }
}









.market-img {
    height: 170px;
    border-radius: 20px;
    background: linear-gradient(145deg, #0e1428, #01050f);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 201, 255, 0.2);
    overflow: hidden;
    position: relative;
}

/* For images inside market-img */
.market-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* This ensures the image covers the area without distortion */
    object-position: center;
    transition: transform 0.3s ease;
}

/* Optional: zoom effect on hover */
.market-card:hover .market-img img {
    transform: scale(1.05);
}

/* If you want the image to be contained without cropping */
.market-img.img-contain img {
    object-fit: contain;
    background: #0a0f1c;
}

/* For when you want to keep both mock browser and image */
.market-img.has-both {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.market-img.has-both img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.market-img.has-both .mock-browser {
    flex: 1;
    margin: 0;
}