:root {
    --black: #060608;
    --panel: #0d0d10;
    --panel2: #111115;
    --border: #1c1c22;
    --border2: #2a2a35;
    --gold: #c8a94e;
    --gold-b: #e8c870;
    --gold-dim: #8a7235;
    --gold-bg: rgba(200, 169, 78, .06);
    --text: #e4dfd4;
    --muted: #7a756c;
    --muted2: #4a4640;
    --red: #e04848;
    --green: #3ec87a;
    --blue: #4a9eff;
    --ff-display: 'Cinzel', serif;
    --ff-body: 'Sora', sans-serif;
    --ff-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ═══════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(6, 6, 8, .7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 169, 78, .12);
    transition: background .3s;
}

.nav-logo {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.nav-links a {
    color: var(--muted);
    transition: color .2s;
}

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

.nav-cta {
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-b);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200, 169, 78, .28);
    border-radius: 10px;
    background: rgba(255,255,255,.02);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    z-index: 120;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 48px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/asset/image/Herosection.jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 0, 0, .82) 0%, rgba(6, 4, 2, .55) 50%, rgba(0, 0, 0, .82) 100%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 169, 78, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 169, 78, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(200, 169, 78, .18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-mono);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 78, .25);
    border-radius: 2px;
    padding: 6px 16px;
    margin-bottom: 32px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold-dim);
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 12px;
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-subtitle-line {
    width: 60px;
    height: 1px;
    background: var(--gold-dim);
    margin: 24px auto;
}

.hero-sub {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-sub em {
    color: var(--text);
    font-style: normal;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 16px 40px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background .2s, box-shadow .2s, transform .15s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-b);
    box-shadow: 0 0 40px rgba(200, 169, 78, .35);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 16px 40px;
    border: 1px solid rgba(200, 169, 78, .35);
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    transition: border-color .2s, background .2s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 78, .06);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

.hero-stat-label {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}




/* ═══════════════════════════════════════════
   TICKER TAPE
═══════════════════════════════════════════ */
.ticker-wrap {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-family: var(--ff-mono);
    font-size: .75rem;
    letter-spacing: .5px;
    border-right: 1px solid var(--border);
}

.ticker-item .sym {
    color: var(--gold);
    font-weight: 500;
}

.ticker-item .val {
    color: var(--text);
}

.ticker-item .chg {
    font-size: .68rem;
}

.chg-up {
    color: var(--green);
}

.chg-dn {
    color: var(--red);
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
section {
    padding: 120px 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: 3px;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold);
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

/* ═══════════════════════════════════════════
   ABOUT / FEATURES
═══════════════════════════════════════════ */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-media {
  flex: 1;
}

.about-content {
  flex: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

.feature-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: border-color .2s, transform .2s;
}

.feature-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-bg);
    border: 1px solid rgba(200, 169, 78, .2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1rem;
}

.feature-card h4 {
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: .78rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* Chart mockup */
.chart-mockup {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.chart-symbol {
    font-family: var(--ff-mono);
    font-size: .85rem;
    font-weight: 500;
    color: var(--gold);
}

.chart-price {
    font-family: var(--ff-mono);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
}

.chart-change {
    color: var(--green);
    font-size: .75rem;
}

.chart-area {
    padding: 20px;
}

.chart-body {
    position: relative;
    height: 220px;
}

/* Signal badges on chart */
.signals-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.signal-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.signal-pin .pin-label {
    font-family: var(--ff-mono);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

.pin-buy {
    background: rgba(62, 200, 122, .15);
    color: var(--green);
    border: 1px solid rgba(62, 200, 122, .4);
}

.pin-sell {
    background: rgba(224, 72, 72, .15);
    color: var(--red);
    border: 1px solid rgba(224, 72, 72, .4);
}

.pin-line {
    width: 1px;
    height: 20px;
}

.pin-line-buy {
    background: var(--green);
}

.pin-line-sell {
    background: var(--red);
}

.pin-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pin-dot-buy {
    background: var(--green);
}

.pin-dot-sell {
    background: var(--red);
}

/* conviction bar */
.conviction-row {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.conv-label {
    font-family: var(--ff-mono);
    font-size: .65rem;
    color: var(--muted);
    letter-spacing: 1px;
    width: 80px;
}

.conv-bar {
    flex: 1;
    height: 4px;
    background: var(--border2);
    border-radius: 2px;
    overflow: hidden;
}

.conv-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gold);
}

.conv-val {
    font-family: var(--ff-mono);
    font-size: .7rem;
    color: var(--gold);
    width: 28px;
    text-align: right;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
#how {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.step {
    padding: 0 24px;
    text-align: center;
}

.step-num {
    width: 64px;
    height: 64px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--panel);
    position: relative;
    z-index: 1;
    transition: background .3s, box-shadow .3s;
}

.step:hover .step-num {
    background: var(--gold-bg);
    box-shadow: 0 0 30px rgba(200, 169, 78, .2);
}

.step h3 {
    font-family: var(--ff-body);
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.step p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.7;
}

.step-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #c9a14a;
  color: #c9a14a;
  font-size: 0.85rem;
  transition: 0.3s;
}

.step-btn:hover {
  background: #c9a14a;
  color: #000;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
#pricing {
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px;
    margin: 32px 0 56px;
    gap: 4px;
}

.ptoggle-btn {
    font-family: var(--ff-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 8px 24px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    transition: all .2s;
}

.ptoggle-btn.active {
    background: var(--gold);
    color: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border-color: var(--gold-dim);
    background: var(--panel2);
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-mono);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 2px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .pricing-card.featured,
    .pricing-card.featured:hover {
        transform: none;
    }
}
.plan-name {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
}

.plan-price .amount {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}

.plan-price .currency {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    color: var(--muted);
    padding-bottom: 8px;
}

.plan-price .period {
    font-family: var(--ff-body);
    font-size: .78rem;
    color: var(--muted);
    padding-bottom: 10px;
}

.plan-save {
    font-family: var(--ff-mono);
    font-size: .68rem;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 28px;
    height: 18px;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 36px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
    color: var(--text);
    padding: 6px 0;
    line-height: 1.5;
}

.plan-features li::before {
    content: '◆';
    color: var(--gold-dim);
    font-size: .5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.plan-features li.muted {
    color: var(--muted);
}

.plan-features li.muted::before {
    color: var(--muted2);
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    transition: all .2s;
    display: block;
}

.plan-btn-gold {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.plan-btn-gold:hover {
    background: var(--gold-b);
    box-shadow: 0 0 30px rgba(200, 169, 78, .3);
}

.plan-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 78, .4);
}

.plan-btn-outline:hover {
    background: var(--gold-bg);
    border-color: var(--gold);
}

.pricing-note {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-note::before {
    content: '🔒';
    font-size: .75rem;
}

/* ═══════════════════════════════════════════
   COMING SOON — AI TRADING
═══════════════════════════════════════════ */
#ai-trading {
    position: relative;
    overflow: hidden;
}

.coming-soon-wrap {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.cs-top-bar {
    background: linear-gradient(90deg, rgba(255, 254, 250, 0.08), rgba(200, 169, 78, .04), rgba(200, 169, 78, .08));
    border-bottom: 1px solid rgba(200, 169, 78, .08);
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cs-label {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.cs-badge {
    font-family: var(--ff-mono);
    font-size: .62rem;
    letter-spacing: 2px;
    padding: 4px 12px;
    background: rgba(200, 169, 78, .1);
    border: 1px solid rgba(200, 169, 78, .3);
    border-radius: 2px;
    color: var(--gold);
}

.cs-body {
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cs-left {}

.cs-eyebrow {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: 3px;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cs-title {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}

.cs-title span {
    color: var(--gold);
}

.cs-desc {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cs-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.cs-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .8rem;
    color: var(--text);
    padding: 14px;
    background: rgba(200, 169, 78, .04);
    border: 1px solid rgba(200, 169, 78, .12);
    border-radius: 6px;
    line-height: 1.5;
}

.cs-feature-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.cs-notify {
    display: flex;
    gap: 12px;
}

.cs-input {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border2);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: .85rem;
    outline: none;
    transition: border-color .2s;
}

.cs-input:focus {
    border-color: var(--gold-dim);
}

.cs-input::placeholder {
    color: var(--muted2);
}

.cs-input-btn {
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}

.cs-input-btn:hover {
    background: var(--gold-b);
}

/* AI Terminal mockup */
.ai-terminal {
    background: #070709;
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden;
    font-family: var(--ff-mono);
    font-size: .72rem;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--panel2);
    border-bottom: 1px solid var(--border);
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.t-dot-r {
    background: #e04848;
}

.t-dot-y {
    background: #e8c870;
}

.t-dot-g {
    background: #3ec87a;
}

.terminal-title {
    font-size: .65rem;
    letter-spacing: 2px;
    color: var(--muted);
    margin-left: 8px;
    flex: 1;
}

.terminal-body {
    padding: 20px;
    line-height: 2.2;
}

.t-line {
    display: block;
}

.t-prompt {
    color: var(--gold-dim);
}

.t-key {
    color: var(--blue);
}

.t-val {
    color: var(--text);
}

.t-str {
    color: var(--green);
}

.t-num {
    color: #c9a84c;
}

.t-comment {
    color: var(--muted2);
}

.t-action {
    color: #ff9f43;
    font-weight: 500;
}

.t-cursor {
    display: inline-block;
    width: 7px;
    height: 13px;
    background: var(--gold);
    vertical-align: middle;
    animation: blink .9s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ═══════════════════════════════════════════
   WHAT TO EXPECT (teaser)
═══════════════════════════════════════════ */
.cs-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 64px;
}

.cs-pillar {
    background: var(--panel);
    padding: 36px 28px;
    position: relative;
    transition: background .2s;
}

.cs-pillar:hover {
    background: var(--panel2);
}

.pillar-num {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(200, 169, 78, .12);
    line-height: 1;
    margin-bottom: 16px;
}

.pillar-title {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.pillar-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#social {
    text-align: center;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testi-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    text-align: left;
    transition: border-color .2s;
}

.testi-card:hover {
    border-color: var(--gold-dim);
}

.testi-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: .86rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-bg);
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: .9rem;
    color: var(--gold);
}

.testi-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}

.testi-role {
    font-size: .72rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
    background: var(--panel);
    border-top: 1px solid var(--border);
    padding: 60px 48px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-col h5 {
    font-family: var(--ff-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: .82rem;
    color: var(--muted);
    padding: 5px 0;
    transition: color .2s;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: .75rem;
    color: var(--muted2);
}

.footer-risk {
    font-size: .7rem;
    color: var(--muted2);
    max-width: 600px;
    line-height: 1.6;
    margin-top: 8px;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .8rem;
    transition: border-color .2s, color .2s;
    cursor: pointer;
}

.social-link:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    #about {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cs-body {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cs-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 20px 24px;
        background: rgba(6, 6, 8, .98);
        border-bottom: 1px solid rgba(200, 169, 78, .18);
        box-shadow: 0 24px 60px rgba(0,0,0,.45);
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .nav-links .nav-cta {
        text-align: center;
        margin-top: 12px;
        border-bottom: none;
        padding: 12px 24px;
    }

    section {
        padding: 80px 24px;
    }

    .hero-stats {
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .cs-pillars {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cs-features-list {
        grid-template-columns: 1fr;
    }
}

.more-text {
    display: none;
}

.more-text.is-visible {
    display: inline;
}

.read-more-btn {
    margin-top: 15px;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: #d4af37;
    cursor: pointer;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    background: #d4af37;
    color: #000;
}

/* =========================================
   PREMIUM CHATBOT - ALGOTECH
========================================= */
.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
}

.chatbot-toggle {
    position: relative;
    width: 68px;
    height: 68px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0c36c 0%, #b68a1f 45%, #7c5b12 100%);
    color: #101010;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.chatbot-toggle:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 42px rgba(212, 175, 55, 0.35);
}

.chatbot-toggle-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(224, 195, 108, 0.45);
    animation: chatbotPulse 2s infinite;
}

@keyframes chatbotPulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.chatbot-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50px;
    background: #ff3b3b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 22px;
    box-shadow: 0 6px 14px rgba(255, 59, 59, 0.32);
}

.chatbot-window {
    position: absolute;
    right: 0;
    bottom: 86px;
    width: 390px;
    max-width: calc(100vw - 24px);
    height: 590px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(224, 195, 108, 0.18);
    background:
        radial-gradient(circle at top right, rgba(224, 195, 108, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.98));
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.chatbot-window.active {
    display: flex;
    animation: chatbotShow 0.28s ease;
}

@keyframes chatbotShow {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(224, 195, 108, 0.12);
    background: linear-gradient(135deg, rgba(224, 195, 108, 0.12), rgba(255, 255, 255, 0.02));
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #f1d98a;
}

.chatbot-header small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
}

.chatbot-close {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #f1d98a;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chatbot-close:hover {
    transform: rotate(90deg);
    background: rgba(224, 195, 108, 0.12);
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0c36c, #8c6818);
    color: #111;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(224, 195, 108, 0.18);
}

.chatbot-avatar-header {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 1.1rem;
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.chatbot-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 14px;
}

.chatbot-row.user-row {
    justify-content: flex-end;
}

.chatbot-row.user-row .chatbot-avatar {
    display: none;
}

.chatbot-bubble {
    max-width: 82%;
    padding: 12px 14px;
    border-radius: 18px;
    line-height: 1.65;
    font-size: 0.94rem;
    word-wrap: break-word;
    white-space: normal;
}

.chatbot-bubble.bot {
    background: rgba(255, 255, 255, 0.055);
    color: #f5f5f5;
    border: 1px solid rgba(224, 195, 108, 0.1);
    border-bottom-left-radius: 7px;
}

.chatbot-bubble.user {
    background: linear-gradient(135deg, #e0c36c, #8c6818);
    color: #121212;
    border-bottom-right-radius: 7px;
    font-weight: 600;
}

.chatbot-options {
    padding: 0 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-option-btn {
    width: 100%;
    border: 1px solid rgba(224, 195, 108, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #f2f2f2;
    padding: 13px 14px;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.93rem;
}

.chatbot-option-btn:hover {
    background: rgba(224, 195, 108, 0.11);
    border-color: rgba(224, 195, 108, 0.35);
    transform: translateY(-2px);
}

.chatbot-input-area {
    display: none;
    gap: 10px;
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(224, 195, 108, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.chatbot-input-area.active {
    display: flex;
}

.chatbot-input {
    flex: 1;
    height: 48px;
    border: 1px solid rgba(224, 195, 108, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    padding: 0 14px;
    outline: none;
}

.chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.chatbot-send-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0c36c, #8c6818);
    color: #111;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chatbot-send-btn:hover {
    transform: scale(1.05);
}

.chatbot-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 18px;
}

.chatbot-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e0c36c;
    opacity: 0.75;
    animation: chatbotTyping 1.1s infinite ease-in-out;
}

.chatbot-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.chatbot-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes chatbotTyping {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    50% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.chatbot-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #f1d98a;
    text-decoration: none;
    font-weight: 600;
}

.chatbot-mini-link:hover {
    color: #ffffff;
}

.highlight-account {
    animation: highlightPulse 1.5s ease 2;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 195, 108, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(224, 195, 108, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(224, 195, 108, 0);
    }
}

@media (max-width: 576px) {
    .chatbot-widget {
        right: 14px;
        bottom: 14px;
    }

    .chatbot-toggle {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .chatbot-window {
        width: calc(100vw - 18px);
        right: -3px;
        bottom: 74px;
        height: 72vh;
        max-height: 620px;
        border-radius: 20px;
    }

    .chatbot-bubble {
        max-width: 86%;
        font-size: 0.9rem;
    }

    .chatbot-option-btn {
        font-size: 0.9rem;
    }
}

.chatbot-welcome-bubble {
    position: absolute;
    right: 0;
    bottom: 84px;
    min-width: 220px;
    max-width: 280px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(15, 15, 15, 0.96);
    color: #f5f5f5;
    border: 1px solid rgba(224, 195, 108, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    font-size: 0.92rem;
    line-height: 1.5;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.chatbot-welcome-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-welcome-bubble::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -8px;
    width: 14px;
    height: 14px;
    background: rgba(15, 15, 15, 0.96);
    border-right: 1px solid rgba(224, 195, 108, 0.18);
    border-bottom: 1px solid rgba(224, 195, 108, 0.18);
    transform: rotate(45deg);
}

@media (max-width: 576px) {
    .chatbot-welcome-bubble {
        min-width: 200px;
        max-width: 240px;
        font-size: 0.88rem;
        bottom: 76px;
    }
}

