/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bg-color: #0b0f17;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-blue: #4f46e5;
    --accent-glow: #3b82f6;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* ===== NAVBAR ===== */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(11, 15, 23, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 1.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.menu-toggle,
.hamburger {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--accent-blue);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background-color: #0b0f17;
    overflow: hidden;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.glow-orbs {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    top: 20%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: #4f46e5;
}

.glow-2 {
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: #3b82f6;
}

.badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(6px);
}

.badge-icon {
    font-size: 0.85rem;
    color: #60a5fa;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(to right, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-footer-text {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.6);
    letter-spacing: 0.5px;
}

/* ===== PREVIEW / DASHBOARD ===== */
.preview-section-container {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto 4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.preview-window-card {
    background-color: #0e131f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.browser-control-bar {
    background-color: #111723;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    gap: 1.5rem;
}

.window-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red    { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green  { background-color: #10b981; }

.address-bar-mock {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    flex-grow: 1;
    max-width: 600px;
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.active-preview-url {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-actions-mock {
    font-size: 0.8rem;
    cursor: pointer;
    color: #64748b;
}

.live-frame-viewport {
    width: 100%;
    height: 500px;
    position: relative;
    background-color: #0b0f16;
}

.live-frame-viewport iframe {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    display: block;
}

.frame-loader-overlay {
    position: absolute;
    inset: 0;
    background-color: #0b0f16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 5;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.frame-loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner-core {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(59, 130, 246, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: previewSpin 0.8s linear infinite;
}

.frame-loader-overlay p {
    font-size: 0.85rem;
    color: #64748b;
}

@keyframes previewSpin {
    to { transform: rotate(360deg); }
}

/* ===== WHY SECTION ===== */
.why-section {
    background: #0d1117;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
}

.why-title {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.why-card {
    background: #151b25;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem;
    overflow: hidden;
}

.why-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.why-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.1rem;
}

.stbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.stbar-label {
    font-size: 11px;
    color: #475569;
}

.stbar-dots {
    display: flex;
    gap: 5px;
}

.sdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.25s;
}

.sdot.on { background: #3b82f6; }

.tc-viewport {
    position: relative;
    overflow: hidden;
    margin: 0 -1.5rem;
}

.tc-viewport::before,
.tc-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    z-index: 4;
    pointer-events: none;
}

.tc-viewport::before {
    left: 0;
    background: linear-gradient(to right, #151b25 55%, transparent);
}

.tc-viewport::after {
    right: 0;
    background: linear-gradient(to left, #151b25 55%, transparent);
}

.tc-track {
    display: flex;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 10px;
    cursor: grab;
}

.tc-track:active { cursor: grabbing; }
.tc-track::-webkit-scrollbar { display: none; }

.tcc {
    flex: 0 0 155px;
    background: #1a2233;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 0.9rem;
    scroll-snap-align: center;
    transition: filter 0.3s, opacity 0.3s, border-color 0.3s;
}

.tcc.blur  { filter: blur(2.5px); opacity: 0.32; }
.tcc.focus { border-color: rgba(59, 130, 246, 0.45); opacity: 1; filter: none; }

.tcc-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tcc-ava {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #243044;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.tcc-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.tcc-sub  { font-size: 10px; color: #64748b; }

.tcc-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.13);
    color: #10b981;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    margin: 0.4rem 0 0.5rem;
}

.tcc-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 2px 0;
}

.tcc-row .lbl { color: #64748b; }
.tcc-row .val { color: #fff; font-weight: 500; }
.tcc-row .grn { color: #10b981; font-weight: 500; }

.tcc-socials {
    display: flex;
    gap: 5px;
    margin-top: 0.65rem;
}

.tcc-soc {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1e2d3d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 10px;
}

.spacer { flex-shrink: 0; }

.chart-legend {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.chart-leg {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #64748b;
}

.chart-ldot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.chart-sub {
    font-size: 11px;
    color: #475569;
    margin-bottom: 0.75rem;
}

/* ===== 2ND PANEL / SECTION ===== */
.section {
    background: #0d1117;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.panel {
    background: #151b25;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem;
    overflow: hidden;
}

.panel-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.panel-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Activity Log */
.log-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.log-topbar-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.log-filters {
    display: flex;
    gap: 5px;
}

.lf {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    color: #64748b;
    cursor: pointer;
    background: transparent;
    transition: all 0.2s;
}

.lf.on {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.log-scroll {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.log-scroll::-webkit-scrollbar { display: none; }

.log-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.log-item.active {
    background: #1a2233;
    border-color: rgba(234, 179, 8, 0.25);
}

.log-item.dim { opacity: 0.4; }

.log-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.log-icon.warn { background: rgba(234, 179, 8, 0.12);  color: #eab308; }
.log-icon.info { background: rgba(59, 130, 246, 0.12);  color: #3b82f6; }
.log-icon.err  { background: rgba(239, 68, 68, 0.12);   color: #ef4444; }
.log-icon.grn  { background: rgba(16, 185, 129, 0.12);  color: #10b981; }

.log-text { flex: 1; }

.log-msg {
    font-size: 12px;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.4;
}

.log-time {
    font-size: 10px;
    color: #475569;
    margin-top: 2px;
}

/* Chart Panel */
.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.chart-token {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.token-ava {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #243044;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.token-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.token-full {
    font-size: 12px;
    color: #64748b;
    margin-left: 3px;
}

.powered { font-size: 11px; color: #64748b; }
.powered span { color: #3b82f6; font-weight: 600; }

.candle-wrap {
    background: #111723;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.75rem 0.75rem 0.5rem;
    position: relative;
}

.price-axis {
    position: absolute;
    right: 8px;
    top: 0.75rem;
    bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.price-axis span {
    font-size: 9px;
    color: #475569;
    text-align: right;
}

#candleCanvas {
    display: block;
    width: 100%;
    height: 160px;
}

.chart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.6rem;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.timeframes {
    display: flex;
    gap: 3px;
}

.tf {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    color: #475569;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.2s;
}

.tf.on {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.chart-meta {
    font-size: 10px;
    color: #475569;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chart-meta .blue { color: #3b82f6; }

/* ===== HOW IT WORKS ===== */
.hiw-section {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    background-color: #0b0f16;
    color: #ffffff;
    overflow: hidden;
}

.hiw-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.hiw-left {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    min-width: 0;
}

.section-badge {
    display: inline-flex;
    background: #3b5bdb;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hiw-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.muted-title { color: #2a384e; }

.chart-card {
    background: #111723;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.chart-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cct-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cct-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    flex-shrink: 0;
}

.cct-name {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.cct-sub {
    font-size: 11px;
    color: #64748b;
    margin-top: 1px;
}

.cct-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: right;
}

.cct-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.cct-pnl-val {
    font-size: 15px;
    font-weight: 700;
    color: #10b981;
}

.cct-pnl-sub {
    font-size: 11px;
    color: #64748b;
}

.chart-canvas-wrap {
    position: relative;
    width: 100%;
    height: 140px;
    min-width: 0;
}

canvas#miniChart {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.cstat {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    min-width: 0;
}

.cstat-label {
    font-size: 9px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cstat-val {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cstat-val.green { color: #10b981; }
.cstat-val.red   { color: #ef4444; }

.connector-chain { display: flex; flex-direction: column; }

.step-node {
    display: flex;
    gap: 1.5rem;
}

.step-left-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #1e2d5a;
    border: 1px solid rgba(99, 120, 220, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6378dc;
}

.step-icon svg {
    width: 18px;
    height: 18px;
}

.step-line-fill {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(99, 120, 220, 0.25), rgba(99, 120, 220, 0.02));
    margin: 8px 0;
    min-height: 55px;
}

.step-node:last-child .step-line-fill { display: none; }

.step-body-content {
    padding-top: 2px;
    padding-bottom: 1.75rem;
}

.step-num {
    font-size: 10px;
    font-weight: 700;
    color: #3d4f6b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6378dc;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    max-width: 440px;
}

/* ===== TRADING STYLES ===== */
.trading-styles-section {
    width: 100%;
    background-color: #0b0f16;
    color: #ffffff;
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
}

.ts-wrapper {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
}

.ts-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

.styles-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--glass-border);
    background-color: rgba(255, 255, 255, 0.01);
}

.style-box-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.styles-top-grid .style-box-card:not(:last-child) {
    border-right: 1px solid var(--glass-border);
}

.box-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue-glow   { box-shadow: 0 0 15px rgba(59, 130, 246, 0.05); }
.icon-purple-glow { box-shadow: 0 0 15px rgba(168, 85, 247, 0.05); }
.icon-cyan-glow   { box-shadow: 0 0 15px rgba(6, 182, 212, 0.05);  }

.style-box-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.style-box-content p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
}

.philosophy-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.philosophy-panel {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
}

.philosophy-bottom-grid .philosophy-panel:first-child {
    border-right: 1px solid var(--glass-border);
}

.philosophy-text-block h2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.blue-gradient-text {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blue-bright-text { color: #3b82f6; }

.philosophy-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 480px;
}

.philo-rows-list { display: flex; flex-direction: column; }

.philo-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.row-icon-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background-color: rgba(59, 130, 246, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.row-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== EARLY ACCESS & CTA ===== */
.early-access-section,
.trading-cta-section {
    width: 100%;
    background-color: #0b0f16;
    color: #ffffff;
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.ea-wrapper {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.ea-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.spot-badge {
    background-color: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.ea-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.ea-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 440px;
}

.ea-check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.check-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
}

.ea-btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
    transition: transform 0.2s, background-color 0.2s;
}

.ea-btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

.ea-right-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.floating-dashboard-mock {
    width: 100%;
    max-width: 460px;
    background-color: #0e131f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: rotateY(-8deg) rotateX(4deg);
}

.mock-topbar {
    background-color: #111723;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mock-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.mock-title-bar {
    font-size: 0.65rem;
    color: #475569;
    font-weight: 600;
    margin-left: 0.5rem;
}

.mock-body-layout {
    display: flex;
    height: 240px;
}

.mock-sidebar-strip {
    width: 36px;
    background-color: #0c101a;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.ms-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.05);
}

.ms-dot.active { background-color: #3b82f6; }

.mock-main-panel {
    flex-grow: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mock-metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.mock-m-card {
    background-color: #111723;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.75rem;
}

.mmc-label {
    font-size: 0.6rem;
    color: #475569;
    display: block;
    margin-bottom: 0.25rem;
}

.mmc-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f8fafc;
}

.mock-table-strip {
    background-color: #111723;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mts-line {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    width: 100%;
}

.mts-line.header {
    width: 40%;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 0.25rem;
}

/* CTA Banner */
.trading-cta-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.cta-banner-card {
    width: 100%;
    max-width: 1140px;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    border-radius: 24px;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.cta-glow-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.cta-content-nodes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.cta-action-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-btn {
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-btn.whitespace-bg {
    background-color: #ffffff;
    color: #1e40af;
    border: none;
}

.cta-btn.whitespace-bg:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.cta-btn.outline-transparent {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-btn.outline-transparent:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
.solvigil-footer {
    width: 100%;
    max-width: 1240px;
    margin: 4rem auto 0;
    padding: 0 1.5rem 3rem;
    background-color: #0b0f16;
}

.footer-top-line {
    width: 100%;
    height: 1px;
    background-color: var(--glass-border);
    margin-bottom: 2.5rem;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.footer-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    background: linear-gradient(to right, #ffffff, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.footer-right-stack {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0b0f16;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-icon-btn:hover { transform: scale(1.06); }

.footer-email-box {
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.footer-email-box a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-email-box a:hover { color: #ffffff; }


/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* ── Tablet (≤1100px) ── */
@media (max-width: 1100px) {
    .hiw-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hiw-left,
    .connector-chain {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .step-desc { max-width: 100%; }
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    .philosophy-text-block h2 { font-size: 1.8rem; }

    .philosophy-panel {
        padding: 3rem 2rem;
        gap: 3rem;
    }

    .style-box-card { padding: 2.5rem 1.5rem; }
}

/* ── Tablet / Large Mobile (≤992px) ── */
@media (max-width: 992px) {
    .ea-title   { font-size: 2.2rem; }
    .cta-heading { font-size: 2.4rem; }
    .ea-wrapper  { gap: 2.5rem; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

    /* Navbar */
    .nav-container { padding: 1.25rem 1.5rem; }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 110;
    }

    .hamburger .bar {
        width: 24px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: rgba(11, 15, 23, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 7rem 2rem 3rem;
        gap: 3.5rem;
        margin-left: 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 105;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        width: 100%;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: auto;
    }

    .nav-actions .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .menu-toggle:checked ~ .nav-menu-wrapper { right: 0; }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle:checked ~ .hamburger .bar:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero */
    .hero-section {
        padding: 7rem 1.25rem 3rem;
        min-height: auto;
    }

    .hero-container { width: 100%; }

    .badge { padding: 0.4rem 1rem; }
    .badge-text { font-size: 0.75rem; letter-spacing: 0.5px; }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-large {
        width: 100% !important;
        max-width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-footer-text { font-size: 0.8rem; line-height: 1.4; }

    /* Preview */
    .live-frame-viewport { height: 350px; }
    .address-bar-mock { max-width: 60%; }

    /* Why grid */
    .why-grid  { grid-template-columns: 1fr; }
    .two-col   { grid-template-columns: 1fr; }

    /* How it works */
    .hiw-section  { padding: 2.5rem 1rem; }
    .hiw-heading  { font-size: 1.85rem; }
    .chart-card   { padding: 1rem; }
    .chart-stats  { gap: 0.5rem; }
    .cstat        { padding: 0.5rem; }
    .cstat-val    { font-size: 11px; }
    .step-icon    { width: 40px; height: 40px; }
    .step-line-fill { min-height: 65px; }

    /* Trading styles */
    .trading-styles-section { padding: 4rem 1rem; }
    .ts-main-title { font-size: 1.7rem; margin-bottom: 2.5rem; }

    .styles-top-grid { grid-template-columns: 1fr; }
    .styles-top-grid .style-box-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    .style-box-card { padding: 2.5rem 1.5rem; gap: 1.5rem; }

    .philosophy-bottom-grid { grid-template-columns: 1fr; }
    .philosophy-bottom-grid .philosophy-panel:first-child {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    .philosophy-panel { padding: 3rem 1.5rem; gap: 2.5rem; }

    /* Early access */
    .early-access-section { padding: 4rem 1rem; }
    .trading-cta-section  { padding: 0 1rem 4rem; }

    .ea-wrapper { grid-template-columns: 1fr; gap: 3.5rem; }

    .ea-left-content {
        align-items: center;
        text-align: center;
    }

    .ea-subtitle   { max-width: 100%; }
    .ea-check-list { align-items: flex-start; text-align: left; }

    .floating-dashboard-mock { transform: none; max-width: 100%; }

    .cta-banner-card { padding: 4rem 1.5rem; border-radius: 18px; }
    .cta-heading { font-size: 1.9rem; }
    .cta-desc    { font-size: 0.95rem; margin-bottom: 2rem; }

    .cta-action-row { flex-direction: column; width: 100%; gap: 0.75rem; }
    .cta-btn { width: 100%; padding: 0.75rem; }

    /* Footer */
    .solvigil-footer  { margin-top: 2.5rem; padding-bottom: 2rem; }
    .footer-wrapper   { flex-direction: column; gap: 2rem; text-align: center; }
    .footer-right-stack { flex-direction: column; gap: 1.5rem; }
}

/* ── Very Small (≤420px) ── */
@media (max-width: 420px) {
    .chart-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cct-right {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }
}

/* ── iPhone SE and similar (≤375px) ── */
@media (max-width: 375px) {
    .hero-title    { font-size: 2rem; }
    .hero-subtitle { font-size: 0.9rem; }
}