/*==================================================
    AMCoin ($AMH)
    Premium Website v3.0
    Powered by Anvirexmoranta Holding Private Limited
====================================================*/

/*==================================================
    GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*==================================================
    DESIGN SYSTEM
====================================================*/

:root {

    /* Brand */

    --primary: #D6A600;
    --primary-light: #FFD54A;
    --primary-dark: #A87D00;

    /* Neutral */

    --white: #FFFFFF;
    --bg: #F8FAFC;
    --surface: #FFFFFF;

    --text: #111827;
    --text-light: #64748B;

    --border: #E8EDF3;

    /* Status */

    --success: #16A34A;
    --danger: #DC2626;

    /* Radius */

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Shadow */

    --shadow-sm: 0 8px 20px rgba(15, 23, 42, .05);

    --shadow: 0 18px 40px rgba(15, 23, 42, .08);

    --shadow-lg: 0 30px 70px rgba(15, 23, 42, .12);

    --shadow-gold: 0 25px 60px rgba(214, 166, 0, .18);

    /* Animation */

    --transition: .35s cubic-bezier(.4, .2, .2, 1);

    /* Container */

    --container: 1320px;

}

/*==================================================
    RESET
====================================================*/

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;

    background: var(--bg);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}

/*==================================================
    BACKGROUND
====================================================*/

body::before {

    content: "";

    position: fixed;

    width: 750px;
    height: 750px;

    top: -320px;
    left: -320px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 166, 0, .10),
            transparent 70%);

    z-index: -2;

}

body::after {

    content: "";

    position: fixed;

    width: 650px;
    height: 650px;

    bottom: -280px;
    right: -280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 213, 74, .12),
            transparent 70%);

    z-index: -2;

}

/*==================================================
    TYPOGRAPHY
====================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {

    font-weight: 800;

    color: var(--text);

    line-height: 1.15;

}

h1 {

    font-size: clamp(3rem, 6vw, 5.6rem);

}

h2 {

    font-size: clamp(2.3rem, 5vw, 4rem);

}

h3 {

    font-size: 2rem;

}

h4 {

    font-size: 1.35rem;

}

p {

    color: var(--text-light);

    font-size: 1rem;

}

a {

    text-decoration: none;

    color: inherit;

}

img {

    display: block;

    max-width: 100%;

}

/*==================================================
    CONTAINER
====================================================*/

.container {

    width: min(92%, var(--container));

    margin-inline: auto;

}

section {

    position: relative;

    padding: 120px 0;

}

/*==================================================
    SECTION TITLE
====================================================*/

.section-title {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 70px;

}

.section-title span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 20px;

    border-radius: 100px;

    background: #FFF7D6;

    color: var(--primary);

    font-weight: 700;

    font-size: .8rem;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.section-title h2 {

    margin-top: 20px;

}

.section-title p {

    margin-top: 20px;

}

/*==================================================
    BUTTONS
====================================================*/

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 18px 34px;

    border-radius: 100px;

    cursor: pointer;

    border: none;

    font-weight: 700;

    transition: var(--transition);

    position: relative;

    overflow: hidden;

}

.btn-primary {

    color: #111;

    background:
        linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    box-shadow: var(--shadow-gold);

}

.btn-primary:hover {

    transform: translateY(-5px);

}

.btn-outline {

    background: #fff;

    border: 2px solid var(--primary);

    color: var(--primary);

}

.btn-outline:hover {

    background: var(--primary);

    color: #fff;

}

.btn::before {

    content: "";

    position: absolute;

    left: -120px;

    top: -50%;

    width: 70px;

    height: 220%;

    background: rgba(255, 255, 255, .35);

    transform: rotate(25deg);

}

.btn:hover::before {

    animation: shine .8s linear;

}

@keyframes shine {

    to {

        left: 140%;

    }

}

/*==================================================
    CARD
====================================================*/

.card {

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    transition: var(--transition);

}

.card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-gold);

}

/*==================================================
    UTILITIES
====================================================*/

.text-center {

    text-align: center;

}

.rounded {

    border-radius: var(--radius-lg);

}

.shadow {

    box-shadow: var(--shadow);

}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 60px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 60px;
}

/*==================================================
    SCROLLBAR
====================================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #EEF2F7;

}

::-webkit-scrollbar-thumb {

    border-radius: 100px;

    background:
        linear-gradient(var(--primary-light),
            var(--primary));

}

/*==================================================
    SELECTION
====================================================*/

::selection {

    background: var(--primary);

    color: #fff;

}

/*==================================================
    HEADER
====================================================*/

header {

    position: fixed;

    top: 20px;
    left: 0;

    width: 100%;

    z-index: 9999;

    transition: .4s ease;

}

header.scrolled {

    top: 0;

}

.navbar {

    width: min(95%, 1320px);

    margin: auto;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 28px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255, 255, 255, .85);

    box-shadow:

        0 20px 50px rgba(15, 23, 42, .08);

    transition: .35s;

}

header.scrolled .navbar {

    border-radius: 0;

    width: 100%;

}

/*==================================================
    LOGO
====================================================*/

.logo {

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 1.45rem;

    font-weight: 800;

    color: var(--text);

}

.logo img {

    width: 54px;

    height: 54px;

    object-fit: contain;

}

.logo span {

    color: var(--primary);

}

/*==================================================
    NAVIGATION
====================================================*/

nav {

    display: flex;

    align-items: center;

    gap: 38px;

}

nav a {

    position: relative;

    font-weight: 600;

    color: var(--text-light);

    transition: var(--transition);

}

nav a:hover,

nav a.active {

    color: var(--primary);

}

nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 3px;

    border-radius: 20px;

    background: linear-gradient(90deg, var(--primary-light), var(--primary));

    transition: var(--transition);

}

nav a:hover::after,

nav a.active::after {

    width: 100%;

}

/*==================================================
    NAV RIGHT
====================================================*/

.nav-actions {

    display: flex;

    align-items: center;

    gap: 16px;

}

/*==================================================
    MOBILE BUTTON
====================================================*/

.menu-toggle {

    width: 52px;

    height: 52px;

    border: none;

    display: none;

    cursor: pointer;

    border-radius: 16px;

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.menu-toggle:hover {

    transform: translateY(-3px);

}

.menu-toggle i {

    font-size: 24px;

}

/*==================================================
    MOBILE MENU
====================================================*/

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 340px;

    max-width: 100%;

    height: 100vh;

    background: #fff;

    padding: 110px 35px;

    transition: .4s;

    box-shadow: -15px 0 40px rgba(0, 0, 0, .08);

    z-index: 10000;

}

.mobile-menu.active {

    right: 0;

}

.mobile-menu a {

    display: block;

    padding: 18px 0;

    font-size: 18px;

    font-weight: 700;

    color: var(--text);

    border-bottom: 1px solid var(--border);

    transition: .3s;

}

.mobile-menu a:hover {

    color: var(--primary);

    padding-left: 12px;

}

.mobile-close {

    position: absolute;

    top: 25px;

    right: 25px;

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 14px;

    background: #fff;

    cursor: pointer;

    box-shadow: var(--shadow-sm);

    font-size: 22px;

}

/*==================================================
    HEADER BUTTONS
====================================================*/

.header-btn {

    padding: 14px 24px;

    border-radius: 50px;

    font-size: .95rem;

    font-weight: 700;

}

/*==================================================
    RESPONSIVE
====================================================*/

@media(max-width:1100px) {

    nav {

        display: none;

    }

    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

    }

}

@media(max-width:768px) {

    header {

        top: 0;

    }

    .navbar {

        width: 100%;

        border-radius: 0;

        height: 76px;

        padding: 0 18px;

    }

    .logo {

        font-size: 1.2rem;

    }

    .logo img {

        width: 46px;

        height: 46px;

    }

    .nav-actions .btn {

        display: none;

    }

    .mobile-menu {

        width: 100%;

    }

}

/*==================================================
    HERO SECTION
====================================================*/

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 140px;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #fcfdff 100%);

}

/*==================================================
    HERO GRID
====================================================*/

.hero-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 90px;

    align-items: center;

}

/*==================================================
    HERO CONTENT
====================================================*/

.hero-content {

    position: relative;

    z-index: 5;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 24px;

    border-radius: 100px;

    background: #FFF8DD;

    color: var(--primary);

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 30px;

}

.hero-badge::before {

    content: "";

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #00C853;

    animation: pulse 2s infinite;

}

.hero-title {

    max-width: 720px;

}

.hero-title span {

    background: linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    -webkit-background-clip: text;

    color: transparent;

}

.hero-desc {

    margin-top: 30px;

    max-width: 620px;

    font-size: 1.1rem;

    line-height: 1.9;

}

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 45px;

    flex-wrap: wrap;

}

/*==================================================
    HERO STATS
====================================================*/

.hero-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 70px;

}

.hero-stat {

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 22px;

    padding: 28px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: var(--transition);

}

.hero-stat:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-gold);

}

.hero-stat h3 {

    font-size: 2rem;

    color: var(--primary);

}

.hero-stat p {

    margin-top: 8px;

    font-size: .95rem;

}

/*==================================================
    HERO IMAGE
====================================================*/

.hero-image {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}

.hero-image img {

    width: 470px;

    position: relative;

    z-index: 3;

    animation: coinFloat 6s ease-in-out infinite;

    filter:
        drop-shadow(0 40px 80px rgba(214, 166, 0, .25));

}

/*==================================================
    GLOW
====================================================*/

.hero-image::before {

    content: "";

    position: absolute;

    width: 560px;

    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 166, 0, .18),
            transparent 70%);

    filter: blur(50px);

}

/*==================================================
    ROTATING RINGS
====================================================*/

.hero-ring {

    position: absolute;

    border-radius: 50%;

    border: 2px dashed rgba(214, 166, 0, .18);

}

.hero-ring.one {

    width: 520px;

    height: 520px;

    animation: rotateRing 35s linear infinite;

}

.hero-ring.two {

    width: 620px;

    height: 620px;

    animation: rotateRingReverse 45s linear infinite;

}

@keyframes rotateRing {

    to {

        transform: rotate(360deg);

    }

}

@keyframes rotateRingReverse {

    to {

        transform: rotate(-360deg);

    }

}

/*==================================================
    FLOATING INFO CARDS
====================================================*/

.floating-card {

    position: absolute;

    background: #fff;

    border-radius: 20px;

    padding: 18px 22px;

    box-shadow: var(--shadow);

    animation: floatCard 4s ease-in-out infinite;

    z-index: 5;

}

.floating-card h4 {

    color: var(--primary);

    margin-bottom: 5px;

}

.floating-card p {

    font-size: .85rem;

}

.floating-card.one {

    top: 8%;

    left: -20px;

}

.floating-card.two {

    bottom: 15%;

    right: -10px;

    animation-delay: 2s;

}

@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-16px);

    }

}

/*==================================================
    FLOATING COIN
====================================================*/

@keyframes coinFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-24px);

    }

}

/*==================================================
    BACKGROUND SHAPES
====================================================*/

.hero-shape {

    position: absolute;

    border-radius: 50%;

    opacity: .25;

}

.hero-shape.one {

    width: 140px;

    height: 140px;

    top: 10%;

    left: 5%;

    background: #FFE27A;

    animation: shapeOne 10s ease-in-out infinite;

}

.hero-shape.two {

    width: 90px;

    height: 90px;

    right: 12%;

    top: 18%;

    background: #FFD54A;

    animation: shapeTwo 8s ease-in-out infinite;

}

.hero-shape.three {

    width: 180px;

    height: 180px;

    bottom: 10%;

    left: 18%;

    background: #FFF1B6;

    animation: shapeThree 12s ease-in-out infinite;

}

@keyframes shapeOne {

    50% {

        transform: translateY(-30px);

    }

}

@keyframes shapeTwo {

    50% {

        transform: translateX(-25px);

    }

}

@keyframes shapeThree {

    50% {

        transform: translateY(20px);

    }

}

/*==================================================
    SCROLL INDICATOR
====================================================*/

.scroll-down {

    position: absolute;

    left: 50%;

    bottom: 40px;

    transform: translateX(-50%);

}

.scroll-down span {

    display: block;

    width: 30px;

    height: 52px;

    border: 2px solid var(--primary);

    border-radius: 30px;

    position: relative;

}

.scroll-down span::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 10px;

    transform: translateX(-50%);

    width: 6px;

    height: 12px;

    border-radius: 20px;

    background: var(--primary);

    animation: scrollDown 2s infinite;

}

@keyframes scrollDown {

    0% {

        opacity: 0;

        transform: translate(-50%, 0);

    }

    50% {

        opacity: 1;

    }

    100% {

        opacity: 0;

        transform: translate(-50%, 18px);

    }

}

/*==================================================
    ABOUT SECTION
==================================================*/

.about {

    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #fbfcff 100%);

}

.about::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    top: -280px;

    right: -280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 166, 0, .08),
            transparent 70%);

    z-index: 0;

}

.about .container {

    position: relative;

    z-index: 2;

}

/*=========================================
GRID
=========================================*/

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}

/*=========================================
IMAGE
=========================================*/

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;

    border-radius: 30px;

    transition: .45s;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, .12);

}

.about-image:hover img {

    transform:
        scale(1.03) rotate(.5deg);

}

/* Gold Border */

.about-image::before {

    content: "";

    position: absolute;

    inset: -18px;

    border: 2px dashed rgba(214, 166, 0, .25);

    border-radius: 40px;

    animation: borderRotate 35s linear infinite;

}

@keyframes borderRotate {

    to {

        transform: rotate(360deg);

    }

}

/* Floating Experience Card */

.about-card {

    position: absolute;

    bottom: 40px;

    right: -30px;

    background: rgba(255, 255, 255, .9);

    backdrop-filter: blur(18px);

    border-radius: 24px;

    padding: 24px;

    min-width: 220px;

    box-shadow: var(--shadow-lg);

}

.about-card h2 {

    color: var(--primary);

    font-size: 42px;

}

.about-card span {

    color: var(--text-light);

}

/*=========================================
CONTENT
=========================================*/

.about-content h2 {

    margin-bottom: 25px;

}

.about-content p {

    margin-bottom: 25px;

    max-width: 620px;

}

/*=========================================
FEATURE LIST
=========================================*/

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 45px;

}

.about-item {

    display: flex;

    gap: 16px;

    align-items: flex-start;

    background: #fff;

    border-radius: 22px;

    padding: 20px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.about-item:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-gold);

}

.about-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    color: #111;

    font-size: 24px;

    flex-shrink: 0;

}

.about-item h4 {

    margin-bottom: 8px;

}

.about-item p {

    margin: 0;

    font-size: .95rem;

}

/*=========================================
HIGHLIGHT BOX
=========================================*/

.about-highlight {

    margin-top: 45px;

    padding: 30px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #FFFBE7,
            #FFFFFF);

    border: 1px solid rgba(214, 166, 0, .18);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}

.about-highlight h3 {

    color: var(--primary);

    margin-bottom: 8px;

}

.about-highlight .btn {

    flex-shrink: 0;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 70px;

    }

    .about-content {

        text-align: center;

    }

    .about-content p {

        margin-inline: auto;

    }

    .about-highlight {

        flex-direction: column;

        text-align: center;

    }

}

@media(max-width:768px) {

    .about {

        padding: 100px 0;

    }

    .about-features {

        grid-template-columns: 1fr;

    }

    .about-card {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 25px;

    }

    .about-highlight {

        padding: 25px;

    }

}

@media(max-width:576px) {

    .about-image::before {

        display: none;

    }

    .about-item {

        padding: 18px;

    }

    .about-icon {

        width: 50px;

        height: 50px;

        font-size: 20px;

    }

}

/*==================================================
    FEATURES SECTION
====================================================*/

.features {

    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8fbff 100%);

}

/*=========================================
BACKGROUND GLOW
=========================================*/

.features::before {

    content: "";

    position: absolute;

    left: -250px;

    bottom: -250px;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 166, 0, .08),
            transparent 70%);

}

.features::after {

    content: "";

    position: absolute;

    right: -200px;

    top: -200px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 213, 74, .08),
            transparent 70%);

}

.features .container {

    position: relative;

    z-index: 2;

}

/*=========================================
FEATURE GRID
=========================================*/

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(330px, 1fr));

    gap: 35px;

}

/*=========================================
FEATURE CARD
=========================================*/

.feature-card {

    position: relative;

    overflow: hidden;

    padding: 45px;

    border-radius: 32px;

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .8);

    box-shadow: var(--shadow);

    transition: all .4s ease;

}

.feature-card:hover {

    transform: translateY(-14px);

    box-shadow: var(--shadow-gold);

}

/*=========================================
TOP BORDER
=========================================*/

.feature-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg,
            var(--primary-light),
            var(--primary));

}

/*=========================================
SHINE EFFECT
=========================================*/

.feature-card::after {

    content: "";

    position: absolute;

    top: -120%;

    left: -80%;

    width: 140px;

    height: 320%;

    background: rgba(255, 255, 255, .28);

    transform: rotate(25deg);

}

.feature-card:hover::after {

    animation: featureShine .8s linear;

}

@keyframes featureShine {

    to {

        left: 160%;

    }

}

/*=========================================
ICON
=========================================*/

.feature-icon {

    width: 84px;

    height: 84px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    color: #111;

    font-size: 34px;

    margin-bottom: 28px;

    transition: .35s;

}

.feature-card:hover .feature-icon {

    transform:
        rotate(10deg) scale(1.08);

}

/*=========================================
TITLE
=========================================*/

.feature-card h3 {

    margin-bottom: 18px;

    font-size: 1.65rem;

}

/*=========================================
TEXT
=========================================*/

.feature-card p {

    line-height: 1.9;

    margin-bottom: 28px;

}

/*=========================================
FEATURE LIST
=========================================*/

.feature-list {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.feature-list li {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text-light);

    font-weight: 500;

}

.feature-list i {

    color: var(--primary);

    font-size: 18px;

}

/*=========================================
BUTTON
=========================================*/

.feature-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    color: var(--primary);

    font-weight: 700;

    transition: .3s;

}

.feature-btn i {

    transition: .35s;

}

.feature-card:hover .feature-btn {

    color: var(--primary-dark);

}

.feature-card:hover .feature-btn i {

    transform: translateX(8px);

}

/*=========================================
PREMIUM FEATURE CARD
=========================================*/

.feature-card.premium {

    background: linear-gradient(135deg,
            #fffdf6,
            #ffffff);

    border: 1px solid rgba(214, 166, 0, .18);

}

.feature-card.premium .feature-icon {

    box-shadow:

        0 15px 40px rgba(214, 166, 0, .30);

}

/*=========================================
FEATURE COUNTER
=========================================*/

.feature-number {

    position: absolute;

    top: 25px;

    right: 25px;

    font-size: 70px;

    font-weight: 900;

    color: rgba(214, 166, 0, .06);

    line-height: 1;

    user-select: none;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px) {

    .feature-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .features {

        padding: 100px 0;

    }

    .feature-grid {

        grid-template-columns: 1fr;

    }

    .feature-card {

        padding: 35px;

    }

    .feature-icon {

        width: 72px;

        height: 72px;

        font-size: 30px;

    }

    .feature-number {

        font-size: 52px;

    }

}

@media(max-width:576px) {

    .feature-card {

        padding: 30px;

        border-radius: 24px;

    }

    .feature-icon {

        width: 64px;

        height: 64px;

        font-size: 26px;

    }

    .feature-card h3 {

        font-size: 1.4rem;

    }

}

/*==================================================
    STATISTICS SECTION
====================================================*/

.stats {

    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #F8FAFC 0%,
            #FFFFFF 100%);

}

.stats::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    left: -260px;

    top: -260px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 166, 0, .08),
            transparent 70%);

}

.stats::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 213, 74, .08),
            transparent 70%);

}

.stats .container {

    position: relative;

    z-index: 2;

}

/*======================================
GRID
======================================*/

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

/*======================================
CARD
======================================*/

.stat-card {

    position: relative;

    overflow: hidden;

    padding: 40px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .8);

    box-shadow: var(--shadow);

    transition: .4s;

}

.stat-card:hover {

    transform: translateY(-12px);

    box-shadow: var(--shadow-gold);

}

/* Gold Top Border */

.stat-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background:
        linear-gradient(90deg,
            var(--primary-light),
            var(--primary));

}

/*======================================
ICON
======================================*/

.stat-icon {

    width: 80px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    color: #111;

    font-size: 32px;

    margin-bottom: 28px;

    transition: .35s;

}

.stat-card:hover .stat-icon {

    transform: rotate(10deg) scale(1.08);

}

/*======================================
NUMBER
======================================*/

.stat-number {

    font-size: 3rem;

    font-weight: 800;

    color: var(--primary);

    line-height: 1;

    margin-bottom: 12px;

}

.stat-title {

    font-size: 1rem;

    color: var(--text-light);

    font-weight: 600;

}

/*======================================
SMALL DESCRIPTION
======================================*/

.stat-desc {

    margin-top: 18px;

    font-size: .95rem;

    color: var(--text-light);

    line-height: 1.8;

}

/*======================================
HOVER GLOW
======================================*/

.stat-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(135deg,
            rgba(255, 255, 255, .12),
            transparent);

    opacity: 0;

    transition: .4s;

}

.stat-card:hover::after {

    opacity: 1;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1200px) {

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .stats {

        padding: 100px 0;

    }

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .stat-card {

        padding: 35px;

    }

    .stat-number {

        font-size: 2.5rem;

    }

    .stat-icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

}

/*==================================================
    TOKENOMICS SECTION
====================================================*/

.tokenomics {

    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background: #ffffff;

}

.tokenomics::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    right: -280px;

    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 166, 0, .08),
            transparent 72%);

}

.tokenomics .container {

    position: relative;

    z-index: 2;

}

/*=========================================
GRID
=========================================*/

.token-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}

/*=========================================
LEFT SIDE
=========================================*/

.token-left {

    position: relative;

}

/*=========================================
TOKEN CIRCLE
=========================================*/

.token-circle {

    position: relative;

    width: 460px;

    height: 460px;

    margin: auto;

    border-radius: 50%;

    background:
        conic-gradient(var(--primary) 0deg 90deg,

            #FFD54A 90deg 160deg,

            #FFE999 160deg 235deg,

            #F5C400 235deg 300deg,

            #F9E27D 300deg 360deg);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:

        0 40px 80px rgba(214, 166, 0, .18);

    animation: rotateToken 25s linear infinite;

}

@keyframes rotateToken {

    to {

        transform: rotate(360deg);

    }

}

.token-circle::before {

    content: "";

    position: absolute;

    width: 290px;

    height: 290px;

    border-radius: 50%;

    background: #fff;

    box-shadow: inset 0 0 40px rgba(0, 0, 0, .05);

}

.token-logo {

    position: absolute;

    width: 170px;

    z-index: 3;

}

/*=========================================
RIGHT SIDE
=========================================*/

.token-right {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

/*=========================================
TOKEN CARD
=========================================*/

.token-card {

    position: relative;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(18px);

    border-radius: 24px;

    padding: 28px;

    border: 1px solid rgba(255, 255, 255, .8);

    box-shadow: var(--shadow);

    transition: .35s;

    overflow: hidden;

}

.token-card:hover {

    transform: translateX(10px);

    box-shadow: var(--shadow-gold);

}

.token-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 6px;

    height: 100%;

    background: linear-gradient(var(--primary-light),

            var(--primary));

}

/*=========================================
HEADER
=========================================*/

.token-head {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 14px;

}

.token-head h3 {

    font-size: 1.25rem;

}

.token-percent {

    color: var(--primary);

    font-weight: 800;

    font-size: 1.2rem;

}

/*=========================================
PROGRESS BAR
=========================================*/

.progress {

    width: 100%;

    height: 12px;

    background: #EDF2F7;

    border-radius: 100px;

    overflow: hidden;

    margin: 18px 0;

}

.progress span {

    display: block;

    height: 100%;

    border-radius: 100px;

    background:

        linear-gradient(90deg,

            var(--primary-light),

            var(--primary));

    width: 0;

    animation: progressGrow 2s forwards;

}

@keyframes progressGrow {

    to {

        width: var(--width);

    }

}

.token-card p {

    color: var(--text-light);

    line-height: 1.8;

}

/*=========================================
TOKEN INFO BOXES
=========================================*/

.token-info {

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.info-box {

    text-align: center;

    background: #fff;

    padding: 30px;

    border-radius: 24px;

    box-shadow: var(--shadow);

    transition: .35s;

}

.info-box:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-gold);

}

.info-box h2 {

    color: var(--primary);

    margin-bottom: 10px;

}

.info-box span {

    color: var(--text-light);

    font-weight: 600;

}

/*=========================================
LEGEND
=========================================*/

.legend {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-top: 35px;

}

.legend-item {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    color: var(--text-light);

}

.legend-color {

    width: 18px;

    height: 18px;

    border-radius: 50%;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .token-grid {

        grid-template-columns: 1fr;

        gap: 80px;

    }

    .token-circle {

        width: 380px;

        height: 380px;

    }

    .token-circle::before {

        width: 240px;

        height: 240px;

    }

    .token-info {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .tokenomics {

        padding: 100px 0;

    }

    .token-circle {

        width: 300px;

        height: 300px;

    }

    .token-circle::before {

        width: 180px;

        height: 180px;

    }

    .token-logo {

        width: 120px;

    }

    .token-info {

        grid-template-columns: 1fr;

    }

    .legend {

        grid-template-columns: 1fr;

    }

}

@media(max-width:480px) {

    .token-circle {

        width: 260px;

        height: 260px;

    }

    .token-circle::before {

        width: 150px;

        height: 150px;

    }

    .token-card {

        padding: 22px;

    }

    .info-box {

        padding: 24px;

    }

}

/*==================================================
    ROADMAP SECTION
====================================================*/

.roadmap {

    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #FFFFFF 0%,
            #F8FAFC 100%);

}

.roadmap::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    left: -280px;

    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 166, 0, .08),
            transparent 72%);

}

.roadmap .container {

    position: relative;

    z-index: 2;

}

/*==================================
TIMELINE
==================================*/

.timeline {

    position: relative;

    max-width: 1200px;

    margin: auto;

    padding: 50px 0;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 4px;

    height: 100%;

    transform: translateX(-50%);

    border-radius: 100px;

    background:
        linear-gradient(var(--primary),

            var(--primary-light));

}

/*==================================
ITEM
==================================*/

.timeline-item {

    position: relative;

    width: 50%;

    padding: 0 70px;

    margin-bottom: 80px;

}

.timeline-item:nth-child(odd) {

    left: 0;

    text-align: right;

}

.timeline-item:nth-child(even) {

    left: 50%;

}

/*==================================
DOT
==================================*/

.timeline-item::before {

    content: "";

    position: absolute;

    top: 35px;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: var(--primary);

    border: 5px solid #fff;

    box-shadow:

        0 0 0 6px rgba(214, 166, 0, .15);

}

.timeline-item:nth-child(odd)::before {

    right: -11px;

}

.timeline-item:nth-child(even)::before {

    left: -11px;

}

/*==================================
CARD
==================================*/

.timeline-card {

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(18px);

    border-radius: 28px;

    padding: 35px;

    border: 1px solid rgba(255, 255, 255, .8);

    box-shadow: var(--shadow);

    transition: .35s;

}

.timeline-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-gold);

}

/* Quarter Badge */

.timeline-quarter {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 100px;

    background: #FFF5CC;

    color: var(--primary);

    font-size: .85rem;

    font-weight: 700;

    margin-bottom: 18px;

}

/* Title */

.timeline-card h3 {

    margin-bottom: 18px;

}

/* Text */

.timeline-card p {

    line-height: 1.9;

}

/* List */

.timeline-card ul {

    list-style: none;

    margin-top: 20px;

}

.timeline-card li {

    position: relative;

    padding-left: 28px;

    margin-bottom: 12px;

    color: var(--text-light);

}

.timeline-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--primary);

    font-weight: 700;

}

/*==================================
ANIMATION
==================================*/

.timeline-card {

    opacity: 0;

    transform: translateY(40px);

}

.timeline-card.show {

    opacity: 1;

    transform: translateY(0);

    transition: .8s ease;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px) {

    .timeline::before {

        left: 25px;

    }

    .timeline-item {

        width: 100%;

        left: 0 !important;

        padding-left: 70px;

        padding-right: 0;

        text-align: left !important;

    }

    .timeline-item::before {

        left: 14px !important;

    }

}

@media(max-width:768px) {

    .roadmap {

        padding: 100px 0;

    }

    .timeline-card {

        padding: 28px;

    }

    .timeline-item {

        margin-bottom: 50px;

    }

}