﻿:root{--bg:#050910;--bg-soft:#07111b;--panel:#0b1a2d;--panel-2:#071426;--line:rgba(137,176,211,.18);--text:#f5f7fb;--muted:#91a9c7;--cyan:#2cd8e5;--green:#21e097;--gold:#ffd057;--danger:#ff91aa;--shadow:0 26px 80px rgba(0,0,0,.32)}*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:radial-gradient(circle at 88% 15%,rgba(23,218,177,.12),transparent 31%),radial-gradient(circle at 12% 14%,rgba(44,157,229,.13),transparent 34%),var(--bg);color:var(--text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}a{color:inherit;text-decoration:none}button,input,select{font:inherit}.site-header{position:sticky;top:0;z-index:50;background:rgba(4,10,18,.94);backdrop-filter:blur(16px);border-bottom:1px solid var(--line)}.header-inner{max-width:1280px;margin:auto;min-height:84px;padding:14px 24px;display:flex;align-items:center;gap:24px}.brand{display:flex;align-items:center;gap:12px;font-weight:900}.brand img{width:42px;height:42px;object-fit:contain}.nav{margin-left:auto;display:flex;align-items:center;gap:20px;color:var(--muted);font-weight:700}.nav a:hover,.nav a.active{color:var(--cyan)}.account-link,.btn{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:14px;border:1px solid var(--line);font-weight:900;cursor:pointer;background:#111b2a;color:var(--text)}.btn.primary,.account-bubble{color:#021014;background:linear-gradient(110deg,var(--cyan),var(--green));border-color:transparent}.btn.danger{color:#ffdbe3;border-color:rgba(255,145,170,.35);background:rgba(255,145,170,.08)}.shell{max-width:1280px;margin:auto;padding:34px 24px 80px}.hero,.panel{border:1px solid var(--line);border-radius:28px;background:linear-gradient(135deg,rgba(14,43,67,.92),rgba(7,20,38,.94) 58%,rgba(9,54,52,.76));box-shadow:var(--shadow)}.hero{padding:38px}.hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 290px;gap:30px;align-items:center}.eyebrow{color:var(--green);font-size:.78rem;font-weight:1000;text-transform:uppercase;letter-spacing:.13em}.hero h1{margin:10px 0 8px;font-size:clamp(2.6rem,6vw,5.3rem);line-height:.92;letter-spacing:-.06em}.hero p,.section-head p,.muted{color:var(--muted);line-height:1.65}.identity-card{padding:22px;border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.04)}.avatar{width:76px;height:76px;border-radius:20px;display:grid;place-items:center;background:linear-gradient(135deg,var(--cyan),var(--green));color:#021014;font-weight:1000;font-size:1.65rem;border:4px solid #03101d}.identity-card h2{margin:14px 0 4px}.identity-id{font-weight:900;color:var(--cyan)}.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:18px 0}.stat{padding:18px;border:1px solid var(--line);border-radius:18px;background:var(--panel-2)}.stat strong{display:block;font-size:1.7rem}.stat span{color:var(--muted);font-size:.78rem;font-weight:900;text-transform:uppercase}.panel{margin-top:22px;padding:28px}.section-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-end;margin-bottom:20px}.section-head h2{margin:0;font-size:clamp(1.8rem,4vw,2.7rem);letter-spacing:-.04em}.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.card{padding:20px;border:1px solid var(--line);border-radius:20px;background:var(--panel-2)}.card h3{margin:0 0 8px}.card p{color:var(--muted);line-height:1.55}.meta{display:grid;gap:8px;margin-top:16px}.meta-row{display:flex;justify-content:space-between;gap:14px;color:var(--muted)}.meta-row strong{color:var(--text)}.status{padding:14px 16px;border-radius:14px;border:1px solid rgba(255,208,87,.32);background:rgba(255,208,87,.08);color:var(--gold);font-weight:800;margin-bottom:18px}.status.error{border-color:rgba(255,145,170,.35);background:rgba(255,145,170,.08);color:#ffb4c6}.actions{display:flex;gap:12px;flex-wrap:wrap}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.field{display:grid;gap:8px}.field label{font-weight:900}.field input,.field select{width:100%;min-height:50px;padding:0 14px;border-radius:14px;border:1px solid var(--line);background:#030b16;color:var(--text)}.footer{max-width:1280px;margin:auto;padding:30px 24px 50px;color:var(--muted);border-top:1px solid var(--line)}[hidden]{display:none!important}@media(max-width:900px){.hero-grid,.grid,.form-grid{grid-template-columns:1fr}.stats{grid-template-columns:repeat(2,1fr)}.nav{display:none}.hero{padding:26px}}@media(max-width:520px){.shell{padding:22px 14px 60px}.header-inner{padding:12px 14px}.brand span{display:none}.stats{grid-template-columns:1fr 1fr}.panel{padding:20px}.hero h1{font-size:3rem}}

/* FRAGMENT HOMEPAGE COMPONENTS START */

/* Shared layout */

.page {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--cyan);
    color: #021014;
    font-weight: 900;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}


/* Header */

.header-row {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    color: var(--text);
    line-height: 1.1;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 600;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a,
.nav-signout,
.header-signup {
    color: var(--muted);
    font-weight: 800;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.header-signup:hover {
    color: var(--cyan);
}

.nav-signout {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-signup {
    white-space: nowrap;
}

.account-bubble-inactive {
    color: var(--text);
    background: #111b2a;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #111b2a;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 900;
    cursor: pointer;
}


/* Buttons */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #111b2a;
    color: var(--text);
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    transition:
        transform 150ms ease,
        border-color 150ms ease,
        background 150ms ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: rgba(44, 216, 229, 0.52);
}

.button.primary {
    border-color: transparent;
    background: linear-gradient(110deg, var(--cyan), var(--green));
    color: #021014;
}

.button.purple {
    border-color: rgba(92, 98, 255, 0.5);
    background: rgba(84, 74, 235, 0.13);
    color: #d8d9ff;
}


/* Homepage hero */

.hero.page {
    margin-top: 0;
    padding: 92px 0 78px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 72px;
    align-items: center;
}

.hero h1 {
    max-width: 760px;
    margin: 18px 0 24px;
    font-size: clamp(4.3rem, 8vw, 7.8rem);
    line-height: 0.86;
    letter-spacing: -0.075em;
}

.hero h1 span {
    display: block;
    color: var(--cyan);
}

.hero-copy {
    max-width: 760px;
    margin: 0;
    color: #b0c1d8;
    font-size: clamp(1.05rem, 1.55vw, 1.26rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-note {
    max-width: 760px;
    margin: 24px 0 0;
    color: #647f9f;
    font-size: 0.92rem;
    line-height: 1.6;
}


/* Ecosystem summary card */

.ecosystem-card {
    overflow: hidden;
    border: 1px solid rgba(44, 216, 229, 0.25);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(20, 67, 73, 0.78),
            rgba(8, 20, 36, 0.95) 45%
        );
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.42),
        0 0 60px rgba(28, 218, 202, 0.08);
}

.ecosystem-card-header {
    padding: 30px 30px 24px;
    border-bottom: 1px solid var(--line);
}

.ecosystem-card-header p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 1000;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ecosystem-card-header h2 {
    margin: 0;
    font-size: 1.65rem;
}

.ecosystem-list {
    display: grid;
}

.ecosystem-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
}

.ecosystem-item:last-child {
    border-bottom: 0;
}

.ecosystem-item > span:nth-child(2) {
    display: grid;
    gap: 4px;
}

.ecosystem-item strong {
    font-size: 0.95rem;
}

.ecosystem-item small {
    color: #6f88a7;
    line-height: 1.35;
}

.ecosystem-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    border: 1px solid rgba(44, 216, 229, 0.2);
    background: rgba(44, 216, 229, 0.11);
    color: var(--cyan);
    font-weight: 1000;
}

.ecosystem-icon.rewards {
    background: rgba(33, 224, 151, 0.1);
    color: var(--green);
}

.ecosystem-icon.game {
    background: rgba(82, 112, 255, 0.12);
    color: #8499ff;
}

.ecosystem-icon.tools {
    color: var(--green);
}

.ecosystem-state {
    color: var(--cyan);
    font-size: 0.69rem;
    font-weight: 1000;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* Homepage sections */

.section {
    padding: 82px 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading .eyebrow {
    margin-bottom: 12px;
}

.section-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}


/* Account feature */

.account-feature {
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
    gap: 58px;
    align-items: center;
}

.account-visual {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 45, 70, 0.93),
            rgba(6, 19, 36, 0.96)
        );
    box-shadow: var(--shadow);
}

.account-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.account-profile > span:last-child {
    display: grid;
    gap: 5px;
}

.account-profile small {
    color: var(--muted);
}

.profile-avatar {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 3px solid #03101d;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    color: #021014;
    font-size: 1.35rem;
    font-weight: 1000;
}

.account-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.account-module {
    min-height: 106px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 11, 24, 0.58);
}

.account-module span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-copy h2,
.game-feature h2,
.rewards-feature h2 {
    margin: 12px 0 18px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.feature-copy > p,
.game-feature > div > p,
.rewards-feature > div > p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #c2d1e3;
    line-height: 1.55;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 1000;
}


/* Product and feature cards */

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

.feature-card,
.product-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(11, 27, 48, 0.96),
            rgba(5, 16, 31, 0.97)
        );
}

.feature-card:hover,
.product-card:hover {
    border-color: rgba(44, 216, 229, 0.35);
}

.card-label,
.product-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 1000;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.feature-card h3,
.product-card h3 {
    margin: 18px 0 10px;
    font-size: 1.4rem;
}

.feature-card p,
.product-card p {
    color: var(--muted);
    line-height: 1.65;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.product-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(44, 216, 229, 0.2);
    border-radius: 16px;
    background: rgba(44, 216, 229, 0.1);
    color: var(--cyan);
    font-size: 1.15rem;
    font-weight: 1000;
}


/* Highlight sections */

.rewards-feature,
.game-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 52px;
    align-items: center;
}

.rewards-feature {
    padding: 40px;
    border: 1px solid rgba(33, 224, 151, 0.2);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 46, 48, 0.82),
            rgba(7, 19, 36, 0.96)
        );
}

.game-feature {
    padding: 40px;
    border: 1px solid rgba(97, 106, 255, 0.25);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(25, 26, 77, 0.8),
            rgba(7, 19, 36, 0.96)
        );
}


/* CTA */

.cta {
    padding: 54px;
    border: 1px solid rgba(44, 216, 229, 0.27);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(33, 224, 151, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(14, 43, 67, 0.94),
            rgba(7, 20, 38, 0.96)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.cta h2 {
    margin: 12px auto 18px;
    max-width: 820px;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.cta > p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}


/* Footer */

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(3, 8, 15, 0.76);
}

.footer-row {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-copy {
    display: grid;
    gap: 6px;
}

.footer-copy strong {
    color: var(--text);
}

.footer-copy small {
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: var(--muted);
}

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


/* Responsive layout */

@media (max-width: 1000px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 16px;
        right: 16px;
        margin: 0;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #07111b;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .header-signup {
        display: none;
    }

    .hero.page,
    .account-feature,
    .rewards-feature,
    .game-feature {
        grid-template-columns: 1fr;
    }

    .hero.page {
        gap: 46px;
        padding-top: 68px;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .page {
        width: min(100% - 28px, 1280px);
    }

    .brand-copy small {
        display: none;
    }

    .hero.page {
        padding: 54px 0 58px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 17vw, 5.2rem);
    }

    .ecosystem-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .ecosystem-state {
        grid-column: 2;
    }

    .feature-grid,
    .product-grid,
    .account-modules {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .rewards-feature,
    .game-feature,
    .cta {
        padding: 28px;
    }

    .footer-row {
        padding: 32px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* FRAGMENT HOMEPAGE COMPONENTS END */
