*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================
   Premium Page Loader
   ============================================================ */
.cs-loader{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    isolation: isolate;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
body.loaded .cs-loader{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* Lock body scroll only on pages that actually have the loader */
body:has(.cs-loader):not(.loaded){
    overflow: hidden;
}

/* ----- Background layers ----- */
.cs-loader-bg{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 35%, rgba(0, 215, 87, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(230, 57, 70, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #050505 0%, #000000 50%, #050505 100%);
}
.cs-loader-bg .cs-orb{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}
.cs-orb-1{
    width: 480px; height: 480px;
    top: -120px; left: -120px;
    background: radial-gradient(circle, #00D757 0%, transparent 70%);
    opacity: 0.45;
    animation: cs-orb-drift-1 8s ease-in-out infinite alternate;
}
.cs-orb-2{
    width: 420px; height: 420px;
    top: 20%; right: -140px;
    background: radial-gradient(circle, #1DEC6E 0%, transparent 70%);
    opacity: 0.32;
    animation: cs-orb-drift-2 10s ease-in-out infinite alternate;
}
.cs-orb-3{
    width: 380px; height: 380px;
    bottom: -120px; left: 30%;
    background: radial-gradient(circle, #E63946 0%, transparent 70%);
    opacity: 0.22;
    animation: cs-orb-drift-3 12s ease-in-out infinite alternate;
}
@keyframes cs-orb-drift-1{
    0%   { transform: translate(0, 0)        scale(1); }
    100% { transform: translate(60px, 50px)  scale(1.12); }
}
@keyframes cs-orb-drift-2{
    0%   { transform: translate(0, 0)         scale(1); }
    100% { transform: translate(-70px, -30px) scale(0.92); }
}
@keyframes cs-orb-drift-3{
    0%   { transform: translate(0, 0)         scale(1); }
    100% { transform: translate(80px, -60px)  scale(1.08); }
}
.cs-loader-grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 215, 87, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 215, 87, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 85%);
    opacity: 0.65;
}

/* ----- Stage (centered content) ----- */
.cs-loader-stage{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    padding: 1.5rem 2rem;
    max-width: 92vw;
}

/* ----- Logo mark with rotating rings ----- */
.cs-mark-wrap{
    position: relative;
    width: clamp(140px, 18vw, 220px);
    height: clamp(140px, 18vw, 220px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-mark{
    width: 78%;
    height: 78%;
    object-fit: contain;
    border-radius: 22%;
    filter: drop-shadow(0 0 24px rgba(0, 215, 87, 0.35));
    opacity: 0;
    transform: scale(0.85);
    animation: cs-mark-in 0.9s cubic-bezier(.2,.85,.25,1) 0.15s forwards,
               cs-mark-breathe 3.5s ease-in-out 1.1s infinite;
}
@keyframes cs-mark-in{
    to { opacity: 1; transform: scale(1); }
}
@keyframes cs-mark-breathe{
    0%, 100% { filter: drop-shadow(0 0 24px rgba(0, 215, 87, 0.35)); transform: scale(1); }
    50%      { filter: drop-shadow(0 0 36px rgba(0, 215, 87, 0.65)); transform: scale(1.025); }
}

.cs-ring{
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}
.cs-ring-outer{
    border: 1.5px dashed rgba(0, 215, 87, 0.55);
    animation: cs-spin-cw 12s linear infinite;
    box-shadow: 0 0 24px rgba(0, 215, 87, 0.15) inset;
}
.cs-ring-inner{
    inset: 14px;
    border: 1px dashed rgba(29, 236, 110, 0.4);
    animation: cs-spin-ccw 9s linear infinite;
}
.cs-ring-glow{
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid transparent;
    background:
        conic-gradient(from var(--ldr-ang, 0deg),
            transparent 0deg,
            #1DEC6E 60deg,
            transparent 120deg,
            transparent 240deg,
            #00D757 300deg,
            transparent 360deg);
    -webkit-mask: radial-gradient(circle, transparent 60%, black 62%, black 70%, transparent 72%);
            mask: radial-gradient(circle, transparent 60%, black 62%, black 70%, transparent 72%);
    filter: blur(1px);
    animation: cs-conic-spin 4s linear infinite;
    opacity: 0.85;
}
@property --ldr-ang{
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}
@keyframes cs-conic-spin{
    to { --ldr-ang: 360deg; }
}
@keyframes cs-spin-cw{
    to { transform: rotate(360deg); }
}
@keyframes cs-spin-ccw{
    to { transform: rotate(-360deg); }
}

/* ----- Wordmark + tagline ----- */
.cs-typo{
    width: clamp(220px, 30vw, 380px);
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: translateY(14px);
    animation: cs-fade-up 0.8s cubic-bezier(.2,.85,.25,1) 0.5s forwards;
    filter: drop-shadow(0 4px 18px rgba(0, 215, 87, 0.18));
}
.cs-tagline{
    font-family: "Roboto", sans-serif;
    font-size: clamp(0.7rem, 0.92vw, 0.85rem);
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: -0.35rem;
    opacity: 0;
    animation: cs-fade-up 0.8s ease 0.75s forwards;
}
@keyframes cs-fade-up{
    to { opacity: 1; transform: translateY(0); }
}

/* ----- Progress bar ----- */
.cs-progress{
    width: clamp(240px, 32vw, 380px);
    margin-top: 0.6rem;
    opacity: 0;
    animation: cs-fade-up 0.7s ease 0.95s forwards;
}
.cs-progress-track{
    position: relative;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 215, 87, 0.12) inset;
}
.cs-progress-fill{
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #00B447 0%, #1DEC6E 50%, #7CFFB0 100%);
    box-shadow: 0 0 12px rgba(29, 236, 110, 0.65);
    transform-origin: left center;
    transform: scaleX(0);
    animation: cs-progress-fill 2.6s cubic-bezier(.4,.05,.2,1) 1.05s forwards;
}
.cs-progress-fill::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    animation: cs-progress-shimmer 1.4s ease-in-out 1.05s infinite;
}
@keyframes cs-progress-fill{
    0%   { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}
@keyframes cs-progress-shimmer{
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cs-progress-meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: 0.6rem;
    font-family: "Roboto", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.cs-status{
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.cs-status-dot{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1DEC6E;
    box-shadow: 0 0 8px #1DEC6E;
    animation: cs-status-pulse 1.4s ease-in-out infinite;
}
@keyframes cs-status-pulse{
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.85); }
}
.cs-percent{
    color: #1DEC6E;
    font-weight: 800;
    letter-spacing: 1px;
    font-feature-settings: "tnum" 1;
}

/* ----- Mobile tweaks ----- */
@media screen and (max-width: 600px){
    .cs-loader-stage{ gap: 1.2rem; }
    .cs-tagline{ letter-spacing: 3px; }
    .cs-progress-meta{ font-size: 0.6rem; letter-spacing: 1.2px; }
}
/* ============================================================
   /Premium Page Loader
   ============================================================ */

html{
    scroll-behavior: unset !important; /* Disable default smooth scrolling in Bootstrap */
}

:root{
    --cs-green: #00D757;
    --cs-green-dark: #00A845;
    --cs-green-bright: #1DEC6E;
    --cs-red: #E63946;
    --cs-red-bright: #FF1E1E;
    --cs-black: #000000;
    --cs-bg-1: #000000;
    --cs-bg-2: #050505;
    --cs-bg-3: #0a0a0a;
    --cs-silver: #C0C0C0;
    --cs-silver-soft: #d8d8d8;
}

::selection{
    background-color: #00D757;
    color: #000;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Roboto", sans-serif;
}

p, a, button{
    font-family: "Nunito Sans", sans-serif;
    margin: 0;
}

body{
    background: linear-gradient(to bottom, #000000 5%, #050505, #0a0a0a);
    background-repeat: no-repeat;
}

/* -------------------------------------------------------------------------------------------------------------------------- */

/* Navbar Start */
nav{
    padding: 0.5rem 2rem !important;
    background-color: transparent;
    backdrop-filter: blur(8px);
    position: absolute !important;
    top: 0;
    width: 100%;
    z-index: 100;
}
.navbar-brand{
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
}
.navbar-brand .brand-mark{
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 12px rgba(0, 215, 87, 0.25));
}
.navbar-brand:hover .brand-mark{
    transform: scale(1.04);
    filter: drop-shadow(0 0 16px rgba(0, 215, 87, 0.45));
}
.navbar-brand .brand-typo{
    height: 24px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 215, 87, 0.22));
}
.nav-link {
    margin: 0 1.3rem;
    font-size: calc(0.55rem + 0.5vw);
    font-weight: 700;
    color: #fff;
}
.nav-link:hover,
.nav-link.active {
    color: #00D757 !important;
}
nav .dropdown-menu {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-bottom: 0.7rem;
}
nav .dropdown-menu li a {
    color: #282828;
    padding-bottom: 0;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 600;
}
nav .dropdown-menu li a:hover,
nav .dropdown-menu li a.active{
    background-color: #fff;
    color: #00D757;
}
nav .dropdown-item{
    display: flex;
}

.navbar-toggler{
    border: none;
}
.navbar-toggler-icon{
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler:focus,
.navbar-toggler:active{
    outline: none;
    box-shadow: none;
}

nav .btn-group-pill{
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    transform: skewX(-22deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
nav .btn-group-pill a{
    transform: skewX(5deg);
    padding: 0.4rem 1.4rem;
    font-weight: 650;
    text-decoration: none;
    font-size: calc(0.55rem + 0.5vw);
    transition: all 0.3s ease;
}
nav .btn-signup{
    background-color: #fff;
    color: #000;
}
nav .btn-signup:hover{
    background-color: #E63946;
    color: #fff;
}
nav .btn-login{
    background-color: #00D757;
    color: #000;
}
nav .btn-login:hover{
    background-color: #1DEC6E;
    color: #000;
}

/* Dropdown menu hover effect for screens wider than 768px */
@media (min-width: 768px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    nav .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 991px) {
    nav{
        padding: 0.5rem 0 !important;
        backdrop-filter: blur(0);
    }
    nav:has(.navbar-collapse.show) {
        backdrop-filter: blur(25px);
        transition: all 0.1s ease;
    }
    .navbar-brand{ gap: 0.4rem; }
    .navbar-brand .brand-mark{ width: 58px; height: 58px; }
    .navbar-brand .brand-typo{ height: 24px; }
    .nav-link {
        font-size: calc(0.8rem + 0.5vw);
    }
    nav .navbar-nav{
        margin-top: 1.3rem;
    }
    nav .dropdown-menu {
        padding-bottom: 0.7rem;
    }
    nav .dropdown-menu li a {
        font-size: calc(0.75rem + 0.5vw);
        margin-bottom: 0.5rem;
    }
    nav .dropdown-menu li:last-child a {
        margin-bottom: 0;
    }
    nav .btn-group-pill{
        margin-top: 0.7rem;
        margin-bottom: 1rem;
    }
    nav .btn-group-pill a{
        width: 50%;
        text-align: center;
        font-size: calc(0.75rem + 0.5vw);
    }
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    nav{
        padding: 0.6rem 3rem !important;
    }
    .navbar-brand .brand-mark{ width: 62px; height: 62px; border-radius: 11px; }
    .navbar-brand .brand-typo{ height: 26px; }
    .nav-link {
        margin: 0 1.4rem;
        font-size: calc(0.6rem + 0.5vw);
    }
    nav .dropdown-menu li a {
        font-size: calc(0.53rem + 0.5vw);
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    nav{
        padding: 0.7rem 0 !important;
    }
    .navbar-brand .brand-mark{ width: 70px; height: 70px; border-radius: 12px; }
    .navbar-brand .brand-typo{ height: 30px; }
    .nav-link {
        margin: 0 1.4rem;
        font-size: calc(0.65rem + 0.5vw);
    }
    nav .dropdown-menu li a {
        font-size: calc(0.6rem + 0.5vw);
    }
    nav .btn-group-pill a{
        padding: 0.5rem 1.6rem;
        font-size: calc(0.6rem + 0.5vw);
    }
}
/* Navbar End */

/* Banner Start — homepage hero only (scoped via :has(.banner-mesh)) */
.banner:has(.banner-mesh){
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

/* ---------- Aurora mesh + orbs + grid + noise ---------- */
.banner-mesh{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 12% 18%, rgba(0, 215, 87, 0.18), transparent 60%),
        radial-gradient(ellipse 70% 50% at 88% 22%, rgba(29, 236, 110, 0.12), transparent 60%),
        radial-gradient(ellipse 90% 60% at 50% 100%, rgba(230, 57, 70, 0.10), transparent 60%),
        linear-gradient(180deg, #050505 0%, #000000 60%, #050505 100%);
}
.banner-mesh .orb{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}
.banner-mesh .orb-green{
    width: 520px; height: 520px;
    background: radial-gradient(circle, #00D757 0%, transparent 70%);
    top: -120px; left: -120px;
    animation: orb-drift-1 18s ease-in-out infinite alternate;
}
.banner-mesh .orb-emerald{
    width: 460px; height: 460px;
    background: radial-gradient(circle, #1DEC6E 0%, transparent 70%);
    top: 30%; right: -150px;
    opacity: 0.4;
    animation: orb-drift-2 22s ease-in-out infinite alternate;
}
.banner-mesh .orb-red{
    width: 380px; height: 380px;
    background: radial-gradient(circle, #E63946 0%, transparent 70%);
    bottom: -120px; left: 35%;
    opacity: 0.28;
    animation: orb-drift-3 26s ease-in-out infinite alternate;
}
@keyframes orb-drift-1{
    0%   { transform: translate(0, 0)       scale(1); }
    100% { transform: translate(80px, 60px) scale(1.12); }
}
@keyframes orb-drift-2{
    0%   { transform: translate(0, 0)         scale(1); }
    100% { transform: translate(-90px, -40px) scale(0.92); }
}
@keyframes orb-drift-3{
    0%   { transform: translate(0, 0)         scale(1); }
    100% { transform: translate(120px, -80px) scale(1.08); }
}
.banner-grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 215, 87, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 215, 87, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 90%);
    opacity: 0.7;
}
.banner-noise{
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Animated candlestick chart ---------- */
.banner-chart{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
/* Faint horizontal price-grid lines with slow opacity-pulse for ambient liveness */
.banner-chart .cs-grid line{
    stroke: rgba(0, 215, 87, 0.10);
    stroke-width: 1;
    stroke-dasharray: 4 6;
    animation: cs-grid-pulse 6s ease-in-out infinite;
}
.banner-chart .cs-grid line:nth-child(2){ animation-delay: 1.5s; }
.banner-chart .cs-grid line:nth-child(3){ animation-delay: 3s; }
.banner-chart .cs-grid line:nth-child(4){ animation-delay: 4.5s; }
@keyframes cs-grid-pulse{
    0%, 100% { stroke: rgba(0, 215, 87, 0.06); }
    50%      { stroke: rgba(0, 215, 87, 0.18); }
}

/* Background-depth candle layer — smaller, dimmer, denser */
.banner-chart .cs-bg-layer{
    opacity: 0.55;
}
.banner-chart .csc-bg{
    opacity: 0;
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation:
        cs-rise-bg 0.7s cubic-bezier(.2,.85,.25,1) both,
        cs-bg-breathe 5s ease-in-out infinite;
    animation-delay:
        calc(0.05s + var(--i, 0) * 18ms),
        calc(2.5s + var(--i, 0) * 35ms);
}
.banner-chart .csc-bg.bull rect{
    fill: rgba(0, 168, 69, 0.55);
    stroke: rgba(29, 236, 110, 0.5);
    stroke-width: 0.5;
    rx: 1.5; ry: 1.5;
}
.banner-chart .csc-bg.bear rect{
    fill: rgba(178, 38, 51, 0.55);
    stroke: rgba(255, 107, 107, 0.5);
    stroke-width: 0.5;
    rx: 1.5; ry: 1.5;
}
.banner-chart .csc-bg.bull line{
    stroke: rgba(29, 236, 110, 0.5);
    stroke-width: 1.4;
    stroke-linecap: round;
}
.banner-chart .csc-bg.bear line{
    stroke: rgba(255, 107, 107, 0.5);
    stroke-width: 1.4;
    stroke-linecap: round;
}
@keyframes cs-rise-bg{
    0%   { opacity: 0; transform: scaleY(0.05) translateY(8px); }
    100% { opacity: 0.7; transform: scaleY(1) translateY(0); }
}
@keyframes cs-bg-breathe{
    0%, 100% { opacity: 0.55; filter: blur(0); }
    50%      { opacity: 0.78; filter: blur(0.4px); }
}
/* Each candle group: bottom-anchored stagger rise + continuous breathing glow */
.banner-chart .csc{
    opacity: 0;
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation:
        cs-rise 0.55s cubic-bezier(.2,.85,.25,1) both,
        cs-breathe 4s ease-in-out infinite;
    animation-delay:
        calc(0.15s + var(--i, 0) * 26ms),
        calc(2s + var(--i, 0) * 50ms);
}
@keyframes cs-rise{
    0%   { opacity: 0; transform: scaleY(0.05) translateY(12px); }
    55%  { opacity: 1; }
    100% { opacity: 1; transform: scaleY(1) translateY(0); }
}
/* Continuous staggered glow breathing on each candle */
.banner-chart .csc.bull{
    filter: drop-shadow(0 0 6px rgba(0, 215, 87, 0.65));
}
.banner-chart .csc.bear{
    filter: drop-shadow(0 0 6px rgba(230, 57, 70, 0.65));
}
@keyframes cs-breathe{
    0%, 100% { transform: scaleY(1) translateY(0); }
    50%      { transform: scaleY(1.04) translateY(-1px); }
}
/* Bull candles — bright emerald, soft green halo */
.banner-chart .csc.bull rect{
    fill: url(#bullGrad);
    stroke: #1DEC6E;
    stroke-width: 0.8;
    rx: 2; ry: 2;
}
.banner-chart .csc.bull line{
    stroke: #1DEC6E;
    stroke-width: 2.2;
    stroke-linecap: round;
}
/* Bear candles — bright red, red halo */
.banner-chart .csc.bear rect{
    fill: url(#bearGrad);
    stroke: #FF6B6B;
    stroke-width: 0.8;
    rx: 2; ry: 2;
}
.banner-chart .csc.bear line{
    stroke: #FF6B6B;
    stroke-width: 2.2;
    stroke-linecap: round;
}

/* Vertical scanner sweep — slow horizontal traversal */
.banner-chart .cs-scanner{
    opacity: 0;
    animation:
        cs-area-in 0.6s ease 2s forwards,
        cs-scan 9s ease-in-out 3s infinite;
    mix-blend-mode: screen;
    filter: blur(2px);
}
@keyframes cs-scan{
    0%   { transform: translateX(-60px); opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.8; }
    100% { transform: translateX(1600px); opacity: 0; }
}

/* Floating tick particles drifting upward */
.banner-chart .cs-tick{
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: cs-tick-drift 8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px currentColor);
}
.banner-chart .cs-tick:nth-child(1){ animation-delay: 2.0s; animation-duration: 9s;  }
.banner-chart .cs-tick:nth-child(2){ animation-delay: 3.5s; animation-duration: 11s; }
.banner-chart .cs-tick:nth-child(3){ animation-delay: 4.8s; animation-duration: 8s;  }
.banner-chart .cs-tick:nth-child(4){ animation-delay: 6.2s; animation-duration: 10s; }
.banner-chart .cs-tick:nth-child(5){ animation-delay: 2.7s; animation-duration: 12s; }
.banner-chart .cs-tick:nth-child(6){ animation-delay: 5.5s; animation-duration: 9.5s;}
.banner-chart .cs-tick:nth-child(7){ animation-delay: 4.2s; animation-duration: 10.5s;}
.banner-chart .cs-tick:nth-child(8){ animation-delay: 7.0s; animation-duration: 11.5s;}
.banner-chart .cs-tick:nth-child(9){ animation-delay: 3.0s; animation-duration: 8.5s; }
@keyframes cs-tick-drift{
    0%   { opacity: 0; transform: translateY(0) scale(0.4); }
    20%  { opacity: 0.9; transform: translateY(-30px) scale(1); }
    80%  { opacity: 0.6; transform: translateY(-180px) scale(0.85); }
    100% { opacity: 0; transform: translateY(-260px) scale(0.5); }
}
/* Crosshair lines that fade in after candles */
.banner-chart .cs-crosshair{
    stroke: rgba(29, 236, 110, 0.35);
    stroke-width: 1;
    stroke-dasharray: 4 5;
    opacity: 0;
    animation: cs-area-in 0.6s ease 1.6s forwards;
}
@keyframes cs-area-in{ to { opacity: 1; } }
/* Last-price tag */
.banner-chart .cs-pricetag{
    opacity: 0;
    animation: cs-area-in 0.4s ease 1.7s forwards;
    filter: drop-shadow(0 0 6px rgba(29, 236, 110, 0.6));
}
/* Pulse marker at latest close */
.banner-chart .cs-pulse-dot{
    opacity: 0;
    animation: cs-area-in 0.4s ease 1.7s forwards;
    filter: drop-shadow(0 0 6px #1DEC6E);
}
.banner-chart .cs-pulse-ring{
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: cs-area-in 0.4s ease 1.7s forwards,
               cs-ring 1.8s ease-out 2s infinite;
}
@keyframes cs-ring{
    0%   { transform: scale(1);   opacity: 0.85; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* ---------- Hero copy ---------- */
.banner .banner-content{
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* leave room for the floating stat pill + 44px ticker at the bottom */
    padding: 5rem 1.2rem 13rem 1.2rem;
    max-width: 980px;
    margin: 0 auto;
}
/* Subtle dark vignette so hero copy stays readable against the candles behind it */
.banner .banner-content::before{
    content: "";
    position: absolute;
    inset: -2rem;
    z-index: -1;
    background: radial-gradient(ellipse 75% 60% at 50% 50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 75%);
    pointer-events: none;
}
/* Slightly dim candle layer so it always reads as backdrop, never competes with copy */
.banner-chart{ opacity: 0.92; }
.hero-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Roboto", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1DEC6E;
    background: rgba(0, 215, 87, 0.08);
    border: 1px solid rgba(0, 215, 87, 0.35);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 24px rgba(0, 215, 87, 0.18);
}
.hero-eyebrow .dot{
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #1DEC6E;
    box-shadow: 0 0 10px #1DEC6E;
    animation: stock-pulse 1.4s ease-in-out infinite;
}
.banner .banner-content h1{
    color: #ffffff;
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: clamp(2.6rem, 6.5vw, 6.5rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -1.5px;
    margin-top: 1.2rem;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.banner .banner-content h1 .grow{
    background: linear-gradient(120deg, #00D757 0%, #1DEC6E 50%, #7CFFB0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}
.banner .banner-content h1 .grow::after{
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -0.05em;
    height: 0.18em;
    background: linear-gradient(to right, transparent, #00D757, #1DEC6E, transparent);
    filter: blur(3px);
    opacity: 0.7;
    border-radius: 999px;
}
.banner .banner-content .hero-sub{
    margin-top: 1rem;
    max-width: 720px;
    color: #c8c8c8;
    font-size: clamp(0.9rem, 1.15vw, 1.15rem);
    font-weight: 400;
    line-height: 1.55;
}

/* Animated typewriter pill — black-on-glass instead of white box */
.banner-animated-text{
    margin-top: 1.6rem;
    height: 52px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 215, 87, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.25rem 1.4rem 0.4rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 215, 87, 0.18);
    display: inline-flex;
    align-items: center;
}
.banner-animated-text p {
    display: inline-block;
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    color: #1DEC6E;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid #1DEC6E;
    transition: color 0.2s, opacity 0.3s;
    opacity: 1;
    animation: blink-cursor 1s steps(1) infinite;
}
@keyframes blink-cursor {
    0%, 100% { border-color: #1DEC6E; }
    50%      { border-color: transparent; }
}

/* CTAs */
.hero-cta-row{
    display: flex;
    gap: 0.9rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-cta{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-cta.primary{
    background: linear-gradient(135deg, #00D757 0%, #1DEC6E 100%);
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 215, 87, 0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.hero-cta.primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 215, 87, 0.5), 0 0 0 1px rgba(255,255,255,0.15) inset;
}
.hero-cta.primary i{
    transition: transform 0.25s ease;
}
.hero-cta.primary:hover i{ transform: translateX(3px); }
.hero-cta.ghost{
    color: #fff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-cta.ghost:hover{
    background: rgba(0, 215, 87, 0.1);
    border-color: rgba(0, 215, 87, 0.5);
    color: #1DEC6E;
}

/* Stat strip — premium hero-grade dashboard pill */
.hero-stats{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 92px; /* 44px ticker + ~48px breathing gap */
    z-index: 4;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    padding: 1.1rem 2rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 30%),
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(0, 215, 87, 0.10) 0%, transparent 70%),
        rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(0, 215, 87, 0.32);
    border-radius: 22px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.08) inset,
        0 0 0 1px rgba(255,255,255,0.025) inset,
        0 -1px 0 rgba(0, 215, 87, 0.18) inset,
        0 24px 60px rgba(0, 0, 0, 0.65),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 215, 87, 0.18);
    white-space: nowrap;
    isolation: isolate;
    overflow: hidden;
}
/* Top-edge specular highlight */
.hero-stats::before{
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(255, 255, 255, 0.55) 30%,
        rgba(29, 236, 110, 0.6) 50%,
        rgba(255, 255, 255, 0.55) 70%,
        transparent);
    z-index: 1;
}
/* Bottom soft accent line */
.hero-stats::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 215, 87, 0.5), transparent);
    z-index: 1;
}

.hero-stat{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0 1.8rem;
    min-width: 130px;
}
/* Tiny live-pulse dot above each stat */
.hero-stat-pulse{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1DEC6E;
    box-shadow: 0 0 10px #1DEC6E;
    animation: stock-pulse 1.6s ease-in-out infinite;
    margin-bottom: -0.15rem;
}
.hero-stat:nth-child(3) .hero-stat-pulse{ animation-delay: 0.2s; }
.hero-stat:nth-child(5) .hero-stat-pulse{ animation-delay: 0.4s; }
.hero-stat:nth-child(7) .hero-stat-pulse{ animation-delay: 0.6s; }

.hero-stat .num{
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.85rem, 2.6vw, 2.4rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.2px;
    line-height: 0.95;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #cfeed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 24px rgba(29, 236, 110, 0.35);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    display: inline-flex;
    align-items: baseline;
}
/* The unit suffix (%, x, s) styled smaller and accent-colored */
.hero-stat .num i{
    font-style: normal;
    font-size: 0.55em;
    font-weight: 800;
    background: linear-gradient(180deg, #1DEC6E 0%, #00D757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.06em;
    letter-spacing: 0;
    align-self: flex-start;
    margin-top: 0.15em;
}
.hero-stat .lbl{
    font-family: "Roboto", sans-serif;
    font-size: clamp(0.7rem, 0.84vw, 0.82rem);
    font-weight: 800;
    color: #1DEC6E;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0 8px rgba(29, 236, 110, 0.4);
}

/* Glowing vertical accent rule between stats */
.hero-stat-divider{
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 15%,
        rgba(0, 215, 87, 0.45) 50%,
        rgba(255, 255, 255, 0.06) 85%,
        transparent 100%);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 215, 87, 0.2);
}

/* ---------- Live Ticker tape ---------- */
.ticker{
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 4;
    overflow: hidden;
    height: 44px;
    background: rgba(0, 0, 0, 0.55);
    border-top: 1px solid rgba(0, 215, 87, 0.25);
    border-bottom: 1px solid rgba(0, 215, 87, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%);
}
.ticker-track{
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    padding-left: 2rem;
}
.ticker-track .tk{
    color: #d8d8d8;
    font-family: "Roboto", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.ticker-track .tk b{
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.8px;
}
.ticker-track .tk em{
    font-style: normal;
    font-weight: 700;
    padding: 0.05rem 0.45rem;
    border-radius: 4px;
    font-size: 0.78rem;
}
.ticker-track .tk em.up{ color: #1DEC6E; background: rgba(0, 215, 87, 0.10); }
.ticker-track .tk em.down{ color: #FF6B6B; background: rgba(230, 57, 70, 0.12); }
@keyframes ticker-scroll{
    from{ transform: translateX(0); }
    to  { transform: translateX(-50%); }
}

/* ---------- Responsive ---------- */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .banner .banner-content h1{ font-size: clamp(3rem, 6vw, 5.5rem); }
}
@media screen and (min-width: 1400px){
    .banner .banner-content h1{ font-size: clamp(3.4rem, 6.2vw, 6.5rem); }
}
@media screen and (max-width: 991px){
    .hero-stats{ padding: 0.85rem 1.25rem; bottom: 78px; }
    .hero-stat{ padding: 0 1.1rem; min-width: 100px; gap: 0.45rem; }
    .hero-stat .num{ font-size: 1.55rem; letter-spacing: -0.8px; }
    .hero-stat .lbl{ font-size: 0.66rem; letter-spacing: 2px; }
}
@media screen and (max-width: 767px){
    .banner:has(.banner-mesh){ height: auto; min-height: 100vh; padding-top: 0; }
    .banner .banner-content{ padding: 5.5rem 1rem 4.5rem 1rem; }
    .hero-eyebrow{ font-size: 0.65rem; letter-spacing: 1.8px; padding: 0.35rem 0.8rem; }
    .banner .banner-content h1{
        font-size: clamp(2.1rem, 9vw, 3.4rem);
        margin-top: 1rem;
    }
    .banner .banner-content .hero-sub{ font-size: 0.92rem; }
    .banner-animated-text{ height: 40px; padding: 0.15rem 1rem; }
    .banner-animated-text p { font-size: 0.95rem; border-right-width: 3px; }
    .hero-cta{ font-size: 0.85rem; padding: 0.7rem 1.2rem; }
    .hero-stats{ padding: 0.65rem 0.85rem; bottom: 60px; border-radius: 18px; }
    .hero-stat{ padding: 0 0.65rem; min-width: 70px; gap: 0.3rem; }
    .hero-stat-pulse{ width: 5px; height: 5px; }
    .hero-stat .num{ font-size: 1.15rem; letter-spacing: -0.6px; }
    .hero-stat .lbl{ font-size: 0.55rem; letter-spacing: 1.2px; }
    .ticker{ height: 38px; }
    .ticker-track{ animation-duration: 45s; gap: 1.8rem; }
    .ticker-track .tk{ font-size: 0.75rem; }
    .banner-mesh .orb-green,
    .banner-mesh .orb-emerald,
    .banner-mesh .orb-red{ filter: blur(60px); }
}
/* Banner End */

/* Features Row Start */
.features-row{
    padding: 3rem 5%;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.features-row #features-canvas{
    /* background: linear-gradient(to right, #b0b0b0, #00b341 70%); */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.features-row .feature-card{
    width: 11%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.features-row .feature-card img{
    width: 40px;
    filter: invert(1);
}
.features-row .feature-card p{
    color: #fff;
    margin-top: 1rem;
    font-weight: 800;
    font-size: calc(0.6rem + 0.5vw);
    line-height: normal;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .features-row .feature-card img{
        width: 47px;
    }
    .features-row .feature-card p{
        font-size: calc(0.65rem + 0.5vw);
        margin-top: 1.2rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .features-row{
        padding: 3.5rem 5%;
    }
    .features-row .feature-card img{
        width: 50px;
    }
    .features-row .feature-card p{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 1.3rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .features-row{
        padding: 2rem 1rem 0.5rem 1rem;
        flex-wrap: wrap;
    }
    .features-row .feature-card{
        width: 33%;
        margin-bottom: 1.7rem;
    }
    .features-row .feature-card img{
        width: 48px;
    }
    .features-row .feature-card p{
        margin-top: 0.7rem;
        font-size: calc(0.8rem + 0.5vw);
    }
}
/* Features Row End */

/* Trading Register Start */
.trading-register{
    padding: 3.5rem 7%;
    display: flex;
    justify-content: space-between;
}
.trading-register-image{
    width: 37%;
}
.stock-card{
    position: relative;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 215, 87, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(230, 57, 70, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, #050505 0%, #0a0a0a 55%, #000000 100%);
    border: 1px solid rgba(0, 215, 87, 0.45);
    border-radius: 16px;
    padding: 1.4rem 1.4rem 1.1rem 1.4rem;
    box-shadow:
        0 0 0 1px rgba(0, 215, 87, 0.18) inset,
        0 14px 40px rgba(0, 0, 0, 0.7),
        0 0 32px rgba(0, 215, 87, 0.22);
    overflow: hidden;
    color: #fff;
}
.stock-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #00D757 30%, #1DEC6E 50%, #00D757 70%, transparent);
}
.stock-card-live{
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #1DEC6E;
    font-family: "Roboto", sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: rgba(0, 215, 87, 0.10);
    border: 1px solid rgba(0, 215, 87, 0.35);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    z-index: 2;
}
.stock-card-live .dot{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1DEC6E;
    box-shadow: 0 0 8px #1DEC6E;
    animation: stock-pulse 1.4s ease-in-out infinite;
}
@keyframes stock-pulse{
    0%, 100%{ opacity: 1; transform: scale(1); }
    50%{ opacity: 0.45; transform: scale(0.85); }
}
.stock-card-header{
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}
.stock-card-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(0, 215, 87, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.45rem;
    box-shadow: 0 0 18px rgba(0, 215, 87, 0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
    flex-shrink: 0;
}
.stock-card-meta{ flex: 1; min-width: 0; }
.stock-card-meta h3{
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: calc(0.85rem + 0.4vw);
    margin: 0;
    letter-spacing: 0.2px;
    line-height: 1.1;
}
.stock-card-meta h3 span{
    color: #888;
    font-weight: 500;
    margin-left: 0.4rem;
    font-size: 0.85em;
}
.stock-card-price{
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.45rem;
    flex-wrap: wrap;
}
.stock-card-price .price{
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: calc(1.35rem + 0.4vw);
    font-weight: 800;
    letter-spacing: -0.5px;
}
.stock-card-price .change.up{
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #1DEC6E;
    font-weight: 700;
    font-size: calc(0.55rem + 0.4vw);
    background: rgba(0, 215, 87, 0.14);
    border: 1px solid rgba(0, 215, 87, 0.45);
    padding: 0.22rem 0.6rem 0.22rem 0.4rem;
    border-radius: 999px;
}
.stock-card-price .change.up i{
    background: #00D757;
    color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    box-shadow: 0 0 8px rgba(0, 215, 87, 0.6);
}
.stock-card-chart{
    position: relative;
    margin-top: 0.4rem;
    border-radius: 8px;
    overflow: hidden;
}
.stock-card-chart svg{
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 215, 87, 0.35));
}
.stock-card-candles{
    position: absolute;
    right: 4%;
    bottom: 8%;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60%;
    opacity: 0.85;
}
.stock-card-candles .candle{
    width: 7px;
    border-radius: 2px;
    height: var(--h, 50%);
    position: relative;
}
.stock-card-candles .candle::before,
.stock-card-candles .candle::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    background: inherit;
}
.stock-card-candles .candle::before{ top: -8px; height: 8px; }
.stock-card-candles .candle::after{ bottom: -8px; height: 8px; }
.stock-card-candles .candle.bullish{
    background: #00D757;
    box-shadow: 0 0 10px rgba(0, 215, 87, 0.7);
}
.stock-card-candles .candle.bearish{
    background: #E63946;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
}
.stock-card-foot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(0, 215, 87, 0.18);
}
.stock-card-foot .foot-stat{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}
.stock-card-foot .foot-stat label{
    color: #777;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stock-card-foot .foot-stat b{
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: calc(0.65rem + 0.3vw);
    font-weight: 700;
}
.stock-card-foot .foot-stat b.up{ color: #1DEC6E; }
.stock-card-foot .foot-stat b.down{ color: #FF6B6B; }
.trading-register-content{
    width: 58%;
}
.trading-register-content h2{
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #C0C0C0, #00D757 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.trading-register-content p{
    /* color: #000; */
    color: #fff;
    font-size: calc(0.8rem + 0.5vw);
    margin-top: 1rem;
    font-weight: 500;
}
.trading-register-content>div{
    margin-top: 2rem;
}
.trading-register-content>div p{
    margin-top: 0.5rem;
}
.trading-register-content>div p i{
    color: #00D757;
    margin-right: 5px;
}
.trading-register-content button{
    border: none;
    background-color: #00D757;
    color: #000;
    font-weight: 700;
    font-size: calc(0.8rem + 0.5vw);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 2.5rem;
    transition: all 0.2s ease;
}
.trading-register-content button i{
    margin-left: 5px;
}
.trading-register-content button:hover{
    background-color: #1DEC6E;
    color: #000;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .trading-register{
        padding: 4rem 7%;
    }
    .stock-card{ padding: 1.5rem 1.5rem 1.2rem 1.5rem; }
    .stock-card-icon{ width: 54px; height: 54px; font-size: 1.55rem; }
    .trading-register-content h2{
        font-size: calc(2.5rem + 0.5vw);
    }
    .trading-register-content p{
        font-size: calc(0.85rem + 0.5vw);
    }
    .trading-register-content>div{
        margin-top: 2.2rem;
    }
    .trading-register-content>div p{
        margin-top: 0.6rem;
    }
    .trading-register-content button{
        font-size: calc(0.85rem + 0.5vw);
        margin-top: 2.7rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .trading-register{
        padding: 4.5rem 7%;
    }
    .stock-card{ padding: 1.7rem 1.7rem 1.3rem 1.7rem; border-radius: 18px; }
    .stock-card-icon{ width: 58px; height: 58px; font-size: 1.7rem; }
    .trading-register-content h2{
        font-size: calc(2.7rem + 0.5vw);
    }
    .trading-register-content p{
        font-size: calc(0.9rem + 0.5vw);
    }
    .trading-register-content>div{
        margin-top: 2.4rem;
    }
    .trading-register-content>div p{
        margin-top: 0.7rem;
    }
    .trading-register-content>div p i{
        margin-right: 6px;
    }
    .trading-register-content button{
        font-size: calc(0.95rem + 0.5vw);
        padding: 0.6rem 1.2rem;
        margin-top: 2.8rem;
    }
    .trading-register-content button i{
        margin-left: 6px;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .trading-register{
        padding: 2rem 1rem;
        flex-direction: column;
    }
    .trading-register-image{
        width: 100%;
    }
    .stock-card{ padding: 1.1rem 1.1rem 0.9rem 1.1rem; }
    .stock-card-live{ top: 0.7rem; right: 0.7rem; font-size: 0.55rem; }
    .stock-card-icon{ width: 44px; height: 44px; font-size: 1.25rem; }
    .stock-card-foot{ grid-template-columns: repeat(4, 1fr); gap: 0.35rem; }
    .stock-card-foot .foot-stat label{ font-size: 0.55rem; }
    .stock-card-foot .foot-stat b{ font-size: calc(0.7rem + 0.3vw); }
    .trading-register-content{
        width: 100%;
        margin-top: 1.5rem;
    }
    .trading-register-content h2{
        font-size: calc(1.5rem + 0.5vw);
    }
    .trading-register-content p{
        font-size: calc(0.9rem + 0.5vw);
        margin-top: 0.8rem;
    }
    .trading-register-content>div{
        margin-top: 1.2rem;
    }
    .trading-register-content>div p{
        margin-top: 0.3rem;
    }
    .trading-register-content>div p i{
        margin-right: 4px;
    }
    .trading-register-content button{
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 1.5rem;
    }
    .trading-register-content button i{
        margin-left: 3px;
    }
}
/* Trading Register End */

/* All Trades Start */
.all-trades{
    padding: 4rem 7% 4.5rem 7%;
    text-align: center;
}
.all-trades .section-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Roboto", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1DEC6E;
    background: rgba(0, 215, 87, 0.08);
    border: 1px solid rgba(0, 215, 87, 0.32);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.1rem;
}
.all-trades .section-eyebrow .dot{
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #1DEC6E;
    box-shadow: 0 0 8px #1DEC6E;
    animation: stock-pulse 1.4s ease-in-out infinite;
}
.all-trades h3{
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.12;
}
.all-trades h3 .grad{
    background: linear-gradient(120deg, #00D757 0%, #1DEC6E 60%, #7CFFB0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.all-trades p{
    color: #C0C0C0;
    font-size: clamp(0.92rem, 1.05vw, 1.1rem);
    margin-top: 0.9rem;
    font-weight: 400;
    line-height: 1.55;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.all-trades-card-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 3.2rem;
}

/* ===== Premium Exchange Card ===== */
@property --exch-ang{
    syntax: "<angle>";
    inherits: false;
    initial-value: 120deg;
}
.exch-card{
    --accent: #00D757;
    --accent-bright: #1DEC6E;
    --accent-soft: rgba(0, 215, 87, 0.14);
    --accent-line: rgba(0, 215, 87, 0.55);
    --accent-glow: rgba(0, 215, 87, 0.18);
    position: relative;
    display: block;
    border-radius: 22px;
    text-decoration: none;
    color: #fff;
    isolation: isolate;
    transition: transform 0.45s cubic-bezier(.2,.85,.25,1);
    will-change: transform;
}
.exch-card.bear{
    --accent: #E63946;
    --accent-bright: #FF6B6B;
    --accent-soft: rgba(230, 57, 70, 0.12);
    --accent-line: rgba(230, 57, 70, 0.55);
    --accent-glow: rgba(230, 57, 70, 0.16);
}

/* Outer holographic ring (gradient border layer 1) */
.exch-card::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(var(--exch-ang),
        rgba(255, 255, 255, 0.18) 0%,
        var(--accent-line) 25%,
        rgba(255, 255, 255, 0.05) 55%,
        var(--accent) 80%,
        rgba(255, 255, 255, 0.12) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    transition: --exch-ang 0.8s ease, opacity 0.3s ease;
    pointer-events: none;
}
.exch-card:hover::before{
    --exch-ang: 480deg;
}

/* Aurora glow blob inside card */
.exch-card .exch-aurora{
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
}
.exch-card .exch-aurora::before,
.exch-card .exch-aurora::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    transition: transform 0.8s ease, opacity 0.4s ease;
}
.exch-card .exch-aurora::before{
    width: 240px;
    height: 240px;
    top: -80px;
    left: -60px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}
.exch-card .exch-aurora::after{
    width: 200px;
    height: 200px;
    bottom: -90px;
    right: -50px;
    background: radial-gradient(circle, var(--accent-bright) 0%, transparent 70%);
    opacity: 0.35;
}
.exch-card:hover .exch-aurora::before{
    transform: translate(40px, 30px) scale(1.15);
    opacity: 0.7;
}
.exch-card:hover .exch-aurora::after{
    transform: translate(-30px, -40px) scale(1.15);
    opacity: 0.55;
}

/* Vertical pinstripe brand bar on the left edge */
.exch-card .exch-pinstripe{
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(to bottom,
        transparent,
        var(--accent) 20%,
        var(--accent-bright) 50%,
        var(--accent) 80%,
        transparent);
    box-shadow: 0 0 12px var(--accent-glow);
    z-index: 2;
    pointer-events: none;
}

/* Inner glass panel (separated from outer ring by 1px to give layered depth) */
.exch-card .exch-inner{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    padding: 1.6rem 1.6rem 1.3rem 1.7rem;
    border-radius: inherit;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 0% 0%, var(--accent-soft) 0%, transparent 65%),
        radial-gradient(ellipse 70% 60% at 100% 100%, rgba(255,255,255,0.025) 0%, transparent 70%),
        linear-gradient(165deg, #0c0c0c 0%, #060606 55%, #000000 100%);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.06) inset,
        0 0 0 1px rgba(255,255,255,0.018) inset,
        0 22px 50px rgba(0, 0, 0, 0.6),
        0 0 28px var(--accent-glow);
    transition: box-shadow 0.45s ease;
}
/* Refined dot-grid backdrop inside inner panel */
.exch-card .exch-inner::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.2px);
    background-size: 16px 16px;
    mask-image: radial-gradient(ellipse 110% 90% at 50% 110%, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 110% 90% at 50% 110%, black 25%, transparent 70%);
    pointer-events: none;
    opacity: 0.7;
}
.exch-card:hover{
    transform: translateY(-10px);
}
.exch-card:hover .exch-inner{
    box-shadow:
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 32px 60px rgba(0, 0, 0, 0.78),
        0 0 50px var(--accent-glow);
}

/* === Header: numbered exchange code + status === */
.exch-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}
.exch-num{
    font-family: "Roboto", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-feature-settings: "tnum" 1;
}
.exch-status{
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Roboto", sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: var(--accent-bright);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--accent-line);
    padding: 0.28rem 0.65rem 0.28rem 0.55rem;
    border-radius: 999px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 14px var(--accent-glow);
}
.exch-status .dot{
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 8px var(--accent-bright);
    animation: stock-pulse 1.4s ease-in-out infinite;
}

/* === Title block: stacked code + fullname === */
.exch-title{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.exch-code{
    position: relative;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: clamp(2.1rem, 3.2vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 0.95;
    color: #fff;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 30%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px var(--accent-glow));
}
/* Outline ghost replica behind code for depth */
.exch-code::before{
    content: attr(data-text);
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: transparent;
}
.exch-fullname{
    font-family: "Roboto", sans-serif;
    color: #c8c8c8;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* === Section: structured tag group === */
.exch-section{
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.exch-section-label{
    font-family: "Roboto", sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.exch-section-label::after{
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.08), transparent);
}
.exch-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.exch-tags .tag{
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #e2e2e2;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.34rem 0.7rem 0.34rem 0.55rem;
    border-radius: 8px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.exch-tags .tag .tag-dot{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent-glow);
}
.exch-card:hover .exch-tags .tag{
    background: var(--accent-soft);
    border-color: var(--accent-line);
    color: var(--accent-bright);
    transform: translateY(-1px);
}
.exch-card:hover .exch-tags .tag .tag-dot{
    background: var(--accent-bright);
    box-shadow: 0 0 10px var(--accent-bright);
}

/* === Sparkline + axis hints === */
.exch-chart{
    position: relative;
    margin-top: 0.2rem;
    padding-right: 14px;
}
.exch-spark{
    width: 100%;
    height: 64px;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: filter 0.4s ease;
}
.exch-spark .spark-line{
    stroke: var(--accent-bright);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 480;
    stroke-dashoffset: 480;
    animation: spark-draw 1.6s cubic-bezier(.55, .1, .15, 1) 0.3s forwards;
}
.exch-spark .spark-area{
    opacity: 0;
    animation: spark-fade-in 0.6s ease 1.4s forwards;
}
.exch-spark .spark-dot{
    fill: var(--accent-bright);
    opacity: 0;
    animation: spark-fade-in 0.4s ease 1.7s forwards,
               spark-pulse 2.4s ease-in-out 2.2s infinite;
    filter: drop-shadow(0 0 6px var(--accent-bright));
}
@keyframes spark-draw{ to { stroke-dashoffset: 0; } }
@keyframes spark-fade-in{ to { opacity: 1; } }
@keyframes spark-pulse{
    0%, 100%{ filter: drop-shadow(0 0 4px var(--accent-bright)); }
    50%     { filter: drop-shadow(0 0 12px var(--accent-bright)); }
}
.exch-card:hover .exch-spark{
    filter: drop-shadow(0 0 16px var(--accent));
}
/* Vertical axis dots on the right edge, like price-axis ticks */
.exch-axis{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}
.exch-axis span{
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}
.exch-axis span:last-child{
    background: var(--accent-bright);
    box-shadow: 0 0 8px var(--accent-bright);
}

/* === Stats row === */
.exch-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}
.exch-stats::before,
.exch-stats::after{
    content: "";
    position: absolute;
    left: 35%;
    right: 35%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-line), transparent);
}
.exch-stats::before{ top: -1px; }
.exch-stats::after { bottom: -1px; }
.exch-stat{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.18rem;
}
.exch-stat label{
    font-family: "Roboto", sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
}
.exch-stat b{
    font-family: "Roboto", sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
    line-height: 1;
}
.exch-stat b.up{ color: #1DEC6E; text-shadow: 0 0 8px rgba(29, 236, 110, 0.4); }
.exch-stat b.down{ color: #FF6B6B; text-shadow: 0 0 8px rgba(255, 107, 107, 0.4); }

/* === CTA bar (full-width, gradient-fill on hover) === */
.exch-foot{ margin-top: 0.2rem; }
.exch-cta-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.7rem 0.85rem 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
.exch-cta-bar::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.exch-cta-bar .cta-text,
.exch-cta-bar .cta-arrow{ position: relative; z-index: 1; }
.exch-cta-bar .cta-text{
    font-family: "Roboto", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.35s ease;
}
.exch-cta-bar .cta-arrow{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-bright);
    font-size: 0.72rem;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.exch-cta-bar .cta-arrow i{ transition: transform 0.35s ease; }
.exch-card:hover .exch-cta-bar{
    background: transparent;
    border-color: transparent;
    box-shadow: 0 12px 28px var(--accent-glow), 0 0 22px var(--accent-glow);
}
.exch-card:hover .exch-cta-bar::before{ opacity: 1; }
.exch-card:hover .exch-cta-bar .cta-text{ color: #000; }
.exch-card:hover .exch-cta-bar .cta-arrow{
    background: rgba(0,0,0,0.25);
    border-color: rgba(0,0,0,0.35);
    color: #000;
}
.exch-card:hover .exch-cta-bar .cta-arrow i{ transform: translateX(2px); }

/* Responsive */
@media screen and (min-width: 1500px){
    .all-trades-card-row{ gap: 1.8rem; }
}
@media screen and (max-width: 991px){
    .all-trades-card-row{ grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media screen and (max-width: 599px){
    .all-trades{ padding: 2.4rem 1rem 2.8rem 1rem; }
    .all-trades-card-row{ grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
    .exch-card .exch-inner{ padding: 1.3rem 1.3rem 1.1rem 1.45rem; gap: 0.85rem; }
    .exch-code{ font-size: 1.9rem; }
    .exch-stats{ padding: 0.7rem 0; }
    .exch-stat label{ font-size: 0.52rem; }
    .exch-stat b{ font-size: 0.78rem; }
    .exch-tags .tag{ font-size: 0.66rem; padding: 0.3rem 0.6rem 0.3rem 0.5rem; }
    .exch-cta-bar .cta-text{ font-size: 0.72rem; }
}
/* All Trades End */

/* Why Choose Start */
.why-choose{
    padding: 1rem 7% 3.5rem 7%;
    position: relative;
}
.why-choose::before{
    content: "";
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 215, 87, 0.5), rgba(230, 57, 70, 0.5), transparent);
}
.why-choose h4{
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #C0C0C0 20%, #ffffff 45%, #00D757 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    letter-spacing: 0.5px;
}
.why-choose-card-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.why-choose-card{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 215, 87, 0.10) 0%, transparent 60%),
        linear-gradient(160deg, #060606 0%, #0a0a0a 50%, #000000 100%);
    padding: 1.8rem 1.2rem 1.4rem 1.6rem;
    border-radius: 14px;
    margin-bottom: 1.4rem;
    min-height: 215px;
    box-shadow:
        0 0 0 1px rgba(0, 215, 87, 0.35) inset,
        0 8px 24px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(0, 215, 87, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}
/* Candlestick wick + body accent on the left edge */
.why-choose-card::before{
    content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    left: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #00D757 25%, #1DEC6E 50%, #00D757 75%, transparent);
    box-shadow: 0 0 12px rgba(0, 215, 87, 0.7);
    border-radius: 0 4px 4px 0;
}
/* Subtle grid line pattern echoing trading charts */
.why-choose-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 215, 87, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 215, 87, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.7;
}
/* Bearish (red) cards on alternating positions to mirror candle pairs */
.why-choose-card:nth-child(3n+2){
    background:
        radial-gradient(circle at 50% 0%, rgba(230, 57, 70, 0.10) 0%, transparent 60%),
        linear-gradient(160deg, #060606 0%, #0a0a0a 50%, #000000 100%);
    box-shadow:
        0 0 0 1px rgba(230, 57, 70, 0.35) inset,
        0 8px 24px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(230, 57, 70, 0.18);
}
.why-choose-card:nth-child(3n+2)::before{
    background: linear-gradient(to bottom, transparent, #E63946 25%, #FF6B6B 50%, #E63946 75%, transparent);
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.7);
}
.why-choose-card:nth-child(3n+2)::after{
    background-image:
        linear-gradient(rgba(230, 57, 70, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.why-choose-card:hover{
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(0, 215, 87, 0.7) inset,
        0 14px 30px rgba(0, 0, 0, 0.75),
        0 0 28px rgba(0, 215, 87, 0.45);
}
.why-choose-card:nth-child(3n+2):hover{
    box-shadow:
        0 0 0 1px rgba(230, 57, 70, 0.7) inset,
        0 14px 30px rgba(0, 0, 0, 0.75),
        0 0 28px rgba(230, 57, 70, 0.45);
}
/* Icon halo */
.why-choose-card img{
    filter: invert(45%) sepia(92%) saturate(2800%) hue-rotate(110deg) brightness(115%) contrast(105%)
            drop-shadow(0 0 8px rgba(0, 215, 87, 0.55));
    width: 65px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.why-choose-card:hover img{
    transform: scale(1.08);
    filter: invert(45%) sepia(92%) saturate(2800%) hue-rotate(110deg) brightness(125%) contrast(105%)
            drop-shadow(0 0 12px rgba(0, 215, 87, 0.85));
}
.why-choose-card:nth-child(3n+2) img{
    filter: invert(35%) sepia(85%) saturate(3500%) hue-rotate(335deg) brightness(105%) contrast(100%)
            drop-shadow(0 0 8px rgba(230, 57, 70, 0.55));
}
.why-choose-card:nth-child(3n+2):hover img{
    filter: invert(35%) sepia(85%) saturate(3500%) hue-rotate(335deg) brightness(115%) contrast(100%)
            drop-shadow(0 0 12px rgba(230, 57, 70, 0.85));
}
.why-choose-card span{
    font-family: "Roboto", sans-serif;
    font-size: calc(0.75rem + 0.5vw);
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-top: 1.2rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}
.why-choose-card:nth-child(3n+2) span{
    background: linear-gradient(to right, #ffffff 30%, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-choose-card:not(:nth-child(3n+2)) span{
    background: linear-gradient(to right, #ffffff 30%, #1DEC6E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-choose-card p{
    font-size: calc(0.5rem + 0.5vw);
    margin-top: 0.5rem;
    color: #C0C0C0;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .why-choose{
        padding: 1rem 7% 3.5rem 7%;
    }
    .why-choose h4{
        font-size: calc(2.5rem + 0.5vw);
    }
    .why-choose-card{
        padding: 2rem 1.5rem 1.5rem 1.8rem;
        margin-bottom: 1.55rem;
        min-height: 235px;
    }
    .why-choose-card img{
        width: 68px;
    }
    .why-choose-card span{
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 1.6rem;
    }
    .why-choose-card p{
        font-size: calc(0.52rem + 0.5vw);
        margin-top: 0.5rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .why-choose{
        padding: 1rem 7% 3rem 7%;
    }
    .why-choose h4{
        font-size: calc(2.7rem + 0.5vw);
    }
    .why-choose-card{
        padding: 2.2rem 1.5rem 1.5rem 1.9rem;
        margin-bottom: 1.7rem;
        min-height: 255px;
    }
    .why-choose-card img{
        width: 72px;
    }
    .why-choose-card span{
        font-size: calc(0.85rem + 0.5vw);
        margin-top: 1.8rem;
    }
    .why-choose-card p{
        font-size: calc(0.6rem + 0.5vw);
        margin-top: 0.6rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .why-choose{
        padding: 0 1rem 0 1rem;
    }
    .why-choose h4{
        font-size: calc(1.5rem + 0.5vw);
    }
    .why-choose-card-row{
        margin-top: 1.5rem;
    }
    .why-choose-card{
        width: 100%;
        margin-bottom: 1rem;
        min-height: 200px;
    }
    .why-choose-card span{
        font-size: calc(1.2rem + 0.5vw);
        margin-top: 0.8rem;
    }
    .why-choose-card p{
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 0.45rem;
    }
}
/* Why Choose End */

/* FAQ Start */
.faq{
    padding: 1rem 15%;
    display: none;
}
.faq h5{
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #C0C0C0 30%, #00D757 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}
.faq p{
    /* color: #000; */
    color: #fff;
    font-size: calc(0.8rem + 0.5vw);
    margin-top: 0.8rem;
    font-weight: 500;
    text-align: center;
}
.faq .accordion{
    margin-top: 2rem;
}
.faq .accordion-item{
    margin-bottom: 0.8rem;
    border: none !important;
    background-color: transparent;
}
.faq .accordion-item:last-child{
    margin-bottom: 0;
}
.faq .accordion-button,
.faq .accordion-body {
    /* background-color: #e4e4e4 !important; */
    box-shadow: none;
    border-radius: 7px !important;
    color: #fff;
    font-weight: 600;
}
.faq .accordion-button{
    font-size: calc(0.75rem + 0.5vw);
    background-color: #0a0a0a !important;
}
.faq .accordion-body{
    margin-top: 0.4rem;
    background-color: #111111;
}
/* .faq .accordion-body p{
    color: #000;
} */
.faq .accordion-button:hover{
    /* background-color: #d1d1d1 !important; */
    background-color: #050505 !important;
}
.faq .accordion-button:not(.collapsed) {
    /* background-color: #c2c2c2 !important; */
    background-color: #0d0d0d !important;
    color: #00D757;
}
.faq .accordion-body p{
    font-size: calc(0.65rem + 0.5vw);
    margin: 0;
    text-align: left;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .faq h5{
        font-size: calc(2.5rem + 0.5vw);
    }
    .faq p{
        font-size: calc(0.85rem + 0.5vw);
    }
    .faq .accordion-button,
    .faq .accordion-body {
        padding: 1.2rem 1.2rem;
    }
    .faq .accordion-button{
        font-size: calc(0.8rem + 0.5vw);
    }
    .faq .accordion-body p{
        font-size: calc(0.75rem + 0.5vw);
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .faq h5{
        font-size: calc(2.7rem + 0.5vw);
    }
    .faq p{
        font-size: calc(0.95rem + 0.5vw);
    }
    .faq .accordion-button,
    .faq .accordion-body {
        padding: 1.3rem 1.8rem;
    }
    .faq .accordion-button{
        font-size: calc(0.85rem + 0.5vw);
    }
    .faq .accordion-body p{
        font-size: calc(0.82rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .faq{
        padding: 0.5rem 1rem;
    }
    .faq h5{
        font-size: calc(1.5rem + 0.5vw);
    }
    .faq p{
        font-size: calc(0.9rem + 0.5vw);
    }
    .faq .accordion{
        margin-top: 1.5rem;
    }
    .faq .accordion-item{
        margin-bottom: 0.7rem;
    }
    .faq .accordion-button{
        font-size: calc(0.9rem + 0.5vw);
    }
    .faq .accordion-body p{
        font-size: calc(0.85rem + 0.5vw);
    }
}
/* FAQ End */

/* Simple Steps Start */
.simple-steps{
    padding: 3rem 7%;
    /* margin-top: 3.5rem; */
    position: relative;
    overflow: hidden;
}
.simple-steps #simple-steps-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, #b0b0b0, #00b341 70%); */
}
.simple-steps h6{
    position: relative;
    font-size: calc(2rem + 0.5vw);
    font-weight: 900;
    color: #fff;
    background: linear-gradient(to right, #C0C0C0, #00D757 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.simple-steps-row{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.simple-steps-row .simple-steps-box{
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.simple-steps-row .simple-steps-box .simple-steps-box-left span{
    display: block;
    font-size: calc(1.5rem + 0.5vw);
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    color: #000;
    background-color: #00D757;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 12px rgba(0, 215, 87, 0.6);
}
.simple-steps-row .simple-steps-box .simple-steps-box-right{
    margin-left: 1rem;
}
.simple-steps-row .simple-steps-box .simple-steps-box-right span{
    display: block;
    font-size: calc(0.8rem + 0.5vw);
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    color: #fff;
}
.simple-steps-row .simple-steps-box .simple-steps-box-right p{
    font-size: calc(0.55rem + 0.5vw);
    font-weight: 500;
    color: #fff;
    margin-top: 0.5rem;
}
.simple-steps-row .simple-steps-box button{
    border: none;
    background-color: #00D757;
    color: #000;
    font-size: calc(0.65rem + 0.5vw);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 0 14px rgba(0, 215, 87, 0.5);
}
.simple-steps-row .simple-steps-box button:hover{
    background-color: #1DEC6E;
    color: #000;
    box-shadow: 0 0 18px rgba(29, 236, 110, 0.7);
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .simple-steps{
        padding: 3.5rem 7%;
        /* margin-top: 4.5rem; */
    }
    .simple-steps h6{
        font-size: calc(2.3rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-left span{
        font-size: calc(1.6rem + 0.5vw);
        width: 47px;
        height: 47px;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right{
        margin-left: 1.2rem;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right span{
        font-size: calc(0.9rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right p{
        font-size: calc(0.65rem + 0.5vw);
        margin-top: 0.6rem;
    }
    .simple-steps-row .simple-steps-box button{
        font-size: calc(0.7rem + 0.5vw);
        padding: 0.6rem 1.5rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .simple-steps{
        padding: 4rem 7%;
        /* margin-top: 5rem; */
    }
    .simple-steps h6{
        font-size: calc(2.5rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-left span{
        font-size: calc(1.7rem + 0.5vw);
        width: 55px;
        height: 55px;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right{
        margin-left: 1.2rem;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right span{
        font-size: calc(1rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right p{
        font-size: calc(0.75rem + 0.5vw);
        margin-top: 0.6rem;
    }
    .simple-steps-row .simple-steps-box button{
        font-size: calc(0.8rem + 0.5vw);
        padding: 0.8rem 1.9rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .simple-steps{
        padding: 2.6rem 1rem 1.3rem 1rem;
        margin-top: 0.5rem;
    }
    .simple-steps h6{
        font-size: calc(1.5rem + 0.5vw);
        text-align: center;
    }
    .simple-steps-row{
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    .simple-steps-row .simple-steps-box{
        width: 100%;
        justify-content: left;
        margin-bottom: 1.5rem;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-left span{
        font-size: calc(1.7rem + 0.5vw);
        width: 47px;
        height: 47px;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right span{
        font-size: calc(1.1rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right p{
        font-size: calc(0.85rem + 0.5vw);
        margin-top: 0.5rem;
    }
    .simple-steps-row .simple-steps-box a{
        display: flex;
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }    
    .simple-steps-row .simple-steps-box button{
        font-size: calc(0.9rem + 0.5vw);
        margin-top: 0.8rem;
        padding: 0.5rem 2rem;
    }    
}
/* Simple Steps End */

/* Footer Start */
footer{
    padding: 2rem 7%;
    /* background-color: #e2d1fd; */
    /* background: linear-gradient(to bottom, #1a3d22 5%, #040d06, #061208); */
}
footer .foot-top{
    display: flex;
    align-items: center;
    gap: 1rem;
}
footer .foot-top .foot-mark{
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 0 14px rgba(0, 215, 87, 0.25));
}
footer .foot-top .foot-typo{
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 215, 87, 0.2));
}
footer .foot-menu{
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #939393;
    border-bottom: 1px solid #939393;
    display: flex;
    justify-content: space-between;
}
footer .foot-menu .foot-menu-box{
    width: 20%;
}
footer .foot-menu .foot-menu-box span{
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
    font-family: "Roboto", sans-serif;
    font-size: calc(0.8rem + 0.5vw);
    font-weight: 800;
    color: #00D757;
}
footer .foot-menu .foot-menu-box a{
    display: block;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    /* color: #000; */
    color: #fff;
    text-decoration: none;
    margin-top: 0.2rem;
}
footer .foot-menu .foot-menu-box a:hover{
    color: #1DEC6E;
}
footer .foot-menu #connect-with-us a{
    display: flex;
    gap: 8px;
}
footer .foot-menu #connect-with-us a i{
    color: #00D757;
    margin-top: 5px;
}
footer .foot-menu .foot-menu-box .social-row{
    display: flex;
    gap: 0.7rem;
}
footer .foot-menu .foot-menu-box .social-row i{
    background-color: #00D757;
    color: #000 !important;
    font-size: calc(0.55rem + 0.5vw);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
footer .foot-menu .foot-menu-box .social-row i:hover{
    background-color: #E63946;
    color: #fff !important;
}
footer .foot-bottom{
    padding-top: 1.5rem;
}
footer .foot-bottom-menu{
    display: flex;
    align-items: center;
    gap: 1rem;
}
footer .foot-bottom-menu a{
    display: block;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    /* color: #000; */
    color: #fff;
    text-decoration: none;
}
footer .foot-bottom-menu a:hover{
    color: #1DEC6E;
}
footer .foot-bottom-menu span{
    display: block;
    font-size: calc(0.3rem + 0.5vw);
    margin-top: -2px;
    color: #c0c0c0;
}
footer .foot-bottom p{
    font-size: calc(0.27rem + 0.5vw);
    margin-top: 1rem;
    /* color: #363636; */
    color: #c0c0c0;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    footer .foot-menu #connect-with-us a i{
        margin-top: 6px;
    }
    footer .foot-menu .foot-menu-box .social-row i{
        font-size: calc(0.5rem + 0.5vw);
        width: 29px;
        height: 29px;
    }
    footer .foot-bottom p{
        font-size: calc(0.3rem + 0.5vw);
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    footer .foot-top .foot-mark{ width: 110px; height: 110px; border-radius: 14px; }
    footer .foot-top .foot-typo{ height: 56px; }
    footer .foot-menu #connect-with-us a i{
        margin-top: 6px;
        font-size: calc(0.6rem + 0.5vw);
    }
    footer .foot-menu .foot-menu-box .social-row i{
        font-size: calc(0.5rem + 0.5vw);
        width: 31px;
        height: 31px;
    }
    footer .foot-bottom p{
        font-size: calc(0.34rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    footer{
        padding: 1rem 1rem;
    }
    footer .foot-top{ gap: 0.7rem; }
    footer .foot-top .foot-mark{ width: 70px; height: 70px; border-radius: 11px; }
    footer .foot-top .foot-typo{ height: 36px; }
    footer .foot-menu{
        margin-top: 1rem;
        padding-bottom: 1rem;
        flex-wrap: wrap;
    }
    footer .foot-menu .foot-menu-box{
        width: 50%;
    }
    footer .foot-menu #connect-with-us{
        width: 100%;
    }
    footer .foot-menu .foot-menu-box span{
        margin-top: 1rem;
        font-size: calc(1.1rem + 0.5vw);
    }
    footer .foot-menu .foot-menu-box a{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 0.3rem;
    }
    footer .foot-menu .foot-menu-box .social-row{
        gap: 0.8rem;
    }
    footer .foot-menu .foot-menu-box .social-row i{
        font-size: calc(0.75rem + 0.5vw);
        width: 30px;
        height: 30px;
    }
    footer .foot-bottom{
        padding-top: 0.7rem;
    }
    footer .foot-bottom-menu{
        gap: 0.3rem;
    }
    footer .foot-bottom-menu a{
        font-size: calc(0.6rem + 0.5vw);
        text-align: center;
    }
    footer .foot-bottom-menu span{
        font-size: calc(0.6rem + 0.5vw);
    }
    footer .foot-bottom p{
        font-size: calc(0.5rem + 0.5vw);
        margin-top: 0.8rem;
    }
}
/* Footer End */

