/* =========================================================
   CRYPTOTOKEN
   GLOBAL STYLESHEET
   ========================================================= */

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-height: 100vh;
    background: #080a09;
    color: #ffffff;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: #7f161f;
    color: #ffffff;
}


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    --black: #080a09;
    --black-soft: #0d100f;

    --dark-gray: #141817;
    --gray: #1b201e;
    --gray-light: #252b28;

    --dark-red: #5d1018;
    --red: #8f1d28;
    --red-bright: #b62935;

    --dark-green: #0d3021;
    --green: #17663f;
    --green-bright: #2aa96b;

    --white: #ffffff;
    --white-soft: #e7e9e8;
    --gray-text: #969d99;
    --gray-text-light: #b8bfbb;

    --border: rgba(255, 255, 255, 0.08);
    --border-red: rgba(182, 41, 53, 0.35);
    --border-green: rgba(42, 169, 107, 0.3);

    --container: 1240px;

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);

    --red-glow:
        0 0 45px rgba(143, 29, 40, 0.22);

    --green-glow:
        0 0 45px rgba(42, 169, 107, 0.15);

    --transition:
        0.25s ease;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background:
        rgba(8, 10, 9, 0.92);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            var(--red-bright),
            var(--dark-red)
        );

    color: #ffffff;

    font-size: 20px;
    font-weight: 900;

    box-shadow:
        0 8px 25px rgba(143, 29, 40, 0.3);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #b62935;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
}

.main-navigation a {
    position: relative;

    color: var(--gray-text-light);

    font-size: 14px;
    font-weight: 600;

    transition:
        color var(--transition);
}

.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--red-bright);

    transition:
        width var(--transition);
}

.main-navigation a:hover {
    color: #ffffff;
}

.main-navigation a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        0 20px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #a5222f,
            #71131c
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 8px 25px rgba(143, 29, 40, 0.24);
}

.btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            #bb2c39,
            #841721
        );

    box-shadow:
        0 12px 35px rgba(143, 29, 40, 0.35);
}

.btn-secondary {
    color: var(--white-soft);

    background: var(--dark-gray);

    border:
        1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--gray);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline {
    color: var(--white-soft);

    background: transparent;

    border:
        1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);

    border-color:
        rgba(255, 255, 255, 0.3);
}

.btn-large {
    min-height: 54px;
    padding: 0 25px;

    font-size: 15px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    width: 44px;
    height: 44px;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    background: var(--dark-gray);

    border:
        1px solid var(--border);

    border-radius: 9px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;

    background: #ffffff;

    border-radius: 10px;

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {
    display: none;

    padding:
        15px 20px 22px;

    background:
        rgba(8, 10, 9, 0.98);

    border-top:
        1px solid var(--border);
}

.mobile-navigation a {
    display: block;

    padding: 12px 0;

    color: var(--gray-text-light);

    font-size: 15px;
    font-weight: 600;
}

.mobile-navigation-actions {
    display: flex;
    gap: 10px;

    padding-top: 12px;
}

.mobile-navigation-actions .btn {
    flex: 1;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(112, 20, 30, 0.17),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 45%,
            rgba(15, 89, 54, 0.12),
            transparent 32%
        ),
        var(--black);
}

.hero-background {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    opacity: 0.5;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 70px;

    padding:
        100px 0;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    max-width: 650px;
}

.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding:
        7px 12px;

    margin-bottom: 24px;

    background:
        rgba(23, 102, 63, 0.14);

    border:
        1px solid var(--border-green);

    border-radius: 100px;

    color: #a8d9be;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--green-bright);

    box-shadow:
        0 0 10px rgba(42, 169, 107, 0.8);
}


.hero h1 {
    max-width: 700px;

    margin-bottom: 24px;

    color: #ffffff;

    font-size:
        clamp(48px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 900;
}

.hero h1 span {
    display: block;

    color: var(--red-bright);

    text-shadow:
        0 0 45px rgba(182, 41, 53, 0.2);
}

.hero-description {
    max-width: 600px;

    margin-bottom: 32px;

    color: var(--gray-text);

    font-size: 17px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 45px;
}


/* =========================================================
   HERO TRUST
   ========================================================= */

.hero-trust {
    display: flex;
    align-items: center;

    gap: 18px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: #ffffff;

    font-size: 14px;
}

.trust-item span {
    color: #717873;

    font-size: 11px;
}

.trust-divider {
    width: 1px;
    height: 30px;

    background:
        rgba(255, 255, 255, 0.1);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card {
    position: relative;

    width: min(100%, 470px);

    padding: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(29, 34, 31, 0.95),
            rgba(13, 16, 15, 0.97)
        );

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(143, 29, 40, 0.08);

    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(143, 29, 40, 0.12);

    filter: blur(40px);

    pointer-events: none;
}


/* =========================================================
   HERO CARD HEADER
   ========================================================= */

.hero-card-header {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 22px;

    border-bottom:
        1px solid var(--border);
}

.hero-card-header > div:first-child {
    display: flex;
    flex-direction: column;
}

.small-label {
    margin-bottom: 3px;

    color: #727a75;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.hero-card-header strong {
    color: #ffffff;

    font-size: 14px;
}

.network-status {
    display: flex;
    align-items: center;

    gap: 7px;

    padding:
        6px 9px;

    background:
        rgba(23, 102, 63, 0.15);

    border:
        1px solid var(--border-green);

    border-radius: 7px;

    color: #8dc8a9;

    font-size: 10px;
    font-weight: 700;
}

.network-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--green-bright);
}


/* =========================================================
   TOKEN PREVIEW
   ========================================================= */

.token-preview {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;

    gap: 16px;

    padding:
        32px 0;
}

.token-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #a5222f,
            #4f0d13
        );

    color: #ffffff;

    font-size: 25px;
    font-weight: 900;

    box-shadow:
        0 12px 35px rgba(143, 29, 40, 0.3);
}

.token-information {
    display: flex;
    flex-direction: column;
}

.token-information strong {
    color: #ffffff;

    font-size: 18px;
}

.token-information span {
    color: #767d79;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   PREVIEW DATA
   ========================================================= */

.preview-data {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    padding:
        18px;

    background:
        rgba(0, 0, 0, 0.18);

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 12px;
}

.preview-data div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.preview-data span {
    color: #6e7671;

    font-size: 9px;
    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.preview-data strong {
    color: #dce0de;

    font-size: 12px;
}

.green-text {
    color:
        var(--green-bright) !important;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.card-progress {
    position: relative;
    z-index: 1;

    margin-top: 24px;
}

.progress-label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;

    color: #777e7a;

    font-size: 10px;
}

.progress-label strong {
    color: #a9b0ac;
}

.progress-bar {
    width: 100%;
    height: 5px;

    overflow: hidden;

    border-radius: 20px;

    background:
        #222724;
}

.progress-value {
    width: 100%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #75141e,
            #b62935
        );

    box-shadow:
        0 0 15px rgba(182, 41, 53, 0.35);
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        12px 15px;

    background:
        rgba(19, 23, 21, 0.94);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(12px);
}

.floating-card strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
}

.floating-card small {
    display: block;

    color: #747b77;

    font-size: 9px;
}

.floating-icon {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #ffffff;

    background:
        rgba(143, 29, 40, 0.25);

    font-size: 11px;
}

.floating-icon.green {
    background:
        rgba(42, 169, 107, 0.17);

    color:
        var(--green-bright);
}

.floating-card-top {
    top: 65px;
    right: -15px;
}

.floating-card-bottom {
    bottom: 70px;
    left: -25px;
}


/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
    position: relative;

    padding:
        115px 0;

    background:
        var(--black);
}

.section-dark {
    background:
        #0c0f0e;

    border-top:
        1px solid rgba(255, 255, 255, 0.025);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.025);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-label {
    display: block;

    margin-bottom: 13px;

    color:
        var(--red-bright);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 17px;

    color: #ffffff;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.section-heading h2 span {
    color: var(--red-bright);
}

.section-heading p {
    color: var(--gray-text);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.feature-card {
    position: relative;

    min-height: 300px;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            #131715,
            #0e1110
        );

    border:
        1px solid var(--border);

    border-radius: 15px;

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(182, 41, 53, 0.5),
            transparent
        );

    opacity: 0;

    transition:
        opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color:
        var(--border-red);

    box-shadow:
        var(--red-glow);
}

.feature-card:hover::before {
    opacity: 1;
}


/* =========================================================
   FEATURE ICON
   ========================================================= */

.feature-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 13px;

    font-size: 18px;
    font-weight: 900;
}

.feature-icon.red {
    color: #e47a83;

    background:
        rgba(143, 29, 40, 0.17);

    border:
        1px solid rgba(143, 29, 40, 0.3);
}

.feature-icon.green {
    color: #65c491;

    background:
        rgba(23, 102, 63, 0.17);

    border:
        1px solid rgba(42, 169, 107, 0.25);
}

.feature-icon.white {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 18px;
}

.feature-card p {
    color: #7f8782;

    font-size: 13px;

    line-height: 1.75;
}

.feature-number {
    position: absolute;

    right: 22px;
    bottom: 18px;

    color:
        rgba(255, 255, 255, 0.035);

    font-size: 50px;
    font-weight: 900;

    line-height: 1;
}


/* =========================================================
   STEPS
   ========================================================= */

.steps {
    max-width: 900px;

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}

.step {
    display: flex;

    gap: 20px;

    padding: 25px;

    background:
        #121614;

    border:
        1px solid var(--border);

    border-radius: 14px;

    transition:
        border-color var(--transition),
        transform var(--transition);
}

.step:hover {
    transform: translateY(-3px);

    border-color:
        rgba(182, 41, 53, 0.28);
}

.step-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background:
        rgba(143, 29, 40, 0.16);

    color:
        #d7656f;

    font-size: 11px;
    font-weight: 900;
}

.step-content h3 {
    margin-bottom: 6px;

    color: #ffffff;

    font-size: 16px;
}

.step-content p {
    color: #7f8782;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   SECURITY SECTION
   ========================================================= */

.security-container {
    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 100px;

    align-items: center;
}

.security-content {
    max-width: 650px;
}

.security-content > p {
    margin-bottom: 35px;

    color: var(--gray-text);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   SECURITY LIST
   ========================================================= */

.security-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.security-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;
}

.security-item > span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background:
        rgba(23, 102, 63, 0.16);

    border:
        1px solid var(--border-green);

    color:
        var(--green-bright);

    font-size: 12px;
    font-weight: 900;
}

.security-item strong {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: 14px;
}

.security-item small {
    display: block;

    color: #777f7a;

    font-size: 12px;
}


/* =========================================================
   SECURITY PANEL
   ========================================================= */

.security-panel {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 40px;

    background:
        radial-gradient(
            circle at center,
            rgba(23, 102, 63, 0.1),
            transparent 55%
        ),
        #101412;

    border:
        1px solid var(--border);

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        var(--shadow);
}

.security-panel-glow {
    position: absolute;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    background:
        rgba(42, 169, 107, 0.08);

    filter: blur(60px);

    pointer-events: none;
}

.security-shield {
    position: relative;

    width: 88px;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 27px;

    background:
        rgba(23, 102, 63, 0.2);

    border:
        1px solid rgba(42, 169, 107, 0.35);

    color:
        var(--green-bright);

    font-size: 30px;
    font-weight: 900;

    box-shadow:
        0 0 45px rgba(42, 169, 107, 0.12);
}

.security-panel > strong {
    position: relative;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 18px;
}

.security-panel > span {
    position: relative;

    color: #6f7772;

    font-size: 11px;
}

.security-lines {
    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-top: 30px;
}

.security-lines div {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 9px 11px;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #7d8580;

    font-size: 10px;
}

.security-lines span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--green-bright);

    box-shadow:
        0 0 7px rgba(42, 169, 107, 0.6);
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding:
        30px 0 100px;

    background:
        var(--black);
}

.cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding:
        55px;

    background:
        linear-gradient(
            120deg,
            #171a18,
            #111412
        );

    border:
        1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;
}

.cta-box::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -150px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(143, 29, 40, 0.1);

    filter: blur(70px);

    pointer-events: none;
}

.cta-box > div {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.cta-box p {
    color: #7f8782;

    font-size: 14px;
}

.cta-box > .btn {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background:
        #070908;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr;

    gap: 80px;

    padding:
        70px 0 55px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand p {
    color: #6f7772;

    font-size: 12px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-column a {
    color: #6f7772;

    font-size: 12px;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    color: #555c58;

    font-size: 10px;
}





/* =========================================================
   AUTHENTICATION PAGES
   ========================================================= */

.auth-page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(112, 20, 30, 0.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(15, 89, 54, 0.08),
            transparent 35%
        ),
        var(--black);
}


.auth-page .site-header {
    flex-shrink: 0;
}


.auth-main {
    flex: 1;

    display: flex;
    align-items: center;

    padding:
        80px 0;
}


.auth-wrapper {
    width: min(
        calc(100% - 40px),
        1050px
    );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        1fr
        460px;

    align-items: center;

    gap: 80px;
}


/* =========================================================
   AUTH INTRO
   ========================================================= */

.auth-intro {
    max-width: 560px;
}


.auth-intro h1 {
    margin-bottom: 22px;

    color: #ffffff;

    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 1.02;

    letter-spacing: -3px;
}


.auth-intro h1 span {
    display: block;

    color:
        var(--red-bright);
}


.auth-intro > p {
    max-width: 520px;

    margin-bottom: 35px;

    color:
        var(--gray-text);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   AUTH BENEFITS
   ========================================================= */

.auth-benefits {
    display: flex;
    flex-direction: column;

    gap: 16px;
}


.auth-benefit {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}


.auth-benefit > span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background:
        rgba(23, 102, 63, 0.16);

    border:
        1px solid var(--border-green);

    color:
        var(--green-bright);

    font-size: 11px;
    font-weight: 900;
}


.auth-benefit strong {
    display: block;

    margin-bottom: 1px;

    color: #ffffff;

    font-size: 13px;
}


.auth-benefit small {
    color:
        #727a75;

    font-size: 11px;
}


/* =========================================================
   AUTH CARD
   ========================================================= */

.auth-card {
    width: 100%;

    padding: 34px;

    background:
        linear-gradient(
            145deg,
            #151917,
            #0e1110
        );

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);
}


.auth-card-header {
    margin-bottom: 28px;
}


.auth-card-header .section-label {
    margin-bottom: 8px;
}


.auth-card-header h2 {
    margin-bottom: 5px;

    color: #ffffff;

    font-size: 27px;

    letter-spacing: -1px;
}


.auth-card-header p {
    color:
        #707873;

    font-size: 12px;
}


/* =========================================================
   AUTH FORM
   ========================================================= */

.auth-form {
    display: flex;
    flex-direction: column;

    gap: 19px;
}


.form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


.form-group label {
    color:
        #d7dbd9;

    font-size: 12px;
    font-weight: 700;
}


.form-group input {
    width: 100%;
    height: 50px;

    padding:
        0 14px;

    background:
        #0b0e0c;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 9px;

    outline: none;

    color:
        #ffffff;

    font-size: 13px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}


.form-group input::placeholder {
    color:
        #505753;
}


.form-group input:hover {
    border-color:
        rgba(255, 255, 255, 0.15);
}


.form-group input:focus {
    background:
        #0d100e;

    border-color:
        rgba(182, 41, 53, 0.65);

    box-shadow:
        0 0 0 3px rgba(182, 41, 53, 0.08);
}


.form-help {
    color:
        #626a65;

    font-size: 10px;
}


/* =========================================================
   CHECKBOX
   ========================================================= */

.form-checkbox {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 1px;
}


.form-checkbox input {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    margin-top: 2px;

    accent-color:
        var(--red-bright);

    cursor: pointer;
}


.form-checkbox label {
    color:
        #727a75;

    font-size: 10px;

    line-height: 1.6;

    cursor: pointer;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.btn-submit {
    width: 100%;

    min-height: 52px;

    margin-top: 4px;
}


/* =========================================================
   AUTH FOOTER
   ========================================================= */

.auth-footer {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;

    margin-top: 25px;
    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    color:
        #656d68;

    font-size: 11px;
}


.auth-footer a {
    color:
        #c44953;

    font-weight: 700;

    transition:
        color var(--transition);
}


.auth-footer a:hover {
    color:
        #ed6b74;
}






/* =========================================================
   LOGIN OPTIONS
   ========================================================= */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: -4px;
}


.remember-me {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #727a75;

    font-size: 10px;

    cursor: pointer;
}


.remember-me input {
    width: 15px;
    height: 15px;

    margin: 0;

    accent-color:
        var(--red-bright);

    cursor: pointer;
}


.forgot-password {
    color:
        #a9444d;

    font-size: 10px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        color var(--transition);
}


.forgot-password:hover {
    color:
        #e06a73;
}




/* =========================================================
   FORM MESSAGES
   ========================================================= */

.form-message {
    margin-bottom: 20px;

    padding: 13px 15px;

    border-radius: 9px;

    font-size: 11px;

    line-height: 1.6;
}


.form-message-error {
    color: #f0a0a7;

    background:
        rgba(143, 29, 40, 0.12);

    border:
        1px solid rgba(182, 41, 53, 0.3);
}


.form-message-success {
    color: #8ed0ac;

    background:
        rgba(23, 102, 63, 0.14);

    border:
        1px solid rgba(42, 169, 107, 0.3);
}




/* =========================================================
   ACTIVATION LINK
   ========================================================= */

.activation-test-link {
    color: #c44953;

    font-size: 11px;
    font-weight: 700;

    transition:
        color var(--transition);
}

.activation-test-link:hover {
    color: #ed6b74;
}





/* =========================================================
   DASHBOARD
   ========================================================= */

.dashboard-page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(112, 20, 30, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 55%,
            rgba(15, 89, 54, 0.07),
            transparent 30%
        ),
        var(--black);
}


/* =========================================================
   DASHBOARD HEADER
   ========================================================= */

.dashboard-header {
    position: sticky;

    top: 0;

    z-index: 900;

    background:
        rgba(8, 10, 9, 0.94);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.dashboard-header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;

    gap: 35px;
}


/* =========================================================
   DASHBOARD NAVIGATION
   ========================================================= */

.dashboard-navigation {
    display: flex;
    align-items: center;

    gap: 27px;

    margin-left: 25px;
}


.dashboard-navigation a {
    position: relative;

    color:
        #7f8782;

    font-size: 12px;
    font-weight: 700;

    transition:
        color var(--transition);
}


.dashboard-navigation a:hover,
.dashboard-navigation a.active {
    color:
        #ffffff;
}


.dashboard-navigation a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -28px;

    height: 2px;

    background:
        var(--red-bright);
}


/* =========================================================
   DASHBOARD USER
   ========================================================= */

.dashboard-user {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-left: auto;
}


.dashboard-user-info {
    display: flex;
    flex-direction: column;

    align-items: flex-end;
}


.dashboard-user-info span {
    color:
        #555d58;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.dashboard-user-info strong {
    max-width: 220px;

    overflow: hidden;

    color:
        #c9cecb;

    font-size: 10px;

    font-weight: 600;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.dashboard-logout {
    padding:
        8px 12px;

    color:
        #9a4a52;

    background:
        rgba(143, 29, 40, 0.08);

    border:
        1px solid rgba(143, 29, 40, 0.2);

    border-radius: 7px;

    font-size: 9px;
    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}


.dashboard-logout:hover {
    color:
        #ffffff;

    background:
        rgba(143, 29, 40, 0.2);

    border-color:
        rgba(182, 41, 53, 0.4);
}


/* =========================================================
   DASHBOARD MAIN
   ========================================================= */

.dashboard-main {
    flex: 1;

    padding:
        65px 0 90px;
}


/* =========================================================
   WELCOME
   ========================================================= */

.dashboard-welcome {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}


.dashboard-welcome h1 {
    margin-bottom: 8px;

    color:
        #ffffff;

    font-size:
        clamp(35px, 5vw, 52px);

    line-height: 1;

    letter-spacing: -2px;
}


.dashboard-welcome p {
    color:
        #707873;

    font-size: 13px;
}


.network-badge {
    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        9px 13px;

    color:
        #91caaa;

    background:
        rgba(23, 102, 63, 0.13);

    border:
        1px solid var(--border-green);

    border-radius: 8px;

    font-size: 10px;
    font-weight: 700;

    white-space: nowrap;
}


.network-badge span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--green-bright);

    box-shadow:
        0 0 9px rgba(42, 169, 107, 0.65);
}


/* =========================================================
   DASHBOARD ACTIONS
   ========================================================= */

.dashboard-actions {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 25px;
}


.dashboard-action-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding: 26px;

    background:
        linear-gradient(
            145deg,
            #151917,
            #0e1110
        );

    border:
        1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.dashboard-action-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(255, 255, 255, 0.12);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);
}


.token-action:hover {
    border-color:
        rgba(182, 41, 53, 0.35);
}


.pool-action:hover {
    border-color:
        rgba(42, 169, 107, 0.3);
}


.action-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 32px;
}


.action-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    font-size: 18px;
    font-weight: 900;
}


.action-icon.red {
    color:
        #dc6972;

    background:
        rgba(143, 29, 40, 0.15);

    border:
        1px solid rgba(143, 29, 40, 0.28);
}


.action-icon.green {
    color:
        #64c38f;

    background:
        rgba(23, 102, 63, 0.15);

    border:
        1px solid rgba(42, 169, 107, 0.25);
}


.action-icon.white {
    color:
        #ffffff;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.09);
}


.action-number {
    color:
        rgba(255, 255, 255, 0.08);

    font-size: 40px;

    line-height: 1;

    font-weight: 900;
}


.action-card-content {
    flex: 1;
}


.action-label {
    display: block;

    margin-bottom: 8px;

    color:
        #606863;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.action-card-content h2 {
    margin-bottom: 10px;

    color:
        #ffffff;

    font-size: 22px;

    letter-spacing: -0.7px;
}


.action-card-content p {
    color:
        #747c77;

    font-size: 12px;

    line-height: 1.75;
}


.action-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}


.coming-soon {
    color:
        #8f454c;

    font-size: 9px;
    font-weight: 700;
}


.coming-soon.green {
    color:
        #4f966f;
}


.dashboard-disabled-button {
    min-height: 32px;

    padding:
        0 11px;

    color:
        #555d58;

    background:
        #171b19;

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 6px;

    font-size: 9px;
    font-weight: 700;

    cursor:
        not-allowed;

    opacity:
        0.7;
}


/* =========================================================
   ACCOUNT STATUS
   ========================================================= */

.dashboard-status {
    padding:
        28px;

    margin-bottom: 18px;

    background:
        #111513;

    border:
        1px solid var(--border);

    border-radius: 15px;
}


.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}


.status-header .section-label {
    margin-bottom: 5px;
}


.status-header h2 {
    color:
        #ffffff;

    font-size: 19px;

    letter-spacing: -0.5px;
}


.status-active {
    display: flex;
    align-items: center;

    gap: 7px;

    padding:
        7px 10px;

    color:
        #6ec392;

    background:
        rgba(23, 102, 63, 0.12);

    border:
        1px solid var(--border-green);

    border-radius: 7px;

    font-size: 9px;
    font-weight: 800;
}


.status-active span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--green-bright);
}


.status-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


.status-item {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.status-item span {
    color:
        #555d58;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.status-item strong {
    overflow: hidden;

    color:
        #d3d8d5;

    font-size: 11px;

    font-weight: 600;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.status-item .not-connected {
    color:
        #9b555c;
}


/* =========================================================
   SECURITY NOTICE
   ========================================================= */

.dashboard-security {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding:
        20px 22px;

    background:
        rgba(23, 102, 63, 0.07);

    border:
        1px solid rgba(42, 169, 107, 0.16);

    border-radius: 12px;
}


.security-notice-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color:
        var(--green-bright);

    background:
        rgba(42, 169, 107, 0.1);

    border:
        1px solid rgba(42, 169, 107, 0.2);

    border-radius: 8px;

    font-size: 11px;
    font-weight: 900;
}


.dashboard-security strong {
    display: block;

    margin-bottom: 3px;

    color:
        #c8d0cb;

    font-size: 12px;
}


.dashboard-security p {
    color:
        #68716b;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   DASHBOARD RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .dashboard-navigation {
        gap: 18px;

        margin-left: 5px;
    }

    .dashboard-actions {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .lp-action {
        grid-column:
            1 / -1;
    }

    .status-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .dashboard-header-inner {
        min-height: 70px;

        flex-wrap: wrap;

        padding:
            12px 0;
    }

    .dashboard-navigation {
        order: 3;

        width: 100%;

        margin: 0;

        padding-top: 4px;

        overflow-x: auto;

        justify-content: center;
    }

    .dashboard-navigation a.active::after {
        bottom: -10px;
    }

    .dashboard-user {
        margin-left: auto;
    }

    .dashboard-user-info {
        display: none;
    }

    .dashboard-main {
        padding:
            50px 0 70px;
    }

}


@media (max-width: 650px) {

    .dashboard-welcome {
        align-items: flex-start;

        flex-direction: column;
    }

    .dashboard-actions {
        grid-template-columns: 1fr;
    }

    .lp-action {
        grid-column: auto;
    }

    .dashboard-action-card {
        min-height: 300px;
    }

}


@media (max-width: 480px) {

    .dashboard-header-inner {
        gap: 12px;
    }

    .dashboard-header .logo-text {
        font-size: 17px;
    }

    .dashboard-logout {
        padding:
            7px 9px;

        font-size: 8px;
    }

    .dashboard-navigation {
        justify-content: flex-start;

        gap: 22px;
    }

    .dashboard-navigation a {
        font-size: 10px;

        white-space: nowrap;
    }

    .dashboard-welcome h1 {
        font-size: 38px;
    }

    .dashboard-status {
        padding:
            20px 16px;
    }

    .status-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-security {
        padding:
            17px;
    }

}





/* =========================================================
   LOGIN RESPONSIVE
   ========================================================= */

@media (max-width: 450px) {

    .login-options {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

}














/* =========================================================
   AUTH RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .auth-main {
        padding:
            60px 0;
    }

    .auth-wrapper {
        grid-template-columns: 1fr;

        max-width: 600px;

        gap: 45px;
    }

    .auth-intro {
        max-width: 600px;

        text-align: center;
    }

    .auth-intro > p {
        margin-left: auto;
        margin-right: auto;
    }

    .auth-benefits {
        max-width: 400px;

        margin:
            0 auto;

        text-align: left;
    }

}


@media (max-width: 600px) {

    .auth-main {
        padding:
            45px 0;
    }

    .auth-wrapper {
        width:
            calc(100% - 24px);
    }

    .auth-intro h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .auth-card {
        padding: 25px 20px;

        border-radius: 15px;
    }

}


@media (max-width: 400px) {

    .auth-intro h1 {
        font-size: 36px;
    }

    .auth-card {
        padding: 22px 16px;
    }

    .auth-footer {
        flex-direction: column;

        gap: 3px;
    }

}














/* =========================================================
   RESPONSIVE - 1100PX
   ========================================================= */

@media (max-width: 1100px) {

    .main-navigation {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.8fr);

        gap: 45px;
    }

    .hero h1 {
        font-size:
            clamp(48px, 6vw, 68px);
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .security-container {
        gap: 55px;
    }

}


/* =========================================================
   RESPONSIVE - 900PX
   ========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 72px;
    }

    .main-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-navigation.active {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding:
            75px 0 90px;

        gap: 65px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .security-container {
        grid-template-columns: 1fr;
    }

    .security-content {
        max-width: 760px;
    }

    .security-panel {
        max-width: 550px;

        width: 100%;

        margin:
            0 auto;
    }

    .footer-top {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 35px;
    }

}


/* =========================================================
   RESPONSIVE - 700PX
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }

    .hero-container {
        padding:
            60px 0 75px;
    }

    .hero h1 {
        font-size:
            clamp(42px, 13vw, 60px);

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item strong {
        font-size: 12px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-card {
        padding: 20px;

        border-radius: 16px;
    }

    .floating-card-top {
        top: 25px;
        right: -5px;
    }

    .floating-card-bottom {
        bottom: 35px;
        left: -5px;
    }

    .section {
        padding:
            80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size:
            clamp(30px, 9vw, 42px);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 260px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .security-container {
        gap: 45px;
    }

    .security-panel {
        min-height: 390px;
    }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 35px 25px;
    }

    .cta-box .btn {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;

        padding:
            55px 0 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE - 480PX
   ========================================================= */

@media (max-width: 480px) {

    .container {
        width:
            calc(100% - 24px);
    }

    .logo-mark {
        width: 38px;
        height: 38px;

        border-radius: 10px;

        font-size: 17px;
    }

    .logo-text {
        font-size: 18px;
    }

    .header-inner {
        min-height: 66px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .hero-container {
        padding:
            48px 0 65px;

        gap: 45px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2.5px;
    }

    .hero-badge {
        font-size: 9px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .hero-trust {
        gap: 9px;
    }

    .trust-divider {
        height: 25px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-card {
        padding: 17px;
    }

    .hero-card-header {
        gap: 8px;
    }

    .hero-card-header strong {
        font-size: 11px;
    }

    .network-status {
        padding:
            5px 7px;

        font-size: 8px;
    }

    .token-preview {
        padding:
            25px 0;
    }

    .token-icon {
        width: 52px;
        height: 52px;

        border-radius: 14px;

        font-size: 20px;
    }

    .token-information strong {
        font-size: 15px;
    }

    .preview-data {
        padding: 12px 9px;
    }

    .preview-data span {
        font-size: 7px;
    }

    .preview-data strong {
        font-size: 9px;
    }

    .floating-card {
        padding:
            9px 11px;
    }

    .floating-card-top {
        right: -8px;
    }

    .floating-card-bottom {
        left: -8px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card small {
        font-size: 8px;
    }

    .section {
        padding:
            65px 0;
    }

    .feature-card {
        padding: 23px;

        min-height: 245px;
    }

    .step {
        padding: 20px;

        gap: 14px;
    }

    .step-number {
        width: 42px;
        height: 42px;
    }

    .security-panel {
        padding: 25px 18px;
    }

    .security-shield {
        width: 72px;
        height: 72px;

        border-radius: 21px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        min-height: auto;

        padding:
            20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid var(--red-bright);

    outline-offset:
        3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}