/* =========================================================
   TOKENLAUNCH — PREMIUM WEB3 HOMEPAGE
   ========================================================= */

:root {
    --bg: #050711;
    --bg-soft: #080b16;
    --surface: #0b0f1d;
    --surface-2: #101525;
    --border: rgba(148, 163, 184, 0.13);

    --text: #f8fafc;
    --text-soft: #cbd5e1;
    --muted: #8490a6;

    --primary: #5b8cff;
    --primary-2: #8b5cf6;

    --success: #35d399;

    --radius: 18px;
    --container: 1180px;

    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.38);
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at 75% 5%,
            rgba(91, 140, 255, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 35%,
            rgba(139, 92, 246, 0.07),
            transparent 25%
        ),
        var(--bg);

    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: rgba(91, 140, 255, 0.35);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 7, 17, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav-wrapper {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.logo-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-2)
        );

    color: white;

    font-size: 16px;
    font-weight: 800;

    box-shadow:
        0 8px 28px rgba(91, 140, 255, 0.25);
}

.logo-mark.small {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 13px;
}

.logo-accent {
    color: #7ea7ff;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.2s ease;
}

.desktop-nav a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wallet-btn {
    border: 1px solid rgba(126, 167, 255, 0.28);

    background:
        rgba(91, 140, 255, 0.10);

    color: #e8efff;

    padding: 10px 17px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.wallet-btn:hover {
    transform: translateY(-1px);

    background:
        rgba(91, 140, 255, 0.17);

    border-color:
        rgba(126, 167, 255, 0.48);
}

.wallet-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 12px rgba(53, 211, 153, 0.65);
}

.mobile-menu-btn {
    display: none;

    border: 1px solid var(--border);

    background: var(--surface);

    color: white;

    width: 42px;
    height: 42px;

    border-radius: 11px;

    cursor: pointer;

    font-size: 20px;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.42;

    background-image:
        linear-gradient(
            rgba(148, 163, 184, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.045) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0, 0, 0, 0.55) 55%,
            transparent 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -280px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(91, 140, 255, 0.14),
            transparent 68%
        );

    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.9fr);

    gap: 70px;

    align-items: center;

    padding-top: 75px;
    padding-bottom: 75px;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #8faeff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.7px;

    margin-bottom: 22px;
}

.status-pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 14px rgba(53, 211, 153, 0.7);
}

.hero h1 {
    font-size: clamp(58px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -5px;

    font-weight: 800;

    margin-bottom: 28px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #7da5ff,
            #9b7cff 55%,
            #b9a5ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    max-width: 590px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.primary-btn {
    color: white;

    background:
        linear-gradient(
            135deg,
            #4d7fff,
            #7654df
        );

    box-shadow:
        0 12px 32px rgba(91, 92, 230, 0.23);
}

.primary-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 38px rgba(91, 92, 230, 0.34);
}

.primary-btn span {
    font-size: 18px;
}

.secondary-btn {
    color: #dce5f8;

    background:
        rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);
}

.secondary-btn:hover {
    transform: translateY(-2px);

    border-color:
        rgba(126, 167, 255, 0.35);

    background:
        rgba(126, 167, 255, 0.06);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;
}

.hero-trust div {
    color: #748097;

    font-size: 12px;

    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust span {
    color: var(--success);
}


/* =========================================================
   HERO PRODUCT PREVIEW
   ========================================================= */

.hero-preview {
    position: relative;

    display: flex;
    justify-content: center;
}

.preview-glow {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(91, 140, 255, 0.17),
            transparent 68%
        );

    filter: blur(8px);
}

.dashboard-card {
    position: relative;
    z-index: 2;

    width: min(100%, 465px);

    padding: 24px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 23, 40, 0.96),
            rgba(9, 13, 25, 0.97)
        );

    border: 1px solid rgba(148, 163, 184, 0.14);

    box-shadow:
        var(--shadow),
        0 0 80px rgba(91, 140, 255, 0.09);

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);

    transition:
        transform 0.5s ease;
}

.dashboard-card:hover {
    transform:
        perspective(1200px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-4px);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: 21px;

    border-bottom: 1px solid var(--border);
}

.mini-label {
    display: block;

    color: #69758b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.6px;

    margin-bottom: 5px;
}

.dashboard-top h3 {
    font-size: 19px;
    letter-spacing: -0.4px;
}

.secure-badge {
    color: #62dda8;

    background:
        rgba(53, 211, 153, 0.07);

    border:
        1px solid rgba(53, 211, 153, 0.16);

    padding: 6px 9px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 600;
}

.form-preview {
    padding-top: 22px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;

    color: #8c97aa;

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 7px;
}

.fake-input {
    min-height: 44px;

    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 9px;

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(148, 163, 184, 0.12);

    color: #dce4f4;

    font-size: 12px;
}

.input-arrow {
    margin-left: auto;
    color: #64748b;
}

.network-icon {
    color: #f4c95d;
}

.two-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.preview-btn {
    width: 100%;

    min-height: 46px;

    border: 0;

    border-radius: 10px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #4d7fff,
            #7654df
        );

    font-weight: 700;
    font-size: 12px;

    cursor: pointer;
}

.preview-btn span {
    margin-left: 8px;
    font-size: 16px;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.012);
}

.trust-container {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.trust-container > span {
    color: #dbe4f3;

    font-size: 14px;
    font-weight: 600;
}

.trust-items {
    display: flex;
    gap: 42px;
}

.trust-items div {
    display: flex;
    flex-direction: column;
}

.trust-items strong {
    color: #dce5f4;

    font-size: 12px;
}

.trust-items small {
    color: #69758b;

    font-size: 10px;

    margin-top: 2px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    position: relative;

    padding: 115px 0;
}

.section-dark {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.012),
            rgba(255, 255, 255, 0.022)
        );

    border-top: 1px solid rgba(148, 163, 184, 0.04);
    border-bottom: 1px solid rgba(148, 163, 184, 0.04);
}

.section-heading {
    max-width: 670px;

    margin-bottom: 52px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    font-size: clamp(36px, 5vw, 54px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    margin-bottom: 17px;
}

.section-heading p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   NETWORKS
   ========================================================= */

.network-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 14px;
}

.network-card {
    min-height: 210px;

    padding: 22px;

    border-radius: var(--radius);

    background:
        rgba(255, 255, 255, 0.018);

    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.network-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(126, 167, 255, 0.28);

    background:
        rgba(126, 167, 255, 0.035);
}

.active-network {
    border-color:
        rgba(126, 167, 255, 0.23);

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.035);
}

.network-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 32px;
}

.network-logo {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.045);

    border: 1px solid var(--border);

    font-size: 17px;
}

.bnb-logo {
    color: #f3c94d;
}

.eth-logo {
    color: #9ea8ff;
}

.polygon-logo {
    color: #9a78ff;
}

.base-logo {
    color: #79a5ff;
}

.arb-logo {
    color: #6ca9ff;
}

.available-badge,
.soon-badge {
    padding: 5px 7px;

    border-radius: 6px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.available-badge {
    color: #57dca3;

    background:
        rgba(53, 211, 153, 0.07);

    border:
        1px solid rgba(53, 211, 153, 0.13);
}

.soon-badge {
    color: #7d879a;

    background:
        rgba(148, 163, 184, 0.06);

    border:
        1px solid rgba(148, 163, 184, 0.10);
}

.network-card h3 {
    font-size: 14px;

    margin-bottom: 8px;
}

.network-card p {
    color: #6f7b91;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.step {
    position: relative;

    padding: 30px;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.018);
}

.step-number {
    color: #759dff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 65px;
}

.step-line {
    position: absolute;

    top: 36px;
    left: 75px;
    right: 30px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(91, 140, 255, 0.35),
            transparent
        );
}

.step h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.step p {
    color: #727e94;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   FEATURES
   ========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.feature-card {
    padding: 27px;

    min-height: 210px;

    border-radius: var(--radius);

    background:
        rgba(255, 255, 255, 0.018);

    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(126, 167, 255, 0.25);
}

.feature-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: #8bacff;

    background:
        rgba(91, 140, 255, 0.08);

    border:
        1px solid rgba(91, 140, 255, 0.12);

    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 16px;

    margin-bottom: 10px;
}

.feature-card p {
    color: #707c91;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   SECURITY
   ========================================================= */

.security-section {
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(91, 140, 255, 0.07),
            transparent 32%
        ),
        #070a13;
}

.security-wrapper {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.security-content h2 {
    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.05;

    letter-spacing: -2.8px;

    margin-bottom: 20px;
}

.security-content > p {
    color: var(--muted);

    max-width: 470px;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 28px;
}

.security-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;
}

.security-card {
    display: flex;

    gap: 15px;

    padding: 22px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.018);

    border: 1px solid var(--border);
}

.security-check {
    flex: 0 0 auto;

    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: var(--success);

    background:
        rgba(53, 211, 153, 0.07);

    font-size: 12px;
}

.security-card h3 {
    font-size: 13px;

    margin-bottom: 5px;
}

.security-card p {
    color: #6e7a90;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   DASHBOARD PREVIEW
   ========================================================= */

.dashboard-preview {
    display: grid;

    grid-template-columns: 205px 1fr;

    min-height: 480px;

    overflow: hidden;

    border-radius: 20px;

    background:
        #080c16;

    border: 1px solid var(--border);

    box-shadow:
        var(--shadow);
}

.preview-sidebar {
    padding: 22px 15px;

    background:
        rgba(255, 255, 255, 0.018);

    border-right: 1px solid var(--border);
}

.side-logo {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 38px;

    padding: 0 7px;
}

.side-menu {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.side-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px;

    border-radius: 8px;

    color: #68748a;

    font-size: 11px;

    transition: 0.2s ease;
}

.side-item.active,
.side-item:hover {
    color: #dbe5f6;

    background:
        rgba(91, 140, 255, 0.08);
}

.preview-main {
    padding: 30px;
}

.preview-main-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 25px;
}

.preview-main-top h3 {
    font-size: 19px;
}

.small-create-btn {
    border: 1px solid rgba(91, 140, 255, 0.22);

    background:
        rgba(91, 140, 255, 0.09);

    color: #a8c0ff;

    border-radius: 8px;

    padding: 9px 12px;

    font-size: 10px;
    font-weight: 700;
}

.stats-row {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-bottom: 18px;
}

.stat-card {
    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.015);
}

.stat-card span {
    display: block;

    color: #6d798e;

    font-size: 9px;

    margin-bottom: 10px;
}

.stat-card strong {
    font-size: 21px;
}

.token-table {
    min-height: 280px;

    border: 1px solid var(--border);

    border-radius: 13px;

    overflow: hidden;
}

.table-head {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    padding: 13px 18px;

    color: #677389;

    font-size: 9px;

    border-bottom: 1px solid var(--border);
}

.empty-state {
    min-height: 230px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.empty-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #83a7ff;

    background:
        rgba(91, 140, 255, 0.07);

    margin-bottom: 12px;
}

.empty-state h4 {
    font-size: 13px;

    margin-bottom: 5px;
}

.empty-state p {
    color: #667287;

    font-size: 10px;

    margin-bottom: 15px;
}

.primary-btn.small {
    min-height: 38px;

    padding: 0 13px;

    font-size: 10px;
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    align-items: stretch;
}

.pricing-card {
    position: relative;

    padding: 29px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.018);

    border: 1px solid var(--border);
}

.pricing-card.featured {
    border-color:
        rgba(91, 140, 255, 0.32);

    background:
        linear-gradient(
            145deg,
            rgba(91, 140, 255, 0.065),
            rgba(139, 92, 246, 0.035)
        );

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.22);
}

.popular {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 5px 8px;

    border-radius: 6px;

    background:
        rgba(91, 140, 255, 0.10);

    color: #91b0ff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.7px;
}

.plan-label {
    color: #8190a7;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.pricing-top h3 {
    font-size: 25px;

    margin: 9px 0 6px;
}

.pricing-top p {
    color: #707c91;

    font-size: 11px;

    line-height: 1.7;

    min-height: 40px;
}

.price {
    padding: 27px 0;

    border-bottom: 1px solid var(--border);

    color: #b7c3d7;

    font-size: 13px;
    font-weight: 600;
}

.pricing-card ul {
    list-style: none;

    padding: 23px 0;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.pricing-card li {
    color: #8a95a8;

    font-size: 11px;
}

.secondary-btn.full,
.primary-btn.full {
    width: 100%;
}


/* =========================================================
   DOCUMENTATION
   ========================================================= */

.docs-wrapper {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 75px;

    align-items: center;

    padding: 55px;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(91, 140, 255, 0.08),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.018);

    border: 1px solid var(--border);
}

.docs-content h2 {
    font-size: clamp(38px, 5vw, 52px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    margin-bottom: 18px;
}

.docs-content p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;

    max-width: 430px;
}

.docs-links {
    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--border);
}

.doc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 4px;

    border-bottom: 1px solid var(--border);

    transition: 0.2s ease;
}

.doc-link:hover {
    padding-left: 8px;
}

.doc-link strong {
    display: block;

    font-size: 12px;

    margin-bottom: 3px;
}

.doc-link span {
    color: #69758a;

    font-size: 9px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-container {
    max-width: 850px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    border: 0;

    background: transparent;

    color: #dfe7f5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    text-align: left;

    padding: 21px 2px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 600;
}

.faq-icon {
    color: #718099;

    font-size: 20px;
    font-weight: 400;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    color: #8eacff;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    color: #707c91;

    font-size: 12px;

    line-height: 1.8;

    transition:
        max-height 0.3s ease,
        padding-bottom 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;

    padding-bottom: 21px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 125px 0;

    border-top: 1px solid var(--border);

    text-align: center;
}

.cta-glow {
    position: absolute;

    width: 700px;
    height: 350px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            ellipse,
            rgba(91, 140, 255, 0.13),
            transparent 68%
        );

    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(42px, 6vw, 65px);

    letter-spacing: -3px;

    line-height: 1.05;

    margin-bottom: 18px;
}

.cta-content p {
    color: var(--muted);

    max-width: 530px;

    margin: 0 auto 28px;

    font-size: 14px;
}

.cta-content .hero-buttons {
    justify-content: center;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 65px 0 25px;

    background:
        #04060d;

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 280px;

    color: #657187;

    font-size: 11px;

    line-height: 1.8;

    margin-top: 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    color: #dbe4f3;

    font-size: 11px;

    margin-bottom: 5px;
}

.footer-column a {
    color: #657187;

    font-size: 10px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #a7bfff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: #4e596c;

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns:
            1fr 0.9fr;

        gap: 35px;
    }

    .hero h1 {
        font-size: 65px;
    }

    .network-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .security-wrapper {
        gap: 40px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .nav-wrapper {
        min-height: 68px;
    }

    .desktop-nav,
    .nav-actions > .wallet-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        padding: 10px 14px 18px;

        border-top: 1px solid var(--border);

        background:
            rgba(5, 7, 17, 0.97);
    }

    /* FIXED: was ".mobile-nav.open" — the JS toggles the "active" class,
       not "open", so this rule never matched and the menu stayed hidden. */
    .mobile-nav.active {
        display: flex;

        flex-direction: column;

        gap: 3px;
    }

    .mobile-nav a {
        padding: 12px 8px;

        color: #9aa6ba;

        font-size: 13px;
    }

    .mobile-wallet {
        display: flex !important;

        justify-content: center;

        margin-top: 7px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 75px;
        padding-bottom: 75px;

        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(53px, 15vw, 70px);

        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-trust {
        gap: 10px 15px;
    }

    .dashboard-card {
        transform: none;
    }

    .dashboard-card:hover {
        transform: translateY(-3px);
    }

    .trust-container {
        padding: 25px 0;

        flex-direction: column;

        align-items: flex-start;
    }

    .trust-items {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 15px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        letter-spacing: -1.8px;
    }

    .network-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step-line {
        display: none;
    }

    .step-number {
        margin-bottom: 35px;
    }

    .feature-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .security-wrapper {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-main {
        padding: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        order: -1;
    }

    .docs-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 30px;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
    }

    .network-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .two-fields {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .trust-items {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .table-head {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

    .docs-wrapper {
        padding: 23px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}

/* =========================================================
   NOTE: The block below ("GLOBAL HEADER FIX") that used to be
   here targeted a ".main-nav" class that does not exist anywhere
   in the HTML (the real nav is ".mobile-nav" / "#mobileNav").
   It was dead CSS that never applied and has been removed to
   avoid confusion. All header/mobile-menu styling now lives in
   the sections above.
   ========================================================= */