.nav {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
    border-bottom: 1px solid transparent;
}

.nav--scrolled {
    background: rgba(7, 11, 22, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__diamond {
    filter: drop-shadow(rgba(78, 168, 255, 0.5) 0px 4px 10px);
}

.nav__logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__links > a:not(.nav__buy) {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.96rem;
    transition: color 0.2s;
}

.nav__links > a:not(.nav__buy):hover {
    color: var(--text);
}

.nav__buy {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav__lang-wrap {
    position: relative;
}

.nav__lang {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: border-color 0.2s, color 0.2s;
}

.nav__lang:hover, .nav__lang.is-open {
    border-color: var(--white);
    color: var(--text);
}

.nav__lang-globe {
    width: 16px;
    height: 16px;
}

.nav__lang-current {
    min-width: 22px;
    text-align: center;
}

.nav__lang-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav__lang.is-open .nav__lang-chevron {
    transform: rotate(180deg);
}

.nav__lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0px;
    min-width: 168px;
    list-style: none;
    margin: 0px;
    padding: 6px;
    border-radius: 14px;
    background: rgba(13, 19, 36, 0.96);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(16px);
    box-shadow: rgba(0, 0, 0, 0.8) 0px 24px 50px -20px;
    z-index: 120;
}

.nav__lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: background 0.16s, color 0.16s;
}

.nav__lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.nav__lang-option.is-active {
    color: var(--white);
    font-weight: 600;
}

.nav__lang-check {
    width: 16px;
    height: 16px;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.nav__burger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}

.nav__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
    .nav__burger {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 72px;
        left: 0px;
        right: 0px;
        flex-direction: column;
        gap: 18px;
        padding: 28px 24px 36px;
        background: rgba(9, 14, 28, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav__links--open {
        transform: translateY(0px);
        opacity: 1;
        pointer-events: auto;
    }

    .nav__buy {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 1rem;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0px 80px;
    overflow: hidden;
}

.hero__sky {
    position: absolute;
    inset: 0px;
    z-index: 0;
    background: linear-gradient(rgb(5, 8, 19), rgb(10, 16, 36) 30%, rgb(26, 21, 48) 55%, rgb(58, 36, 64) 75%, rgb(90, 47, 62));
}

.hero__stars {
    position: absolute;
    inset: 0px;
    background-image: radial-gradient(1.5px 1.5px at 20% 18%, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1.5px 1.5px at 70% 12%, rgba(255, 255, 255, 0.6), transparent), radial-gradient(1px 1px at 40% 30%, rgba(255, 255, 255, 0.7), transparent), radial-gradient(1px 1px at 85% 24%, rgba(255, 255, 255, 0.5), transparent), radial-gradient(1.5px 1.5px at 55% 8%, rgba(255, 255, 255, 0.7), transparent), radial-gradient(1px 1px at 10% 8%, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0.7;
    animation: 6s ease-in-out 0s infinite alternate none running twinkle;
}

@keyframes twinkle {
    0% {
        opacity: 0.35;
    }

    100% {
        opacity: 0.85;
    }
}

.hero__sun {
    position: absolute;
    bottom: 18%;
    left: 50%;
    width: 460px;
    height: 460px;
    transform: translate(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgb(255, 230, 176) 0%, rgb(255, 177, 78) 30%, rgb(255, 122, 61) 55%, rgba(255, 94, 126, 0.4) 75%, transparent 80%);
    filter: blur(4px);
    box-shadow: rgba(255, 150, 80, 0.45) 0px 0px 200px 80px;
}

.hero__hills {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: 0px;
    height: 240px;
    background: linear-gradient(rgb(28, 20, 48), rgb(10, 12, 26));
    border-radius: 50% 50% 0px 0px / 100% 100% 0px 0px;
    z-index: 2;
}

.hero__hills--back {
    bottom: 60px;
    height: 200px;
    left: -20%;
    right: -20%;
    background: linear-gradient(rgba(60, 40, 70, 0.7), rgba(20, 18, 40, 0.7));
    z-index: 1;
    filter: blur(1px);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 160px;
    background: linear-gradient(180deg,transparent,var(--bg-deep));
    z-index: 3;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(68, 40, 207, 0.06);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(6px);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #FFFFFF 0%, #1E3A8A 55%, #0F172A 100%);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;;
    margin-bottom: 26px;
}

.hero__title {
    font-size: clamp(3.2rem, 9vw, 6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
}

.hero__title .gold-text {
    display: inline-block;
    padding-bottom: 0.18em;
    line-height: 1;
}

.hero__title-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero__diamond {
    display: inline-flex;
    filter: drop-shadow(rgba(78, 168, 255, 0.55) 0px 10px 28px);
}

.hero__title-bottom {
    display: block;
    margin-top: -0.05em;
}

.hero__subtitle {
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    color: var(--text-dim);
    max-width: 540px;
    margin-bottom: 34px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero__quote {
    max-width: 480px;
    padding-left: 20px;
    border-left: 2px solid var(--white);
}

.hero__quote blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 8px;
}

.hero__quote figcaption {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.92rem;
}

.hero__quote-icon {
    width: 16px;
    height: 16px;
    color: var(--diamond);
}

.hero__visual {
    position: relative;
}

.hero__visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow);
}

.hero__visual-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(50% 50% at 50% 40%, rgba(255, 150, 80, 0.35), transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.hero__ticker {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(10, 14, 28, 0.78);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(10px);
}

.hero__ticker strong {
    display: block;
    font-size: 1.05rem;
    background: linear-gradient(90deg, #FFFFFF 0%, #1E3A8A 55%, #0F172A 100%);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero__ticker span {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translate(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-faint);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg,var(--white),transparent);
    animation: 2s ease-in-out 0s infinite normal none running scrollPulse;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.4;
        transform-origin: center top;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
        transform-origin: center top;
    }
}

@media (max-width: 940px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__title-row {
        justify-content: center;
    }

    .hero__subtitle, .hero__quote {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__quote {
        text-align: left;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
        max-width: 520px;
        margin: 0px auto;
    }
}

@media (max-width: 520px) {
    .hero__scroll {
        display: none;
    }

    .hero__diamond svg {
        width: 52px;
        height: 52px;
    }
}

.lore {
    background: linear-gradient(180deg,var(--bg-deep) 0%,var(--bg-deep-2) 100%);
}

.lore__head {
    max-width: 720px;
    margin-bottom: 56px;
}

.lore__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.lore__card {
    position: relative;
    padding: 34px 30px;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}

.lore__card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.lore__card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 2px;
    background: var(--sunrise-grad);
    opacity: 0;
    transition: opacity 0.25s;
}

.lore__card:hover::before {
    opacity: 1;
}

.lore__tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.lore__card h3 {
    font-size: 1.32rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.lore__card p {
    color: var(--text-dim);
    font-size: 1rem;
}

.lore__equation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 60px;
    font-size: clamp(2rem, 6vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
}

.lore__equation .gold-text {
    display: inline-block;
    padding-bottom: 0.16em;
    line-height: 1;
}

.lore__equals {
    color: var(--text-faint);
    font-weight: 300;
}

@media (max-width: 760px) {
    .lore__grid {
        grid-template-columns: 1fr;
    }
}

.contract {
    background: var(--bg-deep-2);
}

.contract__card {
    position: relative;
    padding: 56px clamp(24px, 5vw, 64px);
    overflow: hidden;
}

.contract__card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.16), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.contract__head {
    position: relative;
    max-width: 640px;
    margin-bottom: 38px;
}

.contract__box {
    position: relative;
    background: rgba(5, 8, 16, 0.7);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 22px 24px;
}

.contract__label {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 14px;
}

.contract__row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.contract__ca {
    flex: 1 1 0%;
    min-width: 0px;
    font-family: SFMono-Regular, ui-monospace, "Cascadia Code", Consolas, monospace;
    font-size: clamp(0.82rem, 1.8vw, 1.08rem);
    color: var(--diamond-bright);
    word-break: break-all;
    line-height: 1.5;
}

.contract__copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--gold-grad);
    color: rgb(42, 29, 5);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: transform 0.18s, box-shadow 0.2s;
    box-shadow: rgba(233, 196, 106, 0.8) 0px 10px 24px -12px;
}

.contract__copy:hover {
    transform: translateY(-2px);
}

.contract__copy svg {
    width: 17px;
    height: 17px;
}

.contract__copy.is-copied {
    background: linear-gradient(rgb(155, 232, 176), rgb(70, 196, 111));
    color: rgb(4, 33, 15);
}

.contract__hint {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--text-faint);
}

@media (max-width: 560px) {
    .contract__copy {
        width: 100%;
        justify-content: center;
    }
}

.community {
    background: linear-gradient(180deg,var(--bg-deep-2) 0%,var(--bg-deep) 100%);
}

.community__head {
    max-width: 680px;
    margin-bottom: 50px;
}

.community__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.community__card {
    position: relative;
    padding: 40px 36px;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}

.community__card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.community__card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.35;
    transition: opacity 0.25s;
}

.community__card--tg::after {
    background: rgb(42, 171, 238);
}

.community__card--x::after {
    background: rgb(107, 116, 136);
}

.community__card:hover::after {
    opacity: 0.55;
}

.community__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-strong);
    margin-bottom: 22px;
}

.community__icon svg {
    width: 26px;
    height: 26px;
    color: var(--text);
}

.community__card--tg .community__icon svg {
    color: rgb(42, 171, 238);
}

.community__card h3 {
    font-size: 1.42rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.community__card p {
    color: var(--text-dim);
    margin-bottom: 22px;
}

.community__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--white);
}

.community__cta svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s;
}

.community__card:hover .community__cta svg {
    transform: translate(4px);
}

@media (max-width: 720px) {
    .community__grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-deep);
    padding: 56px 0px 40px;
}

.footer__top {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 900;
}

.footer__tagline {
    color: var(--text-dim);
    font-weight: 500;
}

.footer__socials {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

.footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-strong);
    color: var(--text-dim);
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer__socials a:hover {
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.footer__socials svg {
    width: 18px;
    height: 18px;
}

.footer__disclaimer {
    font-size: 0.86rem;
    color: var(--text-faint);
    line-height: 1.7;
    padding: 22px 0px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 22px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.84rem;
    color: var(--text-faint);
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

@media (max-width: 560px) {
    .footer__socials {
        margin-left: 0px;
    }
}

:root {
    --bg-deep: #070b16;
    --bg-deep-2: #0c1326;
    --bg-card: rgba(18, 26, 46, .6);
    --bg-card-solid: #111a30;
    --border: rgba(255, 255, 255, .08);
    --border-strong: rgba(255, 255, 255, .16);
    --text: #f4f6fb;
    --text-dim: #aab3c7;
    --text-faint: #6b7488;
    --gold: #e9c46a;
    --gold-bright: #f7dd9a;
    --diamond: #4ea8ff;
    --diamond-bright: #8fd0ff;
    --sunrise-1: #ff8a3d;
    --sunrise-2: #ff5e7e;
    --sunrise-3: #7b5cff;
    --gold-grad: linear-gradient(180deg, #fff4d6 0%, #f7dd9a 35%, #e9c46a 60%, #c79a3c 100%);
    --diamond-grad: linear-gradient(135deg, #8fd0ff 0%, #4ea8ff 50%, #2a6fd6 100%);
    --sunrise-grad: linear-gradient(120deg, var(--sunrise-1), var(--sunrise-2) 45%, var(--sunrise-3));
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 30px 80px -30px rgba(0, 0, 0, .7);
    --maxw: 1120px;
    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0px auto;
    padding: 0px 24px;
}

section {
    position: relative;
}

.section-pad {
    padding: 110px 0px;
}

.gold-text {
    background-image: ;
    background-position-x: ;
    background-position-y: ;
    background-size: ;
    background-repeat: ;
    background-attachment: ;
    background-origin: ;
    background-color: ;
    
    background: linear-gradient(90deg, #FFFFFF 0%, #1E3A8A 55%, #0F172A 100%);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-lead {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: var(--text-dim);
    max-width: 620px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.18s, box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(180deg, #3B82F6 0%, #1E3A8A 55%, #020617 100%);
    color: #ffffff; 
    box-shadow: rgba(59, 130, 246, 0.5) 0px 10px 20px -5px;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #60A5FA 0%, #1E3A8A 55%, #020617 100%);
    box-shadow: rgba(59, 130, 246, 0.8) 0px 15px 25px -5px;
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #E0F2FE 0%, #2563EB 50%, #020617 100%);
    box-shadow: rgba(59, 130, 246, 0.8) 0px 20px 40px -8px; 
    transform: translateY(-3px); 
    color: #ffffff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-strong);
    color: var(--text);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(30, 58, 138, 0.25); 
    border-color: #3B82F6; 
    box-shadow: 0px 0px 20px rgba(59, 130, 246, 0.2); 
    transform: translateY(-3px);
    color: #ffffff;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
}

.glow-divider {
    position: absolute;
    inset: 0px;
    pointer-events: none;
    background: radial-gradient(60% 50% at 50% 0%, rgba(123, 92, 255, 0.12), transparent 70%);
}

::selection {
    background: var(--white);
    color: rgb(26, 18, 6);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: rgb(37, 48, 77);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(51, 64, 106);
}

@media (max-width: 720px) {
    .section-pad {
        padding: 72px 0px;
    }
}
