/* =========================================================
   FAROX YAR — PREMIUM LANDING PAGE
   style.css
========================================================= */

/* =========================================================
   FONTS
========================================================= */

@font-face {
    font-family: "Morabba";

    src:
        url("fonts/Morabba-Heavy.woff2")
        format("woff2");

    font-weight: 800 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Morabba";

    src:
        url("fonts/Morabba-Bold.woff2")
        format("woff2");

    font-weight: 500 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "YekanBakh";

    src:
        url("fonts/YekanBakh-Regular.woff")
        format("woff");

    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg: #050b08;
    --bg-soft: #08110c;
    --bg-card: rgba(12, 24, 18, 0.72);

    --green: #64ff27;
    --green-dark: #29b51b;
    --green-soft: rgba(100, 255, 39, 0.12);

    --gold: #f5c451;
    --white: #f5f8f4;
    --text: #dce5df;
    --muted: #8c9b91;

    --border: rgba(255, 255, 255, 0.09);
    --border-green: rgba(100, 255, 39, 0.25);

    --shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);

    --radius: 22px;
    --container: 1180px;

    --transition:
        0.3s cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(100,255,39,.08),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        "YekanBakh",
        Tahoma,
        Arial,
        sans-serif;

    line-height: 1.8;

    overflow-x: hidden;
}

body,
button,
input {
    font-family:
        "YekanBakh",
        Tahoma,
        Arial,
        sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* MEDIUM HEADINGS — Morabba Bold */

h3 {
    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-weight: 700;
}

::selection {
    background: var(--green);
    color: #061006;
}


/* CUSTOM SCROLLBAR */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #060d09;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;

    border: 2px solid #060d09;

    background:
        linear-gradient(
            180deg,
            #2c4a38,
            #17291e
        );
}

::-webkit-scrollbar-thumb:hover {
    background:
        var(--green-dark);
}

html {
    scrollbar-color:
        #2c4a38 #060d09;
    scrollbar-width: thin;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.background-effects {
    position: fixed;
    inset: 0;

    pointer-events: none;
    z-index: -1;

    overflow: hidden;
}

.grid-background {
    position: absolute;
    inset: 0;

    opacity: .16;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}

.bg-orb {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .08;

    animation:
        orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    top: -200px;
    right: -150px;

    background: var(--green);
}

.orb-2 {
    top: 35%;
    left: -280px;

    background: #00a878;

    animation-delay: -4s;
}

.orb-3 {
    bottom: -300px;
    right: 20%;

    background: var(--gold);

    animation-delay: -7s;
}

/* FLOATING GREEN PARTICLES */

.bg-particles {
    position: absolute;
    inset: 0;
}

.bg-particle {
    position: absolute;

    bottom: -3%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(160,255,120,.9),
            rgba(100,255,39,.25) 55%,
            transparent 75%
        );

    opacity: 0;

    transform:
        translate3d(0, 0, 0);

    animation:
        particleFloat
        var(--particle-duration, 14s)
        linear
        infinite;

    animation-delay:
        var(--particle-delay, 0s);

    will-change:
        transform,
        opacity;
}

@keyframes particleFloat {

    0% {
        transform:
            translate3d(0, 0, 0) scale(.75);

        opacity: 0;
    }

    12% {
        opacity:
            var(--particle-opacity, .45);
    }

    82% {
        opacity:
            var(--particle-opacity, .45);
    }

    100% {
        transform:
            translate3d(
                var(--particle-x, 30px),
                -105vh,
                0
            )
            scale(1.1);

        opacity: 0;
    }
}


/* =========================================================
   SPARK CURSOR CANVAS
========================================================= */

.spark-canvas {
    position: fixed;

    inset: 0;

    z-index: 500;

    pointer-events: none;
}

@media (hover: none),
(max-width: 760px) {

    .spark-canvas {
        display: none;
    }
}


/* =========================================================
   TRADING SUITE — PLUGIN CARDS
========================================================= */

.trading-hint {
    margin:
        -14px auto 26px;

    max-width: 760px;

    text-align: center;

    color: #6d7d73;

    font-size: 11px;

    letter-spacing: .3px;
}

.trading-card {
    cursor: pointer;
}

.trading-card:active {
    transform:
        translateX(-5px) scale(.985);
}

.card-more {
    margin-inline-start: auto;

    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 50%;

    color: var(--green);

    font-style: normal;

    font-size: 16px;

    line-height: 1;

    opacity: .55;

    transition:
        opacity var(--transition),
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.trading-card:hover .card-more {
    opacity: 1;

    border-color:
        rgba(100,255,39,.4);

    background:
        rgba(100,255,39,.08);

    transform:
        rotate(90deg);
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate3d(0,0,0) scale(1);
    }

    50% {
        transform: translate3d(20px,-30px,0) scale(1.08);
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    background:
        linear-gradient(
            180deg,
            rgba(10,20,14,.9),
            rgba(5,11,8,.85)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.35);
}

/* Hairline glow on top edge */

.site-header::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(100,255,39,.35),
            transparent
        );

    pointer-events: none;
}

.header-inner {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 26px;
}


/* LOGO */

.logo {
    display: flex;
    flex-direction: row;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    border:
        1px solid rgba(100,255,39,.28);

    background:
        linear-gradient(
            145deg,
            rgba(100,255,39,.16),
            rgba(100,255,39,.04)
        );

    color: var(--green);

    box-shadow:
        0 0 22px rgba(100,255,39,.14),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.logo:hover .logo-mark {
    transform:
        translateY(-2px) rotate(-4deg);

    box-shadow:
        0 8px 26px rgba(100,255,39,.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size: 23px;
    font-weight: 800;

    color: var(--white);

    line-height: 1.2;
}

.logo-main strong {
    color: var(--green);
}

.logo-sub {
    margin-top: 3px;

    color: #738279;

    font-size: 7px;
    letter-spacing: 1.5px;

    direction: ltr;
}


/* NAV — pill links */

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;

    margin-inline: auto;

    padding: 5px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 100px;

    background:
        rgba(255,255,255,.035);
}

.main-nav a {
    position: relative;

    padding: 8px 15px;

    border-radius: 100px;

    color: #aebbb2;

    font-size: 12.5px;

    transition:
        color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;

    right: 50%;
    bottom: 4px;

    width: 0;
    height: 2px;

    border-radius: 2px;

    background: var(--green);

    box-shadow:
        0 0 8px rgba(100,255,39,.6);

    transform:
        translateX(50%);

    transition:
        width var(--transition);
}

.main-nav a:hover {
    color: var(--white);

    background:
        rgba(100,255,39,.07);
}

.main-nav a:hover::after {
    width: 18px;
}

.main-nav a.active {
    color: var(--green);

    background:
        rgba(100,255,39,.09);

    box-shadow:
        inset 0 0 0 1px rgba(100,255,39,.18);
}

.main-nav a.active::after {
    width: 18px;
}


/* HEADER BUTTON */

.header-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border:
        1px solid rgba(100,255,39,.4);

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            rgba(100,255,39,.2),
            rgba(100,255,39,.05)
        );

    color: var(--green);

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 0 24px rgba(100,255,39,.1),
        inset 0 1px 0 rgba(255,255,255,.1);

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.header-button:hover {
    transform: translateY(-2px);

    color: #061006;

    background:
        linear-gradient(135deg, #7aff45, #40d51f);

    box-shadow:
        0 14px 34px rgba(100,255,39,.32);
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    position: relative;

    padding: 88px 0;
}

.eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    color: var(--green);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .4px;
}

/* Premium eyebrow chip */

.section-heading .eyebrow,
.hero .eyebrow {
    padding: 7px 14px;

    border:
        1px solid rgba(100,255,39,.18);

    border-radius: 100px;

    background:
        rgba(100,255,39,.05);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 4px 18px rgba(0,0,0,.2);
}

.pulse-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 5px rgba(100,255,39,.08),
        0 0 18px rgba(100,255,39,.6);

    animation:
        pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(100,255,39,.06),
            0 0 12px rgba(100,255,39,.4);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(100,255,39,.03),
            0 0 25px rgba(100,255,39,.7);
    }
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding-top: 105px;
    padding-bottom: 65px;

    min-height: 700px;

    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 70px;
}

.hero-content {
    position: relative;

    z-index: 2;
}

.hero h1 {
    max-width: 680px;

    margin-bottom: 25px;

    color: var(--white);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size:
        clamp(37px, 5vw, 67px);

    font-weight: 900;

    line-height: 1.35;

    letter-spacing: -1.5px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            var(--green),
            #b5ff92 50%,
            var(--green)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    background-size: 200% auto;

    animation:
        gradientMove 5s linear infinite;
}

@keyframes gradientMove {

    to {
        background-position: 200% center;
    }
}

.hero-description {
    max-width: 640px;

    color: var(--muted);

    font-size: 15px;

    line-height: 2.2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 49px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 12px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    position: relative;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.btn span {
    font-size: 17px;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            #7aff45,
            #40d51f
        );

    color: #061006;

    box-shadow:
        0 12px 30px rgba(100,255,39,.13);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(100,255,39,.23);
}

/* Shine sweep on primary buttons */

.btn-primary::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255,255,255,.4) 50%,
            transparent 65%
        );

    transform:
        translateX(-130%);

    transition:
        transform .7s ease;

    pointer-events: none;
}

.btn-primary:hover::after {
    transform:
        translateX(130%);
}

.btn-outline {
    border:
        1px solid rgba(255,255,255,.13);

    background:
        rgba(255,255,255,.025);

    color: var(--white);
}

.btn-outline:hover {
    transform: translateY(-3px);

    border-color:
        rgba(100,255,39,.35);

    background:
        rgba(100,255,39,.06);

    color: var(--green);
}

.btn-wide {
    width: 100%;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    display: flex;

    gap: 0;

    margin-top: 42px;
}

.stat-item {
    min-width: 125px;

    padding-inline: 20px;

    border-left:
        1px solid rgba(255,255,255,.08);
}

.stat-item:first-child {
    padding-right: 0;
}

.stat-item:last-child {
    border-left: 0;
}

.stat-item strong {
    display: block;

    color: var(--white);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size: 20px;
    font-weight: 800;
}

.stat-item span {
    color: #77857b;

    font-size: 10px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    perspective: 1000px;
}

.hero-browser {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 20px;

    background:
        rgba(10,20,15,.9);

    box-shadow:
        0 35px 100px rgba(0,0,0,.55),
        0 0 60px rgba(100,255,39,.06);

    transform:
        perspective(1200px)
        rotateY(-3deg)
        rotateX(2deg);

    transition:
        transform .6s ease;
}

.hero-browser:hover {
    transform:
        perspective(1200px)
        rotateY(0)
        rotateX(0)
        translateY(-5px);
}

.browser-bar {
    height: 38px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 0 14px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.025);

    color: #7f8e84;

    font-size: 9px;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots i {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.2);
}

.browser-image {
    position: relative;

    overflow: hidden;

    background: #07100b;
}

.browser-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255,255,255,.07),
            transparent 45%
        );

    transform:
        translateX(-100%);

    animation:
        screenShine 5s infinite;
}

@keyframes screenShine {

    0% {
        transform: translateX(-100%);
    }

    40%,
    100% {
        transform: translateX(130%);
    }
}

/* Ambient glow under hero browser */

.hero-visual::after {
    content: "";

    position: absolute;

    left: 12%;
    right: 12%;
    bottom: -14px;

    height: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(100,255,39,.2),
            transparent 70%
        );

    filter: blur(26px);

    z-index: -1;

    animation:
        glowBreath 5s ease-in-out infinite;

    pointer-events: none;
}

@keyframes glowBreath {

    0%,
    100% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }
}

.browser-image img {
    width: 100%;

    object-fit: cover;
}

/* FULL SITE AUTO-SCROLL PREVIEW (HOVER) */
.browser-preview-scroll {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .5s ease;
}

.hero-browser:hover .browser-preview-scroll.preview-ready {
    opacity: 1;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 13px;

    background:
        rgba(9,18,13,.82);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.3);

    animation:
        floating 5s ease-in-out infinite;

    z-index: 5;
}

.floating-card small {
    display: block;

    color: #718077;

    font-size: 8px;
}

.floating-card strong {
    display: block;

    color: var(--white);

    font-size: 11px;
}

.floating-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(100,255,39,.1);

    color: var(--green);

    font-size: 16px;
}

.floating-card-one {
    top: 18%;
    left: -35px;
}

.floating-card-two {
    bottom: 12%;
    right: -35px;

    animation-delay: -2.5s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* LIVE PRICE BARS */

.live-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    gap: 3px;

    width: 32px;
    height: 32px;

    padding: 7px 6px;

    border-radius: 9px;

    background:
        rgba(100,255,39,.1);

    box-shadow:
        inset 0 0 0 1px rgba(100,255,39,.08);
}

.live-bars i {
    width: 3.5px;

    height: 100%;

    border-radius: 2px;

    background:
        linear-gradient(
            to top,
            var(--green-dark),
            var(--green)
        );

    transform-origin: bottom;

    animation:
        barJump 1.3s ease-in-out infinite;
}

.live-bars i:nth-child(1) {
    animation-delay: 0s;
}

.live-bars i:nth-child(2) {
    animation-delay: .18s;
}

.live-bars i:nth-child(3) {
    animation-delay: .36s;
}

.live-bars i:nth-child(4) {
    animation-delay: .54s;
}

@keyframes barJump {

    0%,
    100% {
        transform: scaleY(.45);
        opacity: .7;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}


/* LIVE CANDLESTICK ICON */

.mini-candles {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    gap: 3px;

    width: 32px;
    height: 32px;

    padding: 6px 5px;

    border-radius: 9px;

    background:
        rgba(100,255,39,.1);

    box-shadow:
        inset 0 0 0 1px rgba(100,255,39,.08);
}

.mini-candles i {
    position: relative;

    width: 4px;

    border-radius: 2px;

    background:
        linear-gradient(
            to top,
            var(--green-dark),
            var(--green)
        );

    transform-origin: bottom;

    animation:
        candleJump 1.6s ease-in-out infinite;
}

.mini-candles i::before,
.mini-candles i::after {
    content: "";

    position: absolute;
    left: 50%;

    transform:
        translateX(-50%);

    width: 1px;

    background:
        rgba(100,255,39,.5);
}

.mini-candles i::before {
    top: -4px;

    height: 6px;
}

.mini-candles i::after {
    bottom: -4px;

    height: 6px;
}

.mini-candles i:nth-child(1) {
    height: 42%;

    animation-delay: 0s;
}

.mini-candles i:nth-child(2) {
    height: 72%;

    animation-delay: .2s;
}

.mini-candles i:nth-child(3) {
    height: 55%;

    animation-delay: .4s;
}

.mini-candles i:nth-child(4) {
    height: 88%;

    animation-delay: .6s;
}

@keyframes candleJump {

    0%,
    100% {
        transform: scaleY(.62);
    }

    50% {
        transform: scaleY(1.08);
    }
}


/* =========================================================
   TICKER
========================================================= */

.feature-ticker {
    position: relative;

    border-top:
        1px solid rgba(255,255,255,.06);

    border-bottom:
        1px solid rgba(255,255,255,.06);

    background:
        rgba(255,255,255,.018);

    overflow: hidden;
}

.feature-ticker::before,
.feature-ticker::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 90px;

    z-index: 2;

    pointer-events: none;
}

.feature-ticker::before {
    right: 0;

    background:
        linear-gradient(
            to left,
            var(--bg),
            transparent
        );
}

.feature-ticker::after {
    left: 0;

    background:
        linear-gradient(
            to right,
            var(--bg),
            transparent
        );
}

.ticker-inner {
    min-height: 58px;

    display: flex;
    align-items: center;

    overflow: hidden;

    direction: ltr;
}

.ticker-track {
    display: flex;
    flex-shrink: 0;

    animation:
        tickerScroll 32s linear infinite;

    will-change: transform;
}

.feature-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-group {
    display: flex;
    align-items: center;

    gap: 62px;

    padding-inline-end: 62px;

    flex-shrink: 0;
}

.ticker-group span {
    white-space: nowrap;

    color: #84938a;

    font-size: 11px;

    letter-spacing: .3px;

    transition:
        color var(--transition);
}

.ticker-group span::first-letter {
    color: var(--green);
}

.ticker-group span:hover {
    color: var(--white);
}

@keyframes tickerScroll {
    to {
        transform: translateX(-33.3333%);
    }
}


/* =========================================================
   TWO COLUMN
========================================================= */

.two-column {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: start;
}

.intro-section h2,
.section-heading h2 {
    color: var(--white);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.5;

    font-weight: 900;
}

.gradient-text {
    color: var(--green);
}

.intro-text {
    color: var(--muted);

    font-size: 14px;
    line-height: 2.25;
}

.intro-text p + p {
    margin-top: 15px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 50px;

    margin-bottom: 42px;
}

.section-heading > p {
    max-width: 430px;

    color: var(--muted);

    font-size: 13px;

    line-height: 2;
}

.section-heading.centered {
    display: block;

    max-width: 760px;

    margin:
        0 auto 45px;

    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.centered > p {
    max-width: 650px;

    margin:
        18px auto 0;
}


/* Features heading — text below title */

.features-heading {
    display: block;

    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

.features-heading .eyebrow {
    justify-content: center;
}

.features-heading > p {
    max-width: 560px;

    margin: 15px auto 0;
}


/* =========================================================
   FEATURES
======================================================== */

.features-section {
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(100,255,39,.015),
            transparent
        );
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.feature-card {
    min-height: 245px;

    padding: 26px 22px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.feature-card:hover {
    transform:
        translateY(-7px);

    border-color:
        var(--border-green);

    background:
        linear-gradient(
            145deg,
            rgba(100,255,39,.08),
            rgba(255,255,255,.015)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 13px;

    background:
        rgba(100,255,39,.08);

    color: var(--green);

    box-shadow:
        inset 0 0 0 1px rgba(100,255,39,.08);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.feature-icon svg {
    width: 22px;
    height: 22px;

    display: block;
}

.feature-card:hover .feature-icon {
    transform:
        translateY(-4px) scale(1.06);

    background:
        rgba(100,255,39,.16);

    box-shadow:
        inset 0 0 0 1px rgba(100,255,39,.2),
        0 0 25px rgba(100,255,39,.25);
}

.feature-card h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 15px;
}

.feature-card p {
    color: #7f8d84;

    font-size: 11px;

    line-height: 2;
}


/* =========================================================
   TRADING SUITE
========================================================= */

.trading-section {
    padding-top: 70px;
}

.trading-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.trading-card {
    display: flex;
    align-items: center;

    gap: 18px;

    min-height: 92px;

    padding: 17px 20px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        rgba(255,255,255,.018);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.trading-card:hover {
    transform:
        translateX(-5px);

    border-color:
        rgba(100,255,39,.25);

    background:
        rgba(100,255,39,.035);

    box-shadow:
        0 18px 45px rgba(0,0,0,.25);
}

.trading-card > span {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        rgba(100,255,39,.07);

    font-size: 16px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.trading-card:hover > span {
    transform:
        rotate(-8deg) scale(1.1);

    box-shadow:
        0 0 22px rgba(100,255,39,.3);
}

.trading-card h3 {
    color: var(--white);

    font-size: 13px;
}

.trading-card p {
    margin-top: 3px;

    color: #718078;

    font-size: 10px;
}


/* =========================================================
   SHOWCASE
======================================================== */

.showcase-heading {
    display: block;

    max-width: 860px;

    margin: 0 auto 45px;

    text-align: center;
}

.showcase-heading .eyebrow {
    justify-content: center;
}

.showcase-heading > p {
    max-width: 560px;

    margin: 15px auto 0;
}

.showcase-grid {
    position: relative;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    padding: 18px;

    border:
        1px solid rgba(100,255,39,.16);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(100,255,39,.07),
            transparent 55%
        ),
        linear-gradient(
            165deg,
            rgba(12,24,18,.75),
            rgba(6,13,9,.9)
        );

    box-shadow:
        0 30px 90px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.06);
}

/* CORNER ORNAMENTS */

.showcase-grid::before,
.showcase-grid::after {
    content: "";

    position: absolute;

    width: 34px;
    height: 34px;

    pointer-events: none;
}

.showcase-grid::before {
    top: -1px;
    right: -1px;

    border-top:
        2px solid var(--green);

    border-right:
        2px solid var(--green);

    border-top-right-radius: 28px;

    filter:
        drop-shadow(0 0 8px rgba(100,255,39,.45));
}

.showcase-grid::after {
    bottom: -1px;
    left: -1px;

    border-bottom:
        2px solid var(--green);

    border-left:
        2px solid var(--green);

    border-bottom-left-radius: 28px;

    filter:
        drop-shadow(0 0 8px rgba(100,255,39,.45));
}

.showcase-card {
    position: relative;

    overflow: hidden;

    min-height: 420px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 20px;

    background: #09110d;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.showcase-card::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    border-radius: inherit;

    padding: 1px;

    background: linear-gradient(
        145deg,
        rgba(100,255,39,.35),
        transparent 35%,
        transparent 70%,
        rgba(255,255,255,.12)
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}

.showcase-card:hover {
    transform:
        translateY(-7px);

    border-color:
        var(--border-green);

    box-shadow:
        0 30px 70px rgba(0,0,0,.4),
        0 0 45px rgba(100,255,39,.09);
}

/* EQUAL HEIGHT — all three same height */

.showcase-large {
    grid-row: auto;

    min-height: 420px;
}

.showcase-card::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            transparent 45%
        );
}

.showcase-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.showcase-card:hover img {
    transform:
        scale(1.045);
}

.showcase-label {
    position: absolute;

    right: 20px;
    bottom: 18px;

    z-index: 3;
}

.showcase-label small {
    display: block;

    color: var(--green);

    font-size: 8px;

    letter-spacing: 1px;

    direction: ltr;
    text-align: right;
}

.showcase-label strong {
    display: block;

    margin-top: 4px;

    color: white;

    font-size: 13px;

    font-weight: 700;
}

/* EXPAND HINT */

.showcase-expand {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 3;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(100,255,39,.3);

    border-radius: 10px;

    background:
        rgba(6,13,9,.65);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: var(--green);

    font-size: 15px;

    opacity: 0;

    transform:
        translateY(-6px);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.showcase-card:hover .showcase-expand {
    opacity: 1;

    transform:
        translateY(0);
}

/* SHOWCASE NUMBER BADGE */

.showcase-label small::before {
    content: "";

    display: inline-block;

    width: 5px;
    height: 5px;

    margin-left: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 8px rgba(100,255,39,.8);

    vertical-align: middle;
}


/* =========================================================
   DEMO
========================================================= */

.demo-section {
    padding-top: 55px;
}

.demo-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    overflow: hidden;

    border:
        1px solid rgba(100,255,39,.18);

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(100,255,39,.1),
            transparent 35%
        ),
        rgba(255,255,255,.018);
}

.demo-box::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -70px;
    bottom: -100px;

    border-radius: 50%;

    border:
        1px solid rgba(100,255,39,.18);

    box-shadow:
        0 0 0 30px rgba(100,255,39,.025),
        0 0 0 60px rgba(100,255,39,.012);

    animation:
        orbFloat 10s ease-in-out infinite;
}

.demo-box h2 {
    max-width: 650px;

    color: var(--white);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size:
        clamp(27px, 3.5vw, 43px);

    line-height: 1.55;
}

.demo-box p {
    max-width: 650px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-section {
    padding-top: 95px;
}

.plans {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    align-items: stretch;
}

.plan-card {
    position: relative;

    padding: 38px 34px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 24px;

    background:
        linear-gradient(
            150deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 20px 70px rgba(0,0,0,.2);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.plan-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(100,255,39,.28);

    box-shadow:
        0 30px 85px rgba(0,0,0,.32),
        0 0 45px rgba(100,255,39,.07);
}

.plan-exclusive {
    border-color:
        rgba(100,255,39,.28);

    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(100,255,39,.08),
            transparent 38%
        ),
        linear-gradient(
            150deg,
            rgba(100,255,39,.035),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 30px 90px rgba(100,255,39,.06);
}

.plan-label {
    color: #718077;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    direction: ltr;
}

.plan-price {
    margin-top: 13px;

    color: var(--white);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size: 46px;
    font-weight: 900;

    direction: ltr;
    text-align: right;
}

.plan-card h3 {
    margin-top: 5px;

    color: var(--green);

    font-size: 19px;
}

.plan-description {
    min-height: 65px;

    margin-top: 13px;

    color: var(--muted);

    font-size: 12px;

    line-height: 2;
}

.plan-card ul {
    list-style: none;

    margin: 25px 0 30px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.07);
}

.plan-card li {
    position: relative;

    margin-bottom: 12px;

    padding-right: 5px;

    color: #aab7ae;

    font-size: 11px;
}

.plan-card li::first-letter {
    color: var(--green);
}

.exclusive-badge {
    position: absolute;

    top: 20px;
    right: 20px;
    left: auto;

    padding: 6px 10px;

    border:
        1px solid rgba(245,196,81,.3);

    border-radius: 8px;

    background:
        rgba(245,196,81,.07);

    color: var(--gold);

    font-size: 8px;

    animation:
        badgePulse 2.6s ease-in-out infinite;
}

/* Cost note under plan buttons */

.plan-cost-note {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 12px;

    padding: 11px 13px;

    border:
        1px solid rgba(255,99,72,.35);

    border-inline-start:
        3px solid #ff6348;

    border-radius: 10px;

    background:
        linear-gradient(
            165deg,
            rgba(255,99,72,.09),
            rgba(255,99,72,.03)
        );

    color: #ffb3a6;

    font-size: 10px;

    line-height: 1.95;
}

.plan-cost-note::before {
    content: "⚠";

    flex-shrink: 0;

    color: #ff6348;

    font-size: 13px;

    line-height: 1.5;

    filter:
        drop-shadow(0 0 6px rgba(255,99,72,.5));
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(245,196,81,.2);
    }

    50% {
        box-shadow:
            0 0 18px 2px rgba(245,196,81,.3);
    }
}


/* EXCLUSIVE WARNING */

/* Premium exclusive warning — rotating gold glows */

.exclusive-warning {
    position: relative;

    margin-top: 22px;

    padding: 30px 32px;

    border:
        1px solid rgba(245,196,81,.35);

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(245,196,81,.1),
            transparent 42%
        ),
        linear-gradient(
            165deg,
            rgba(35,28,12,.55),
            rgba(15,12,5,.65)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        0 0 45px rgba(245,196,81,.07);
}

/* GOLD BORDER BEAM — two glow orbs riding
   the border path (top→right→bottom→left),
   always 180° apart, no jumps at corners. */

.exclusive-warning::before,
.exclusive-warning::after {
    content: "";

    position: absolute;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.95),
            rgba(255,231,160,.8) 30%,
            rgba(245,196,81,.45) 60%,
            transparent 78%
        );

    box-shadow:
        0 0 14px 4px rgba(245,196,81,.55),
        0 0 34px 12px rgba(245,196,81,.22);

    transform:
        translate(-50%, -50%);

    pointer-events: none;

    z-index: 3;

    animation:
        borderPath 9s linear infinite;
}

.exclusive-warning::after {
    animation-delay:
        -4.5s;
}

@keyframes borderPath {

    0% {
        left: 0;
        top: 0;
    }

    25% {
        left: 100%;
        top: 0;
    }

    50% {
        left: 100%;
        top: 100%;
    }

    75% {
        left: 0;
        top: 100%;
    }

    100% {
        left: 0;
        top: 0;
    }
}

.exclusive-warning > * {
    position: relative;

    z-index: 3;
}

.exclusive-warning strong {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--gold);

    font-size: 15px;

    text-shadow:
        0 0 22px rgba(245,196,81,.45);
}

.exclusive-warning strong::before {
    content: "★";

    font-size: 17px;

    animation:
        starPulse 2.2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(245,196,81,.5);
    }

    50% {
        text-shadow:
            0 0 24px rgba(245,196,81,.95),
            0 0 44px rgba(245,196,81,.4);
    }
}

.exclusive-warning .warning-lead {
    margin-top: 14px;

    color: var(--gold);

    font-size: 15px;

    font-weight: 700;

    line-height: 2;
}

.exclusive-warning .warning-strong {
    color: #f3ede0;

    font-size: 12px;

    line-height: 2.2;
}

.exclusive-warning p {
    margin-top: 10px;

    color: #a89f88;

    font-size: 11px;

    line-height: 2.1;
}

.exclusive-warning p b {
    color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {

    .exclusive-warning::before {
        animation: none;

        opacity: .5;
    }

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding-top: 72px;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.process-item {
    position: relative;

    padding: 25px 22px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 17px;

    background:
        rgba(255,255,255,.015);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.process-item:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(100,255,39,.25);

    background:
        rgba(100,255,39,.03);
}

.process-item > span {
    color: var(--green);

    font-size: 10px;

    direction: ltr;

    opacity: .7;

    transition:
        opacity var(--transition),
        text-shadow var(--transition);
}

.process-item:hover > span {
    opacity: 1;

    text-shadow:
        0 0 14px rgba(100,255,39,.6);
}

.process-item h3 {
    margin-top: 12px;

    color: var(--white);

    font-size: 14px;
}

.process-item p {
    margin-top: 6px;

    color: #75837a;

    font-size: 10px;

    line-height: 1.9;
}


/* =========================================================
   FAQ
========================================================= */

.faq-container {
    max-width: 850px;
}

.faq-item {
    margin-bottom: 10px;

    padding: 0 22px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        rgba(255,255,255,.015);

    transition:
        border-color var(--transition),
        background var(--transition);
}

.faq-item[open] {
    border-color:
        rgba(100,255,39,.2);

    background:
        rgba(100,255,39,.025);
}

.faq-item summary {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 67px;

    padding-left: 25px;

    cursor: pointer;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;

    list-style: none;

    transition:
        color var(--transition);
}

.faq-item summary:hover {
    color: var(--green);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";

    position: absolute;

    left: 0;

    color: var(--green);

    font-size: 19px;

    transition:
        transform var(--transition);
}

.faq-item[open] summary::before {
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 750px;

    padding:
        0 0 22px;

    color: #87948b;

    font-size: 11px;

    line-height: 2;
}

.faq-item[open] p {
    animation:
        faqReveal .45s ease;
}

@keyframes faqReveal {

    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-section {
    padding-top: 55px;
    padding-bottom: 80px;
}

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 75px 40px;

    border:
        1px solid rgba(100,255,39,.2);

    border-radius: 30px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(100,255,39,.09),
            transparent 55%
        ),
        rgba(255,255,255,.015);
}

.final-cta::before,
.final-cta::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border:
        1px solid rgba(100,255,39,.12);

    border-radius: 50%;
}

.final-cta::before {
    top: -130px;
    right: -90px;

    animation:
        orbFloat 13s ease-in-out infinite;
}

.final-cta::after {
    bottom: -150px;
    left: -80px;

    animation:
        orbFloat 17s ease-in-out infinite reverse;
}

.final-cta .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    position: relative;

    z-index: 1;

    max-width: 800px;

    margin-inline: auto;

    color: var(--white);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size:
        clamp(29px, 4vw, 50px);

    line-height: 1.65;
}

.final-cta h2 span {
    display: block;

    color: var(--green);
}

.final-cta > p {
    position: relative;

    z-index: 1;

    max-width: 650px;

    margin: 15px auto 0;

    color: var(--muted);

    font-size: 13px;
}

.final-cta .hero-actions {
    position: relative;

    z-index: 2;

    justify-content: center;
}

.contact-info {
    position: relative;

    z-index: 2;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

    color: #718077;

    font-size: 10px;
}

.contact-info a {
    color: var(--green);

    transition:
        opacity var(--transition);
}

.contact-info a:hover {
    opacity: .7;
}


/* =========================================================
   ADMIN CONTROL CENTER
========================================================= */

.admin-section {
    padding-top: 60px;
}

.admin-panel {
    max-width: 980px;

    margin: 0 auto;

    border:
        1px solid rgba(100,255,39,.16);

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            170deg,
            rgba(10,20,14,.92),
            rgba(6,13,9,.96)
        );

    box-shadow:
        0 30px 90px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.admin-panel-head {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px 22px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.025);

    direction: ltr;
}

.admin-panel-dots {
    display: flex;

    gap: 6px;
}

.admin-panel-dots i {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.14);
}

.admin-panel-dots i:first-child {
    background:
        var(--green);

    box-shadow:
        0 0 10px rgba(100,255,39,.7);
}

.admin-panel-title {
    color: #93a29a;

    font-size: 10px;

    letter-spacing: 2px;
}

.admin-panel-status {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-inline-start: auto;

    padding: 5px 11px;

    border:
        1px solid rgba(100,255,39,.25);

    border-radius: 100px;

    background:
        rgba(100,255,39,.06);

    color: var(--green);

    font-size: 9px;

    letter-spacing: 1px;
}

.admin-status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(100,255,39,.9);

    animation:
        pulse 2s infinite;
}

.admin-grid {
    list-style: none;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 0;

    padding: 10px;
}

.admin-item {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    border-radius: 13px;

    color: #b9c6bd;

    font-size: 12px;

    line-height: 1.9;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.admin-item:hover {
    background:
        rgba(100,255,39,.05);

    color: var(--white);

    transform:
        translateX(-4px);
}

.admin-check {
    flex-shrink: 0;

    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    border:
        1px solid rgba(100,255,39,.22);

    background:
        rgba(100,255,39,.07);

    color: var(--green);

    font-size: 11px;

    box-shadow:
        0 0 12px rgba(100,255,39,.08);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding-top: 70px;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    align-items: stretch;
}

.contact-card,
.contact-form-card {
    display: flex;

    flex-direction: column;

    padding: 34px 30px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 24px;

    background:
        linear-gradient(
            155deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 24px 70px rgba(0,0,0,.25);
}

.contact-card {
    position: relative;

    overflow: hidden;
}

.contact-card::before {
    content: "";

    position: absolute;

    top: -80px;
    left: -80px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(100,255,39,.12),
            transparent 70%
        );

    pointer-events: none;
}

.contact-badge {
    display: inline-block;

    padding: 6px 12px;

    border:
        1px solid rgba(100,255,39,.25);

    border-radius: 8px;

    background:
        rgba(100,255,39,.06);

    color: var(--green);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    direction: ltr;
}

.contact-card h3,
.contact-form-card h3 {
    margin-top: 16px;

    color: var(--white);

    font-size: 21px;
}

.contact-card > p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

    line-height: 2.1;
}

.contact-rows {
    margin-top: 24px;

    display: grid;

    gap: 10px;
}

.contact-row {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 13px 16px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background:
        rgba(255,255,255,.02);

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.contact-row:hover {
    border-color:
        rgba(100,255,39,.3);

    background:
        rgba(100,255,39,.05);

    transform:
        translateX(-5px);
}

.contact-ico {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    border:
        1px solid rgba(100,255,39,.18);

    background:
        rgba(100,255,39,.07);

    color: var(--green);

    transition:
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.contact-row:hover .contact-ico {
    background:
        rgba(100,255,39,.14);

    box-shadow:
        0 0 20px rgba(100,255,39,.22);

    transform:
        scale(1.06);
}

.contact-row-text {
    min-width: 0;

    flex: 1;
}

.contact-row-text small {
    display: block;

    color: #718077;

    font-size: 9px;
}

.contact-row-text strong {
    display: block;

    margin-top: 2px;

    color: var(--white);

    font-size: 14px;

    text-align: left;

    direction: ltr;

    overflow-wrap: anywhere;
}

.contact-row em {
    color: var(--green);

    font-style: normal;

    opacity: 0;

    transition:
        opacity var(--transition);
}

.contact-row:hover em {
    opacity: 1;
}

.contact-note {
    display: block;

    margin-top: 20px;

    color: #64726a;

    font-size: 10px;
}

.contact-form-card > p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;

    line-height: 2;
}

.contact-form-card label {
    display: block;

    margin-top: 16px;

    color: #9aa69f;

    font-size: 11px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;

    margin-top: 7px;

    padding: 12px 14px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 12px;

    outline: none;

    background:
        rgba(255,255,255,.03);

    color: white;

    font-family:
        "YekanBakh", Tahoma, Arial, sans-serif;

    font-size: 12px;

    resize: vertical;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #536159;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color:
        rgba(100,255,39,.4);

    box-shadow:
        0 0 0 3px rgba(100,255,39,.06);
}

.contact-form-card .btn {
    margin-top: auto;
}

.contact-form-card .form-result {
    margin-top: 12px;
}

.contact-form-card label:first-of-type {
    margin-top: 22px;
}


/* =========================================================
   FOOTER — SHAPE PANELS (glass + SVG frames)
========================================================= */

.site-footer {
    position: relative;

    margin-top: 40px;

    padding-bottom: 10px;

    overflow: hidden;
}

.footer-shapes {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 150px 1fr;

    gap: 20px;

    align-items: stretch;
}

.footer-panel {
    position: relative;

    display: flex;

    flex-direction: column;

    gap: 22px;

    padding: 2.4rem 3.2rem;

    padding-bottom: 3.4rem;

    background-size: contain;

    background-position: center center;

    background-repeat: no-repeat;
}

.footer-panel-right {
    background-image:
        url("assets/footer/f-theme.svg");
}

.footer-panel-left {
    background-image:
        url("assets/footer/footer-bg-left-theme.svg");
}

.footer-panel-divider {
    display: flex;

    gap: 26px;

    padding-bottom: 1.5rem;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}

.footer-panel-left .footer-panel-divider {
    gap: 14px;
}

.footer-col-main {
    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-col-main h4 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;
}

.footer-col-main > a {
    margin-bottom: 3px;

    color: #8b998f;

    font-size: 12px;

    line-height: 2;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-col-main > a:hover {
    color: var(--green);

    transform:
        translateX(-4px);
}

.footer-desc {
    color: #8b998f;

    font-size: 11px;

    line-height: 2.2;
}

.footer-socials {
    display: flex;

    gap: 12px;
}

.footer-social {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 12px;

    background:
        rgba(255,255,255,.04);

    color: #aab7ae;

    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.footer-social:hover {
    color: #061006;

    border-color:
        var(--green);

    background:
        var(--green);

    transform:
        translateY(-4px);

    box-shadow:
        0 10px 26px rgba(100,255,39,.3);
}

/* CENTER DECOR BOX */

.footer-divider-box {
    position: relative;

    z-index: 2;

    border:
        1px solid rgba(100,255,39,.22);

    border-radius: 16px;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(100,255,39,.08),
            transparent 70%
        );

    min-height: 220px;

    align-self: center;

    width: 100%;

    height: 88%;

    pointer-events: none;
}

.footer-divider-box::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        url("assets/footer/footer-image-back-min.png")
        center center / contain
        no-repeat;

    filter:
        hue-rotate(189deg)
        saturate(1.05)
        brightness(.92);

    opacity: .9;
}

.footer-figure {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: auto;

    height: auto;

    max-width: none;

    opacity: .95;
}

.footer-panel {
    z-index: 1;
}

/* BRAND IN RIGHT PANEL */

.footer-logo {
    margin-bottom: 16px;
}

.footer-panel-right .footer-panel-divider {
    margin-top: auto;
}

.footer-panel-right .footer-panel-bottom {
    margin-bottom: auto;
}

.footer-desc {
    color: #8b998f;

    font-size: 11px;

    line-height: 2.2;
}

.footer-panel-bottom {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 6px;
}

.footer-panel-bottom h4 {
    color: #aab7ae;

    font-size: 12px;

    font-weight: 700;
}

.footer-copy {
    color: #8fa093;

    font-size: 10px;
}

/* LEFT PANEL — TWO COLUMNS */

.footer-panel-left {
    padding-top: 3.4rem;
}

.footer-panel-left .footer-panel-divider {
    border-bottom: 0;

    padding-bottom: 0;
}

.footer-contact-title {
    margin-top: 24px;
}

.footer-panel-left .footer-socials {
    margin-top: 24px;
}

.footer-socials {
    display: flex;

    gap: 8px;
}


/* =========================================================
   WHITE THEME SHOWCASE
========================================================= */

.white-theme-section {
    padding-top: 55px;
}

.white-theme-box {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 1.15fr;

    gap: 44px;

    align-items: center;

    padding: 42px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(255,255,255,.06),
            transparent 45%
        ),
        linear-gradient(
            170deg,
            rgba(18,26,22,.85),
            rgba(6,13,9,.92)
        );

    box-shadow:
        0 30px 90px rgba(0,0,0,.4);
}

.white-theme-text h2 {
    color: var(--white);

    font-size:
        clamp(26px, 3vw, 38px);

    line-height: 1.6;
}

.white-theme-text > p {
    margin-top: 14px;

    color: var(--muted);

    font-size: 12px;

    line-height: 2.15;

    max-width: 420px;
}

.white-theme-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    padding: 7px 13px;

    border:
        1px solid rgba(245,196,81,.3);

    border-radius: 100px;

    background:
        rgba(245,196,81,.06);

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;
}

.badge-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 10px rgba(245,196,81,.8);

    animation:
        pulse 2s infinite;
}

.white-theme-note {
    margin-top: 12px;

    color: #8b998f;

    font-size: 11px;

    line-height: 2.05;

    max-width: 420px;
}

.white-theme-note b {
    color: var(--gold);
}

.white-theme-features {
    list-style: none;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px 18px;

    margin: 18px 0 0;

    padding: 16px 18px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 14px;

    background:
        rgba(255,255,255,.03);
}

.white-theme-features li {
    position: relative;

    padding-right: 18px;

    color: #b3c0b7;

    font-size: 11px;

    line-height: 1.9;
}

.white-theme-features li::before {
    content: "";

    position: absolute;

    right: 0;

    top: 9px;

    width: 6px;
    height: 6px;

    border-radius: 2px;

    background:
        var(--green);

    box-shadow:
        0 0 8px rgba(100,255,39,.5);

    transform:
        rotate(45deg);
}

.white-theme-text .btn {
    margin-top: 22px;
}

.white-theme-visual {
    perspective: 1200px;
}

.white-theme-frame {
    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 16px;

    overflow: hidden;

    background:
        #0d1410;

    box-shadow:
        0 30px 80px rgba(0,0,0,.5),
        0 0 50px rgba(255,255,255,.03);

    transform:
        perspective(1200px)
        rotateY(3deg)
        rotateX(1.5deg);

    transition:
        transform .6s ease;
}

.white-theme-frame:hover {
    transform:
        perspective(1200px)
        rotateY(0)
        rotateX(0);
}

.white-theme-bar {
    height: 34px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 0 14px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.04);

    color: #8b998f;

    font-size: 10px;

    direction: ltr;
}

.white-theme-screen {
    position: relative;

    overflow: hidden;

    background:
        #f4f6f2;
}

.white-theme-screen img {
    width: 100%;

    display: block;
}

.white-theme-scroll {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .45s ease;
}

.white-theme-screen:hover .white-theme-scroll.preview-ready {
    opacity: 1;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
    padding-top: 70px;
}

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.sample-card {
    position: relative;

    display: flex;

    flex-direction: column;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 18px;

    overflow: hidden;

    background:
        linear-gradient(
            165deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.01)
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.sample-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(100,255,39,.35);

    box-shadow:
        0 30px 70px rgba(0,0,0,.42),
        0 0 40px rgba(100,255,39,.08);
}

.sample-screen {
    position: relative;

    height: 235px;

    overflow: hidden;

    background:
        #07100b;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.sample-preview {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position:
        top center;

    display: block;
}

.sample-full {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .45s ease;
}

.sample-card:hover .sample-full.preview-ready {
    opacity: 1;
}

.sample-meta {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 15px 17px;
}

.sample-title strong {
    display: block;

    color: var(--white);

    font-size: 12px;

    text-align: left;

    direction: ltr;

    overflow-wrap: anywhere;
}

.sample-title small {
    display: block;

    margin-top: 3px;

    color: #718077;

    font-size: 9px;
}

.sample-link {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 14px;

    border:
        1px solid rgba(100,255,39,.3);

    border-radius: 100px;

    background:
        rgba(100,255,39,.06);

    color: var(--green);

    font-size: 10px;

    transition:
        color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.sample-link em {
    font-style: normal;

    font-size: 12px;

    transition:
        transform var(--transition);
}

.sample-link:hover {
    color: #061006;

    background:
        var(--green);

    box-shadow:
        0 8px 24px rgba(100,255,39,.3);

    transform:
        translateY(-2px);
}

.sample-link:hover em {
    transform:
        translate(-2px, -2px);
}


/* =========================================================
   STANDARD LICENSE MODAL
========================================================= */

.license-modal {
    position: fixed;

    inset: 0;

    z-index: 1150;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 22px;
}

.license-modal.active {
    display: flex;
}

.license-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.82);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.license-content {
    position: relative;

    z-index: 2;

    width: min(100%, 640px);

    height: min(86vh, 780px);

    display: flex;

    flex-direction: column;

    border:
        1px solid rgba(100,255,39,.2);

    border-radius: 22px;

    overflow: hidden;

    background:
        linear-gradient(
            165deg,
            #0c1811,
            #060d09
        );

    box-shadow:
        0 40px 120px rgba(0,0,0,.75),
        0 0 60px rgba(100,255,39,.06);

    animation:
        modalIn .3s ease;
}

.license-close {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 3;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 10px;

    background:
        rgba(255,255,255,.04);

    color: #8c9991;

    cursor: pointer;

    font-size: 19px;

    line-height: 1;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.license-close:hover {
    color: white;

    background:
        rgba(255,255,255,.09);

    transform:
        rotate(90deg);
}

.license-head {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px 24px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    background:
        radial-gradient(
            circle at 90% -30%,
            rgba(100,255,39,.12),
            transparent 55%
        );
}

.license-ico {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(100,255,39,.09);

    box-shadow:
        inset 0 0 0 1px rgba(100,255,39,.22),
        0 0 24px rgba(100,255,39,.12);

    font-size: 22px;
}

.license-title {
    display: block;

    color: var(--white);

    font-size: 14px;

    font-weight: 800;

    line-height: 1.7;
}

.license-sub {
    display: block;

    margin-top: 4px;

    color: var(--green);

    font-size: 10px;
}

.license-body {
    flex: 1;

    overflow-y: auto;

    padding: 22px 24px 30px;

    color: #a9b6ad;

    font-size: 11.5px;

    line-height: 2.1;

    scrollbar-width: thin;
}

.license-body::-webkit-scrollbar {
    width: 8px;
}

.license-body::-webkit-scrollbar-thumb {
    border-radius: 6px;

    background:
        #2c4a38;
}

.license-lead {
    color: #ccd8cf;
}

.license-warning {
    margin-top: 14px;

    padding: 11px 14px;

    border:
        1px solid rgba(255,99,72,.3);

    border-inline-start:
        3px solid #ff6348;

    border-radius: 10px;

    background:
        rgba(255,99,72,.06);

    color: #ffb3a6;
}

.license-body h4 {
    margin: 22px 0 8px;

    color: var(--green);

    font-size: 13px;
}

.license-body p {
    margin-bottom: 10px;
}

.license-body code {
    padding: 1px 7px;

    border-radius: 5px;

    background:
        rgba(100,255,39,.08);

    color: var(--green);

    font-size: 10px;

    direction: ltr;

    display: inline-block;
}

.license-body ul {
    margin: 4px 0 12px;

    padding: 0;

    list-style: none;
}

.license-body li {
    position: relative;

    padding-right: 16px;

    margin-bottom: 5px;
}

.license-body li::before {
    content: "";

    position: absolute;

    right: 0;

    top: 12px;

    width: 5px;
    height: 5px;

    border-radius: 2px;

    background:
        var(--green);

    transform:
        rotate(45deg);
}

.license-table {
    width: 100%;

    margin-top: 6px;

    border-collapse: collapse;

    font-size: 10.5px;
}

.license-table th {
    padding: 9px 12px;

    border-bottom:
        2px solid rgba(100,255,39,.3);

    background:
        rgba(100,255,39,.06);

    color: var(--green);

    font-size: 10px;

    text-align: right;
}

.license-table td {
    padding: 8px 12px;

    border-bottom:
        1px solid rgba(255,255,255,.06);
}

.license-table tr:hover td {
    background:
        rgba(100,255,39,.03);
}

.license-table td.no {
    color: #ff8a7a;
}

.license-table td.yes {
    color: var(--green);
}

/* License button on plan card */

.plan-license-btn {
    display: flex;

    align-items: center;

    gap: 10px;

    width: 100%;

    margin-top: 12px;

    margin-bottom: 16px;

    padding: 11px 14px;

    border:
        1px dashed rgba(100,255,39,.3);

    border-radius: 11px;

    background:
        rgba(100,255,39,.03);

    color: #b3c0b7;

    cursor: pointer;

    font-size: 10.5px;

    line-height: 1.8;

    text-align: right;

    transition:
        border-color var(--transition),
        background var(--transition),
        color var(--transition);
}

.plan-license-btn:hover {
    border-color:
        rgba(100,255,39,.5);

    border-style: solid;

    background:
        rgba(100,255,39,.06);

    color: var(--white);
}

.license-btn-ico {
    flex-shrink: 0;

    font-size: 16px;
}

/* Exclusive variant — gold */

.plan-license-btn-exclusive {
    border-color:
        rgba(245,196,81,.35);

    background:
        rgba(245,196,81,.04);

    color: #d8c39a;
}

.plan-license-btn-exclusive:hover {
    border-color:
        rgba(245,196,81,.6);

    background:
        rgba(245,196,81,.08);

    color: var(--white);
}

.license-modal-exclusive .license-content {
    border-color:
        rgba(245,196,81,.28);

    box-shadow:
        0 40px 120px rgba(0,0,0,.75),
        0 0 60px rgba(245,196,81,.07);
}

.license-ico-exclusive {
    background:
        rgba(245,196,81,.09);

    box-shadow:
        inset 0 0 0 1px rgba(245,196,81,.25),
        0 0 24px rgba(245,196,81,.12);
}

.license-sub-gold {
    color: var(--gold);
}

.license-modal-exclusive .license-body h4 {
    color: var(--gold);
}

.license-modal-exclusive .license-body li::before {
    background:
        var(--gold);
}

.license-modal-exclusive .license-body code {
    background:
        rgba(245,196,81,.08);

    color: var(--gold);
}

.license-highlight {
    padding: 11px 14px;

    border:
        1px solid rgba(100,255,39,.22);

    border-radius: 10px;

    background:
        rgba(100,255,39,.05);

    color: #ccd8cf;
}

.license-modal-exclusive .license-highlight {
    border-color:
        rgba(245,196,81,.25);

    background:
        rgba(245,196,81,.05);
}

.license-modal-exclusive .license-body::-webkit-scrollbar-thumb {
    background:
        #4a3d20;
}


/* =========================================================
   PURCHASE MODAL
========================================================= */

.purchase-modal {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.purchase-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.78);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;

    z-index: 2;

    width: min(
        100%,
        550px
    );

    max-height:
        calc(100vh - 40px);

    overflow-y: auto;

    padding: 35px;

    border:
        1px solid rgba(100,255,39,.18);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            #0c1711,
            #07100b
        );

    box-shadow:
        0 40px 120px rgba(0,0,0,.7);

    animation:
        modalIn .3s ease;
}

@keyframes modalIn {

    from {
        opacity: 0;
        transform:
            translateY(20px)
            scale(.97);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

.modal-close {
    position: absolute;

    top: 16px;
    left: 16px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 9px;

    background:
        rgba(255,255,255,.03);

    color: #8c9991;

    cursor: pointer;

    font-size: 20px;

    transition:
        color var(--transition),
        background var(--transition);
}

.modal-close:hover {
    color: white;

    background:
        rgba(255,255,255,.08);
}

.modal-content h2 {
    color: var(--white);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size: 24px;
    font-weight: 900;
}

.modal-price {
    margin-top: 5px;

    color: var(--green);

    font-family: "Morabba", Tahoma, Arial, sans-serif;

    font-size: 32px;
    font-weight: 900;

    direction: ltr;
    text-align: right;
}

#modalDescription {
    margin-top: 10px;

    color: #7f8c83;

    font-size: 11px;

    line-height: 2;
}


/* WALLETS */

.wallet-box {
    margin-top: 22px;

    padding: 14px;
}

.wallet-item {
    padding: 13px 14px;

    border:
        1px solid rgba(100,255,39,.16);

    border-radius: 13px;

    background:
        rgba(100,255,39,.045);
}

.wallet-item + .wallet-item {
    margin-top: 12px;
}

.wallet-head {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 9px;
}

.wallet-network {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--white);

    font-size: 11px;

    font-weight: 700;
}

.wallet-network em {
    font-style: normal;

    padding: 2px 8px;

    border:
        1px solid rgba(100,255,39,.25);

    border-radius: 6px;

    background:
        rgba(100,255,39,.08);

    color: var(--green);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .5px;

    direction: ltr;
}

.wallet-address {
    display: block;

    width: 100%;

    padding: 8px 11px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 9px;

    background:
        rgba(0,0,0,.28);

    color: #d4ded7;

    font-size: 10.5px;

    direction: ltr;
    text-align: left;

    overflow-wrap: anywhere;
}

.copy-wallet {
    flex-shrink: 0;

    padding: 7px 14px;

    border:
        1px solid rgba(100,255,39,.28);

    border-radius: 8px;

    background:
        rgba(100,255,39,.07);

    color: var(--green);

    cursor: pointer;

    font-size: 10px;

    transition:
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.copy-wallet:hover {
    background:
        rgba(100,255,39,.14);

    box-shadow:
        0 0 16px rgba(100,255,39,.2);
}

.copy-wallet.copied {
    color: #061006;

    border-color:
        var(--green);

    background:
        var(--green);
}


/* FORM */

#orderForm {
    margin-top: 22px;
}

#orderForm label {
    display: block;

    margin-bottom: 14px;

    color: #9aa69f;

    font-size: 10px;
}

#orderForm input {
    width: 100%;

    height: 45px;

    margin-top: 7px;

    padding: 0 13px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 10px;

    outline: none;

    background:
        rgba(255,255,255,.035);

    color: white;

    font-size: 11px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

#orderForm input::placeholder {
    color: #536159;
}

#orderForm input:focus {
    border-color:
        rgba(100,255,39,.4);

    box-shadow:
        0 0 0 3px rgba(100,255,39,.06);
}

.form-result {
    min-height: 0;

    margin-top: 15px;

    color: var(--green);

    font-size: 10px;

    text-align: center;
}

.modal-note {
    display: block;

    margin-top: 18px;

    color: #58665e;

    font-size: 8px;

    line-height: 1.9;

    text-align: center;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   SCROLL PROGRESS + SCROLL TO TOP
========================================================= */

.scroll-progress {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 700;

    height: 3px;
    width: 0;

    background:
        linear-gradient(
            90deg,
            var(--green-dark),
            var(--green),
            #b5ff92
        );

    box-shadow:
        0 0 14px rgba(100,255,39,.55);

    transition:
        width .12s linear;
}

.scroll-top {
    position: fixed;

    bottom: 26px;
    right: 26px;

    z-index: 600;

    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border-green);

    border-radius: 14px;

    background:
        rgba(8,16,11,.82);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    color: var(--green);

    cursor: pointer;

    box-shadow:
        0 14px 34px rgba(0,0,0,.4),
        0 0 24px rgba(100,255,39,.12);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(16px);

    transition:
        opacity var(--transition),
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        visibility var(--transition);
}

.scroll-top::before {
    content: "";

    position: absolute;
    inset: -1px;

    border-radius: inherit;

    border:
        1px solid rgba(100,255,39,.4);

    opacity: 0;

    animation:
        topPulse 2.4s ease-out infinite;

    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

.scroll-top:hover {
    transform:
        translateY(-4px);

    background:
        rgba(100,255,39,.14);

    box-shadow:
        0 18px 44px rgba(0,0,0,.5),
        0 0 34px rgba(100,255,39,.28);
}

@keyframes topPulse {

    0% {
        opacity: .65;
        transform: scale(1);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}


/* =========================================================
   IMAGE LIGHTBOX
========================================================= */

.showcase-card {
    cursor: pointer;
}


/* =========================================================
   PLUGIN INFO MODAL
========================================================= */

.plugin-modal {
    position: fixed;

    inset: 0;

    z-index: 1200;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 22px;
}

.plugin-modal.active {
    display: flex;
}

.plugin-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.8);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.plugin-content {
    position: relative;

    z-index: 2;

    width: min(100%, 600px);

    max-height:
        calc(100vh - 44px);

    overflow-y: auto;

    border:
        1px solid rgba(100,255,39,.22);

    border-radius: 22px;

    background:
        linear-gradient(
            165deg,
            #0c1811,
            #060d09
        );

    box-shadow:
        0 40px 120px rgba(0,0,0,.7),
        0 0 60px rgba(100,255,39,.06);

    animation:
        modalIn .3s ease;
}

.plugin-close {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 3;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 10px;

    background:
        rgba(255,255,255,.04);

    color: #8c9991;

    cursor: pointer;

    font-size: 19px;

    line-height: 1;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.plugin-close:hover {
    color: white;

    background:
        rgba(255,255,255,.09);

    transform:
        rotate(90deg);
}

.plugin-head {
    display: flex;
    align-items: center;

    gap: 16px;

    padding:
        24px 24px 20px;

    padding-inline-end: 62px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    background:
        radial-gradient(
            circle at 90% -30%,
            rgba(100,255,39,.13),
            transparent 55%
        );

    direction: rtl;

    text-align: right;
}

.plugin-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background:
        rgba(100,255,39,.09);

    box-shadow:
        inset 0 0 0 1px rgba(100,255,39,.22),
        0 0 28px rgba(100,255,39,.14);

    font-size: 27px;
}

.plugin-name {
    display: block;

    color: var(--white);

    font-size: 17px;

    font-weight: 800;
}

.plugin-tagline {
    display: block;

    margin-top: 4px;

    color: #8f9c93;

    font-size: 11px;
}

.plugin-body {
    padding: 22px 24px 26px;
}

.plugin-intro {
    padding: 13px 16px;

    border:
        1px solid rgba(100,255,39,.14);

    border-inline-start:
        3px solid var(--green);

    border-radius: 12px;

    background:
        rgba(100,255,39,.045);

    color: #ccd8cf;

    font-size: 12px;

    line-height: 2.15;
}

.plugin-body h4 {
    margin: 20px 0 12px;

    color: var(--white);

    font-size: 13px;
}

.plugin-points {
    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px 18px;

    padding: 0;

    margin: 0;
}

.plugin-points li {
    position: relative;

    padding-right: 19px;

    color: #a9b6ad;

    font-size: 11px;

    line-height: 1.95;
}

.plugin-points li::before {
    content: "✓";

    position: absolute;

    right: 0;

    top: 0;

    color: var(--green);
}

.plugin-outro {
    margin-top: 20px;

    padding-top: 16px;

    border-top:
        1px dashed rgba(255,255,255,.1);

    color: #8f9c93;

    font-size: 11px;

    line-height: 2.1;
}

@media (max-width: 760px) {

    .plugin-points {
        grid-template-columns: 1fr;
    }

    .plugin-head {
        padding: 20px 18px 16px;

        padding-inline-end: 56px;

        gap: 13px;
    }

    .plugin-icon {
        width: 50px;
        height: 50px;

        font-size: 23px;
    }

    .plugin-body {
        padding: 18px 18px 22px;
    }

    .plugin-name {
        font-size: 15px;
    }

}


/* CUSTOM CURSOR */

.cursor-dot {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 2000;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--green);

    box-shadow:
        0 0 12px rgba(100,255,39,.9),
        0 0 30px rgba(100,255,39,.4);

    pointer-events: none;

    will-change:
        transform;
}

.cursor-ring {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1999;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    border:
        1.5px solid rgba(100,255,39,.4);

    pointer-events: none;

    will-change:
        transform;

    transition:
        width .25s ease,
        height .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.cursor-ring.hover {
    width: 52px;
    height: 52px;

    border-color:
        rgba(100,255,39,.85);

    background:
        rgba(100,255,39,.05);
}

html.cursor-active,
html.cursor-active * {
    cursor: none !important;
}

@media (hover: none),
(max-width: 760px) {

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

}

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 1100;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(2,6,4,.9);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    animation:
        fadeIn .3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 3;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: var(--white);

    cursor: pointer;

    font-size: 24px;

    line-height: 1;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.lightbox-close:hover {
    color: var(--green);

    background:
        rgba(100,255,39,.12);

    transform:
        rotate(90deg);
}

.lightbox-body {
    position: relative;

    z-index: 2;

    max-width:
        min(1100px, 100%);

    margin: 0;

    animation:
        lightboxIn .35s cubic-bezier(.2,.8,.2,1);
}

@keyframes lightboxIn {

    from {
        opacity: 0;
        transform:
            translateY(24px) scale(.96);
    }

    to {
        opacity: 1;
        transform:
            translateY(0) scale(1);
    }
}

.lightbox-body img {
    width: 100%;

    max-height:
        calc(100vh - 140px);

    object-fit: contain;

    border:
        1px solid rgba(100,255,39,.22);

    border-radius: 16px;

    background:
        #07100b;

    box-shadow:
        0 40px 120px rgba(0,0,0,.75),
        0 0 70px rgba(100,255,39,.08);
}

.lightbox-body figcaption {
    margin-top: 14px;

    color: #9aa69f;

    font-size: 11px;

    text-align: center;
}


/* =========================================================
   VISIT COUNTER (discreet)
========================================================= */

.visit-counter {
    position: fixed;

    bottom: 6px;
    left: 8px;

    z-index: 5;

    color: rgba(255,255,255,.16);

    font-size: 9px;

    letter-spacing: 1px;

    direction: ltr;

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline:
        2px solid var(--green);

    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .bg-particle {
        display: none;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 2px;
    }

    .main-nav a {
        padding: 7px 10px;

        font-size: 11.5px;
    }

    .hero-grid {
        gap: 45px;
    }

    .footer-shapes {
        grid-template-columns: 1fr 1fr;
    }

    .footer-divider-box {
        display: none;
    }

    .footer-panel {
        padding: 2rem 2.4rem;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;

        padding: 14px;

        border-radius: 24px;
    }

    .showcase-large {
        grid-column: span 2;
        grid-row: auto;

        min-height: 380px;
    }

    .showcase-card {
        min-height: 380px;
    }

    .showcase-expand {
        opacity: 1;

        transform: none;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .admin-item {
        font-size: 11px;
    }


    /* WHITE THEME + PORTFOLIO */

    .white-theme-box {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px 22px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .sample-screen {
        height: 180px;
    }

    .sample-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .section {
        padding: 58px 0;
    }


    /* HEADER */

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: 68px;

        gap: 12px;
    }

    .main-nav {
        display: none;
    }

    .header-button {
        padding: 8px 13px;

        font-size: 10px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;

        border-radius: 10px;
    }

    .logo-mark svg {
        width: 16px;
        height: 16px;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-main {
        font-size: 19px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-top: 65px;
        padding-bottom: 55px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero h1 {
        font-size:
            clamp(34px, 10vw, 47px);

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 13px;

        line-height: 2.15;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;

        min-width: 145px;
    }

    .hero-stats {
        justify-content: space-between;

        margin-top: 32px;
    }

    .stat-item {
        min-width: 0;

        flex: 1;

        padding-inline: 12px;

        text-align: center;
    }

    .stat-item:first-child {
        padding-right: 0;
    }

    .stat-item strong {
        font-size: 17px;
    }

    .stat-item span {
        font-size: 9px;
    }


    /* HERO IMAGE */

    .hero-browser {
        transform: none;
    }

    .floating-card {
        padding: 9px 11px;
    }

    .floating-card-one {
        left: -5px;
        top: 10%;
    }

    .floating-card-two {
        right: -5px;
        bottom: 8%;
    }

    .floating-icon {
        width: 27px;
        height: 27px;

        font-size: 13px;
    }

    .floating-card small {
        font-size: 7px;
    }

    .floating-card strong {
        font-size: 9px;
    }


    /* TICKER */

    .ticker-group {
        gap: 40px;

        padding-inline-end: 40px;
    }


    /* TWO COLUMN */

    .two-column {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* SECTION HEADING */

    .section-heading {
        display: block;

        margin-bottom: 35px;
    }

    .section-heading > p {
        margin-top: 18px;
    }


    /* FEATURES */

    .feature-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 10px;
    }

    .feature-card {
        min-height: 215px;

        padding: 19px 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;

        margin-bottom: 18px;

        font-size: 17px;
    }

    .feature-card h3 {
        font-size: 12px;
    }

    .feature-card p {
        font-size: 9px;

        line-height: 1.9;
    }


    /* TRADING */

    .trading-grid {
        grid-template-columns: 1fr;
    }

    .trading-card {
        min-height: 82px;
    }


    /* SHOWCASE */

    .showcase-grid {
        grid-template-columns: 1fr;

        padding: 10px;

        border-radius: 20px;
    }

    .showcase-large {
        grid-column: auto;

        min-height: 330px;
    }

    .showcase-card {
        min-height: 260px;
    }


    /* ADMIN + CONTACT */

    .admin-grid {
        grid-template-columns: 1fr;

        padding: 8px;
    }

    .admin-item {
        padding: 12px 13px;

        font-size: 11px;
    }

    .admin-panel-head {
        flex-wrap: wrap;

        gap: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .contact-form-card {
        padding: 26px 20px;
    }


    /* WHITE THEME + PORTFOLIO */

    .white-theme-box {
        padding: 26px 18px;
    }

    .white-theme-text > p,
    .white-theme-note {
        max-width: none;
    }

    .white-theme-features {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .sample-screen {
        height: 200px;
    }

    .white-theme-frame {
        transform: none;
    }

    .white-theme-features {
        gap: 6px 14px;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 16px;
    }

    .lightbox-close {
        top: 12px;
        left: 12px;

        width: 38px;
        height: 38px;

        font-size: 20px;
    }

    .lightbox-body img {
        max-height:
            calc(100vh - 110px);

        border-radius: 12px;
    }


    /* DEMO */

    .demo-box {
        display: block;

        padding: 35px 25px;
    }

    .demo-box .btn {
        margin-top: 25px;
    }


    /* PRICING */

    .plans {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 30px 23px;
    }

    .plan-price {
        font-size: 39px;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* FINAL CTA */

    .final-cta {
        padding: 55px 20px;
    }

    .final-cta h2 {
        font-size: 29px;
    }

    .final-cta .hero-actions {
        flex-direction: column;
    }

    .final-cta .btn {
        width: 100%;
    }
    /* FOOTER */

    .footer-shapes {
        grid-template-columns: 1fr;
    }

    .footer-panel {
        padding: 2.4rem 1.6rem;

        background-size: cover;
    }

    .footer-divider-box {
        display: block;

        width: 100%;

        height: 110px;

        min-height: 0;

        order: 3;
    }

    .footer-figure {
        width: 260px;

        height: auto;
    }

    .footer-panel-divider {
        flex-direction: column;

        gap: 20px;
    }
    .footer-col-main {
        align-items: center;

        text-align: center;
    }

    .footer-socials {
        justify-content: center;

        max-width: none;
    }

    .footer-panel {
        padding-bottom: 2.4rem;
    }

    .footer-panel-bottom {
        align-items: center;

        text-align: center;

        margin-top: 6px;

        margin-bottom: 0;
    }

    .footer-logo {
        align-items: center;

        margin-top: 0;
    }

    .footer-panel-left {
        padding-top: 2.4rem;
    }

    .footer-copy {
        text-align: center;
    }


    /* MODAL */

    .modal-content {
        padding: 28px 20px;

        border-radius: 18px;
    }

    .modal-price {
        font-size: 28px;
    }

    .wallet-box {
        padding: 10px;
    }

    .wallet-item {
        padding: 11px 12px;
    }

    .wallet-head {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .copy-wallet {
        width: 100%;
    }


    /* SCROLL TOP */

    .scroll-top {
        bottom: 18px;
        right: 18px;

        width: 43px;
        height: 43px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;

        padding: 22px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 5px;
    }

    .stat-item {
        padding-inline: 7px;
    }

    .stat-item strong {
        font-size: 15px;
    }

    .stat-item span {
        font-size: 8px;
    }

    .floating-card {
        display: none;
    }

}


/* =========================================================
   PRINT
========================================================= */

@media print {

    .site-header,
    .background-effects,
    .floating-card,
    .purchase-modal,
    .scroll-top,
    .scroll-progress,
    .lightbox {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

}