/* =========================
   DELTA ENGINE
   MARKET-PULSE MATCHED THEME
========================= */

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

html{
    scroll-behavior:smooth;
}

:root{
    --primary:#00d8ff;
    --primary-dark:#00b7d6;
    --primary-soft:#00d8ff22;
    --bg:#020b14;
    --bg2:#06121d;
    --card:#07111c;
    --text:#ffffff;
    --muted:#8aa4bf;
    --border:#12304a;
    --glow:0 0 18px rgba(0,216,255,0.12);
}

body{
    font-family:'Inter',sans-serif;
    background:
    radial-gradient(circle at top left, rgba(0,216,255,0.06), transparent 25%),
    linear-gradient(180deg,#020b14,#01060d);
    color:var(--text);
    line-height:1.6;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:90px 0;
}

h1,h2,h3{
    font-weight:600;
    letter-spacing:-1px;
}

img{
    max-width:100%;
    display:block;
}

header{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(10px);
    background:rgba(2,11,20,0.90);
    border-bottom:1px solid #12304a;
}

.navbar{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo img{
    width:52px;
    height:52px;
    border-radius:14px;
}

.logo-text{
    font-size:26px;
    font-weight:600;
    color:#ffffff;
    letter-spacing:-1px;
}

.logo-text span{
    color:var(--primary);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    color:#b4c8da;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.btn-group{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s ease;
    display:inline-block;
}

.btn-primary{
    background:var(--primary);
    color:#000000 !important;
    box-shadow:var(--glow);
    font-weight:600;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid var(--primary);
    color:var(--primary);
    background:transparent;
}

.btn-secondary:hover{
    background:rgba(0,216,255,0.08);
}

.hero{
    background:
    radial-gradient(circle at top right, rgba(0,216,255,0.08), transparent 28%),
    linear-gradient(180deg,#05111c,#020b14);
    padding:90px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    margin-bottom:28px;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    font-size:20px;
    color:var(--muted);
    margin-bottom:35px;
    max-width:650px;
}

.hero-image{
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:
    0 0 35px rgba(0,0,0,0.45),
    0 0 18px rgba(0,216,255,0.08);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:46px;
    margin-bottom:18px;
}

.section-title p{
    color:var(--muted);
    font-size:18px;
    max-width:850px;
    margin:auto;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.feature-card{
    background:var(--card);
    border:1px solid var(--border);
    padding:35px;
    border-radius:22px;
    transition:0.3s ease;
    box-shadow:0 0 18px rgba(0,0,0,0.18);
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:#1f5b84;
    box-shadow:
    0 0 18px rgba(0,216,255,0.08),
    0 0 40px rgba(0,0,0,0.25);
}

.feature-card-icon{
    width:64px;
    height:64px;
    margin-bottom:24px;
}

.feature-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:var(--muted);
}

.workflow{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.step{
    background:var(--card);
    border:1px solid var(--border);
    padding:30px;
    border-radius:22px;
}

.step-number{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary);
    color:#021018;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    margin-bottom:20px;
    box-shadow:var(--glow);
}

.step h3{
    margin-bottom:14px;
    font-size:22px;
}

.step p{
    color:var(--muted);
}

.image-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.image-card{
    border-radius:24px;
    overflow:hidden;
    background:#07111c;
    border:1px solid var(--border);
    box-shadow:
    0 0 20px rgba(0,0,0,0.25),
    0 0 15px rgba(0,216,255,0.05);
}

.pricing{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.price-card{
    background:var(--card);
    border:1px solid var(--border);
    padding:45px 35px;
    border-radius:24px;
    text-align:center;
    transition:0.3s ease;
}

.price-card:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 18px rgba(0,216,255,0.08),
    0 0 40px rgba(0,0,0,0.25);
}

.price-card.featured{
    border:1px solid #1f5b84;
    box-shadow:
    0 0 22px rgba(0,216,255,0.10),
    0 0 50px rgba(0,0,0,0.25);
}

.price-card h3{
    font-size:28px;
}

.price{
    font-size:56px;
    color:var(--primary);
    margin:22px 0;
    font-weight:600;
}

.price-card ul{
    list-style:none;
    margin:30px 0;
}

.price-card ul li{
    margin-bottom:14px;
    color:var(--muted);
}

.market-pulse{
    background:
    linear-gradient(180deg,#07111c,#020b14);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.market-box{
    background:#07111c;
    border:1px solid var(--border);
    padding:50px;
    border-radius:24px;
    text-align:center;
    box-shadow:
    0 0 20px rgba(0,216,255,0.06);
}

.market-box h2{
    font-size:42px;
    margin-bottom:18px;
}

.market-box p{
    color:var(--muted);
    max-width:850px;
    margin:auto;
    margin-bottom:35px;
}

footer{
    padding:45px 0;
    text-align:center;
    border-top:1px solid var(--border);
    color:#6f8aa3;
    background:#020b14;
}

@media(max-width:950px){

.nav-links{
    display:none;
}

.hero-grid,
.image-showcase{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:48px;
}

.section-title h2{
    font-size:36px;
}

.hero{
    padding:70px 0;
}

section{
    padding:70px 0;
}

}

@media(max-width:600px){

.hero h1{
    font-size:40px;
}

.hero p{
    font-size:18px;
}

.section-title h2{
    font-size:30px;
}

.price{
    font-size:46px;
}

.btn{
    width:100%;
    text-align:center;
}

.logo-text{
    font-size:22px;
}

}


/* =========================
   ALTERNATE SECTIONS
========================= */

.alt-section{
    background:
    linear-gradient(180deg,#071522,#04101a);
}

/* =========================
   YOUTUBE EMBED
========================= */

iframe{
    display:block;
    width:100%;
    min-height:320px;
    background:#000;
}



/* =========================
   DOWNLOAD FEATURES
========================= */

.download-features{
    margin-top:30px;
    padding:25px;
    border-radius:18px;
    background:rgba(0,216,255,0.04);
    border:1px solid rgba(0,216,255,0.10);
    text-align:left;
}

.download-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    color:var(--muted);
}

.download-item:last-child{
    margin-bottom:0;
}

.download-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--primary);
    flex-shrink:0;
}


/* =========================
   NAVBAR CTA FIX
========================= */

.nav-links .btn-primary{
    color:#000000 !important;
    font-weight:600;
}

.nav-links .btn-primary:hover{
    color:#000000 !important;
}


/* =========================
   DISCLAIMER
========================= */

.disclaimer-section{
    background:#04101a;
    border-top:1px solid var(--border);
}

.disclaimer-box{
    background:#07111c;
    border:1px solid var(--border);
    border-radius:22px;
    padding:35px;
}

.disclaimer-box h3{
    color:var(--primary);
    margin-bottom:18px;
    font-size:28px;
}

.disclaimer-box p{
    color:var(--muted);
    margin-bottom:16px;
    line-height:1.8;
    font-size:15px;
}

.disclaimer-box p:last-child{
    margin-bottom:0;
}


/* =========================
   MARKET PULSE IMAGE
========================= */

.market-pulse-image{
    margin-top:40px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:
    0 0 25px rgba(0,216,255,0.08);
}

.market-pulse-image img{
    width:100%;
    display:block;
}

.market-pulse-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:16px;
    margin-top:35px;
}

.pulse-feature{
    background:#081722;
    border:1px solid var(--border);
    padding:16px 20px;
    border-radius:14px;
    color:var(--muted);
    text-align:center;
}

/* =========================
   DISCIPLINE SECTION
========================= */

.discipline-grid{
    margin-top:45px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.discipline-card{
    background:#07111c;
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    text-align:left;
    transition:0.3s ease;
}

.discipline-card:hover{
    transform:translateY(-4px);
    box-shadow:
    0 0 18px rgba(0,216,255,0.08);
}

.discipline-card h3{
    color:var(--primary);
    margin-bottom:14px;
    font-size:22px;
}

.discipline-card p{
    color:var(--muted);
    line-height:1.7;
}


/* =========================
   HOW TO TRADE
========================= */

.trade-process{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin-top:50px;
}

.trade-card{
    background:#07111c;
    border:1px solid var(--border);
    border-radius:22px;
    padding:30px;
    transition:0.3s ease;
    position:relative;
}

.trade-card:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 20px rgba(0,216,255,0.08),
    0 0 40px rgba(0,0,0,0.20);
}

.trade-step{
    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--primary);
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:22px;
    box-shadow:var(--glow);
}

.trade-card h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:16px;
}

.trade-card p{
    color:var(--muted);
    line-height:1.8;
}

.trade-summary{
    margin-top:60px;
    background:#07111c;
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px;
    text-align:center;
}

.trade-summary h3{
    color:var(--primary);
    font-size:34px;
    margin-bottom:30px;
}

.trade-summary-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.summary-item{
    background:#081722;
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px;
    color:var(--muted);
    font-size:17px;
}


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

.workflow-title{
    text-align:center;
    margin-top:80px;
    margin-bottom:50px;
}

.workflow-title h2{
    font-size:42px;
    margin-bottom:16px;
}

.workflow-title p{
    color:var(--muted);
    font-size:18px;
}

.sticky-cta{
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(6px);

    background:#4F46E5;
    color:#ffffff !important;

    padding:8px 14px;
    font-size:13px;
    font-weight:600;

    text-decoration:none;
    border-radius:6px 0 0 6px;

    box-shadow:0 8px 20px rgba(0,0,0,0.25);

    z-index:9999;

    transition:all 0.25s ease;

    animation:pulse 2.5s infinite;
}

.sticky-cta:hover{
    background:#4338CA;
    color:#ffffff !important;
    transform: translateY(-50%) translateX(0);
    padding-right:18px;
}