/* ==========================================================================
   CryptoSphere - Crypterra Luxury Dark Design System
   Inspired by High-End Crypto-Fintech Interfaces
   ========================================================================== */

:root {
    --crypterra-bg: #080909;
    --crypterra-bg-surface: #0A0B0C;
    --crypterra-bg-card: rgba(17, 19, 21, 0.75);
    --crypterra-bg-card-hover: rgba(25, 28, 30, 0.88);
    --crypterra-border: rgba(255, 255, 255, 0.08);
    --crypterra-border-subtle: rgba(255, 255, 255, 0.04);
    --crypterra-border-glow: rgba(234, 118, 0, 0.35);
    --crypterra-cyan: #EA7600;
    --crypterra-cyan-glow: rgba(234, 118, 0, 0.28);
    --crypterra-cyan-dark: #C96500;
    --crypterra-blue: #EA7600;
    --crypterra-emerald: #00f298;
    --crypterra-emerald-glow: rgba(0, 242, 152, 0.25);
    --crypterra-red: #EF4444;
    --crypterra-gold: #ffb800;
    --crypterra-text-white: #ffffff;
    --crypterra-text-muted: #8E9BAE;
    --crypterra-text-dim: #5A687D;
    --crypterra-font-display: 'Outfit', sans-serif;
    --crypterra-font-sans: 'Inter', sans-serif;
    --crypterra-font-mono: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   1. Overhead Volumetric Spotlight Stage Lighting
   ========================================================================== */
.stage-lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1100px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Central overhead spotlight illumination */
.spotlight-cone {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 900px;
    background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(234, 118, 0, 0.16) 0%, rgba(234, 118, 0, 0.06) 40%, rgba(6, 8, 14, 0) 80%);
    filter: blur(40px);
    animation: spotlightPulse 8s ease-in-out infinite alternate;
}

/* Diagonal Twin Beams (like Crypterra stage lighting) */
.spotlight-beam-left {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%) rotate(-28deg);
    width: 320px;
    height: 950px;
    background: linear-gradient(180deg, rgba(234, 118, 0, 0.14) 0%, rgba(234, 118, 0, 0.04) 55%, transparent 85%);
    filter: blur(36px);
    transform-origin: top center;
}

.spotlight-beam-right {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%) rotate(28deg);
    width: 320px;
    height: 950px;
    background: linear-gradient(180deg, rgba(234, 118, 0, 0.14) 0%, rgba(0, 242, 152, 0.04) 55%, transparent 85%);
    filter: blur(36px);
    transform-origin: top center;
}

@keyframes spotlightPulse {
    0% { opacity: 0.85; transform: translateX(-50%) scale(0.98); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.03); }
}

/* Ambient Horizon Glow behind Hero Cards */
.hero-ambient-glow {
    position: absolute;
    top: 380px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 380px;
    background: radial-gradient(ellipse at center, rgba(234, 118, 0, 0.12) 0%, rgba(234, 118, 0, 0.06) 45%, transparent 75%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   2. Crypterra Hero Section Modernization
   ========================================================================== */
.hero-section-crypterra {
    position: relative;
    padding-top: 130px;
    padding-bottom: 90px;
    text-align: center;
    overflow: visible;
    z-index: 2;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(17, 19, 21, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(234, 118, 0, 0.3);
    border-radius: 9999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #8E9BAE;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(234, 118, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-pill-badge:hover {
    border-color: var(--crypterra-cyan);
    box-shadow: 0 0 28px rgba(234, 118, 0, 0.3);
    transform: translateY(-1px);
}

.hero-pill-badge .pulse-glow {
    width: 8px;
    height: 8px;
    background: var(--crypterra-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--crypterra-cyan);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title-crypterra {
    font-family: var(--crypterra-font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--crypterra-text-white);
    max-width: 960px;
    margin: 0 auto 20px auto;
    letter-spacing: -0.03em;
}

.hero-title-crypterra .cyan-text {
    background: linear-gradient(135deg, #EA7600 0%, #EA7600 60%, #00f298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-crypterra {
    font-family: var(--crypterra-font-sans);
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    color: var(--crypterra-text-muted);
    max-width: 780px;
    margin: 0 auto 36px auto;
    line-height: 1.65;
}

.hero-cta-crypterra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-crypterra-primary {
    background: linear-gradient(135deg, #EA7600 0%, #FF9A3D 100%);
    color: #080909 !important;
    font-family: var(--crypterra-font-display);
    font-weight: 700;
    font-size: 1.02rem;
    padding: 14px 34px;
    border-radius: 9999px;
    border: none;
    box-shadow: 0 0 28px rgba(234, 118, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-crypterra-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(234, 118, 0, 0.65), 0 12px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #FF9A3D 0%, #EA7600 100%);
}

.btn-crypterra-secondary {
    background: rgba(17, 19, 21, 0.8);
    backdrop-filter: blur(14px);
    color: #ffffff !important;
    font-family: var(--crypterra-font-sans);
    font-weight: 600;
    font-size: 0.96rem;
    padding: 14px 28px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-crypterra-secondary:hover {
    border-color: rgba(234, 118, 0, 0.5);
    background: rgba(25, 28, 30, 0.9);
    transform: translateY(-1px);
}

/* ==========================================================================
   3. Floating 3-Piece 3D Interface Showcase (Hero Centerpiece)
   ========================================================================== */
.hero-showcase-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 16px;
    perspective: 1200px;
    z-index: 2;
}

/* Left Mini Chart Card */
.showcase-card-left {
    flex: 0 1 310px;
    background: rgba(17, 19, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(234, 118, 0, 0.05);
    transform: translateY(20px) rotateY(6deg);
    transition: all 0.4s ease;
}

.showcase-card-left:hover {
    transform: translateY(10px) rotateY(0deg) scale(1.02);
    border-color: rgba(234, 118, 0, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(234, 118, 0, 0.15);
}

.card-coin-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.card-coin-badge .coin-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--crypterra-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-coin-badge .gain-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--crypterra-emerald);
    background: rgba(0, 242, 152, 0.12);
    padding: 3px 8px;
    border-radius: 6px;
}

.showcase-price-large {
    font-family: var(--crypterra-font-display);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--crypterra-text-white);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

/* SVG Candlestick Mockup */
.mini-candlestick-svg {
    width: 100%;
    height: 100px;
    display: block;
}

/* Center Interactive Swap & Execution Card (Primary Anchor) */
.showcase-card-center {
    flex: 0 1 420px;
    background: linear-gradient(180deg, rgba(17, 19, 21, 0.95) 0%, rgba(8, 9, 9, 0.98) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(234, 118, 0, 0.35);
    border-radius: 26px;
    padding: 26px;
    text-align: left;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 45px rgba(234, 118, 0, 0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.showcase-card-center:hover {
    box-shadow: 0 36px 85px rgba(0, 0, 0, 0.85), 0 0 60px rgba(234, 118, 0, 0.3);
    border-color: var(--crypterra-cyan);
}

.trade-tab-toggle {
    display: flex;
    background: rgba(8, 9, 9, 0.8);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trade-tab-btn {
    flex: 1;
    padding: 8px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: var(--crypterra-font-display);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--crypterra-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.trade-tab-btn.active {
    background: rgba(234, 118, 0, 0.15);
    color: var(--crypterra-cyan);
    box-shadow: 0 0 15px rgba(234, 118, 0, 0.2);
}

.trade-token-row {
    background: rgba(8, 9, 9, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    transition: border-color 0.2s ease;
}

.trade-token-row:hover {
    border-color: rgba(255, 255, 255, 0.14);
}

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

.token-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

.token-icon-btc {
    background: rgba(247, 147, 26, 0.15);
    color: #f7931a;
    border: 1px solid rgba(247, 147, 26, 0.3);
}

.token-icon-eth {
    background: rgba(234, 118, 0, 0.15);
    color: #627eea;
    border: 1px solid rgba(234, 118, 0, 0.3);
}

.token-symbol-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.94rem;
}

.token-balance-sub {
    font-size: 0.75rem;
    color: var(--crypterra-text-muted);
}

.token-amount-display {
    text-align: right;
}

.token-amount-val {
    font-family: var(--crypterra-font-mono);
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
}

.token-usd-val {
    font-size: 0.75rem;
    color: var(--crypterra-emerald);
    font-weight: 600;
}

.token-swap-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -4px 0;
    position: relative;
    z-index: 2;
}

.swap-action-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111315;
    border: 1px solid rgba(234, 118, 0, 0.35);
    color: var(--crypterra-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.swap-action-circle:hover {
    transform: rotate(180deg) scale(1.1);
    background: var(--crypterra-cyan);
    color: #000;
}

.btn-card-execute {
    width: 100%;
    margin-top: 18px;
    padding: 13px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #EA7600 0%, #C96500 100%);
    color: #080909;
    font-family: var(--crypterra-font-display);
    font-weight: 800;
    font-size: 0.96rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(234, 118, 0, 0.25);
}

.btn-card-execute:hover {
    background: linear-gradient(135deg, #EA7600 0%, #EA7600 100%);
    box-shadow: 0 10px 30px rgba(234, 118, 0, 0.45);
    transform: translateY(-1px);
}

/* Right Alert & Balance Card */
.showcase-card-right {
    flex: 0 1 310px;
    background: rgba(17, 19, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 152, 0.05);
    transform: translateY(20px) rotateY(-6deg);
    transition: all 0.4s ease;
}

.showcase-card-right:hover {
    transform: translateY(10px) rotateY(0deg) scale(1.02);
    border-color: rgba(0, 242, 152, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 242, 152, 0.15);
}

.right-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.alert-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 242, 152, 0.12);
    border: 1px solid rgba(0, 242, 152, 0.3);
    color: var(--crypterra-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.right-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
}

.right-card-sub {
    font-size: 0.74rem;
    color: var(--crypterra-text-muted);
}

.alert-pill-status {
    background: rgba(8, 9, 9, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 14px;
}

.alert-pill-status .alert-msg {
    font-size: 0.78rem;
    color: #8E9BAE;
    line-height: 1.4;
    margin-bottom: 6px;
}

.alert-pill-status .alert-meta {
    font-size: 0.7rem;
    color: var(--crypterra-cyan);
    font-family: var(--crypterra-font-mono);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-action-btns-row {
    display: flex;
    gap: 8px;
}

.btn-card-small {
    flex: 1;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-card-small.highlight {
    background: rgba(234, 118, 0, 0.12);
    border-color: rgba(234, 118, 0, 0.3);
    color: var(--crypterra-cyan);
}

.btn-card-small:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   4. Section: Advancing Technology (Left 3D Cards, Right Content)
   ========================================================================== */
.section-advancing {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

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

/* 3D Stacked Crypto Cards Visual */
.stacked-cards-container {
    position: relative;
    height: 360px;
    perspective: 1000px;
}

.crypto-card-stacked {
    position: absolute;
    width: 320px;
    height: 200px;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.crypto-card-stacked.card-back {
    top: 0;
    left: 40px;
    background: linear-gradient(135deg, #151819 0%, #191C1E 100%);
    border: 1px solid rgba(234, 118, 0, 0.35);
    transform: rotate(-12deg) scale(0.92);
    opacity: 0.75;
}

.crypto-card-stacked.card-middle {
    top: 40px;
    left: 70px;
    background: linear-gradient(135deg, #111315 0%, #151819 100%);
    border: 1px solid rgba(234, 118, 0, 0.3);
    transform: rotate(-4deg) scale(0.96);
    opacity: 0.9;
}

.crypto-card-stacked.card-front {
    top: 80px;
    left: 100px;
    background: linear-gradient(135deg, #111315 0%, #151819 100%);
    border: 1px solid var(--crypterra-cyan);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(234, 118, 0, 0.25);
    transform: rotate(4deg);
    z-index: 3;
}

.stacked-cards-container:hover .crypto-card-stacked.card-front {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.85), 0 0 50px rgba(234, 118, 0, 0.35);
}

.card-chip {
    width: 38px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 6px;
}

.card-brand-logo {
    font-family: var(--crypterra-font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.card-number {
    font-family: var(--crypterra-font-mono);
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
}

.card-holder-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--crypterra-text-muted);
    text-transform: uppercase;
}

.card-holder-val {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Right Content Area */
.advancing-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(234, 118, 0, 0.1);
    border: 1px solid rgba(234, 118, 0, 0.25);
    border-radius: 9999px;
    color: var(--crypterra-cyan);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.advancing-title {
    font-family: var(--crypterra-font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--crypterra-text-white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.advancing-desc {
    font-size: 1.05rem;
    color: var(--crypterra-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.advancing-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advancing-stat-box {
    background: rgba(17, 19, 21, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.advancing-stat-box:hover {
    border-color: rgba(234, 118, 0, 0.3);
    transform: translateY(-3px);
    background: rgba(25, 28, 30, 0.7);
}

.advancing-stat-num {
    font-family: var(--crypterra-font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.advancing-stat-num.cyan {
    color: var(--crypterra-cyan);
}

.advancing-stat-lbl {
    font-size: 0.82rem;
    color: var(--crypterra-text-muted);
    font-weight: 500;
}

/* ==========================================================================
   5. Section: Smart Trading Tools Platform (6-Pillar Feature Grid)
   ========================================================================== */
.section-tools-platform {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.tools-platform-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
}

.tools-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tool-card {
    background: rgba(17, 19, 21, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234, 118, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tool-card:hover {
    border-color: rgba(234, 118, 0, 0.35);
    background: rgba(17, 19, 21, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(234, 118, 0, 0.12);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(234, 118, 0, 0.1);
    border: 1px solid rgba(234, 118, 0, 0.25);
    color: var(--crypterra-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.tool-icon-wrap.emerald {
    background: rgba(0, 242, 152, 0.1);
    border-color: rgba(0, 242, 152, 0.25);
    color: var(--crypterra-emerald);
}

.tool-icon-wrap.purple {
    background: rgba(234, 118, 0, 0.1);
    border-color: rgba(234, 118, 0, 0.25);
    color: #FF9A3D;
}

.tool-icon-wrap.gold {
    background: rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.25);
    color: var(--crypterra-gold);
}

.tool-card-title {
    font-family: var(--crypterra-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.tool-card-desc {
    font-size: 0.92rem;
    color: var(--crypterra-text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.tool-tag-pill {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--crypterra-cyan);
    border: 1px solid rgba(234, 118, 0, 0.2);
}

/* ==========================================================================
   6. Section: Head-to-Head Comparison Table (Disruptive $20/yr Copy Trading)
   ========================================================================== */
.section-comparison {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

.comparison-table-wrap {
    background: rgba(17, 19, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    overflow-x: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    font-size: 0.94rem;
}

.comparison-table th {
    padding: 16px 20px;
    font-family: var(--crypterra-font-display);
    font-weight: 700;
    color: var(--crypterra-text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.col-brand {
    text-align: left;
}

.comparison-table th.col-highlight {
    background: rgba(234, 118, 0, 0.1);
    color: var(--crypterra-cyan);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(234, 118, 0, 0.35);
    border-bottom: none;
    font-size: 1.08rem;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--crypterra-text-muted);
}

.comparison-table td.col-brand {
    text-align: left;
    font-weight: 600;
    color: #ffffff;
}

.comparison-table td.col-highlight {
    background: rgba(234, 118, 0, 0.06);
    border-left: 1px solid rgba(234, 118, 0, 0.35);
    border-right: 1px solid rgba(234, 118, 0, 0.35);
    color: #ffffff;
    font-weight: 700;
}

.comparison-table tr:last-child td.col-highlight {
    border-bottom: 1px solid rgba(234, 118, 0, 0.35);
    border-radius: 0 0 12px 12px;
}

.table-check-cyan {
    color: var(--crypterra-cyan);
    font-weight: 800;
    font-size: 1.15rem;
}

.table-cross {
    color: var(--crypterra-text-dim);
}

.table-price-winner {
    font-size: 1.25rem;
    font-family: var(--crypterra-font-display);
    color: var(--crypterra-cyan);
    font-weight: 800;
}

/* ==========================================================================
   7. Section: Explore Leading Crypto Assets (Orbit & Ticker)
   ========================================================================== */
.section-asset-orbit {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.asset-orbit-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 30px;
}

.asset-chips-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.asset-chip-live {
    background: rgba(17, 19, 21, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.asset-chip-live:hover {
    border-color: var(--crypterra-cyan);
    background: rgba(25, 28, 30, 0.95);
    box-shadow: 0 0 20px rgba(234, 118, 0, 0.2);
    transform: translateY(-2px);
}

.asset-chip-live .chip-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
}

.asset-chip-live .chip-symbol {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}

.asset-chip-live .chip-price {
    font-family: var(--crypterra-font-mono);
    font-size: 0.88rem;
    color: #8E9BAE;
    font-weight: 600;
}

.asset-chip-live .chip-change {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--crypterra-emerald);
}

/* ==========================================================================
   8. Section: Testimonials ("Trusted by Traders Worldwide")
   ========================================================================== */
.section-testimonials {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

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

.testimonial-card-crypterra {
    background: rgba(17, 19, 21, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card-crypterra:hover {
    border-color: rgba(234, 118, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.testimonial-user-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EA7600 0%, #EA7600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #080909;
    font-weight: 800;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--crypterra-cyan);
}

.testimonial-quote {
    font-size: 0.92rem;
    color: #8E9BAE;
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-stars {
    color: var(--crypterra-gold);
    font-size: 0.88rem;
    letter-spacing: 2px;
}

/* ==========================================================================
   9. Gallery Sticky Ribbon
   ========================================================================== */
.gallery-cta-ribbon {
    background: linear-gradient(90deg, rgba(234, 118, 0, 0.12) 0%, rgba(234, 118, 0, 0.12) 50%, rgba(0, 242, 152, 0.12) 100%);
    border: 1px solid rgba(234, 118, 0, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    margin: 30px auto;
    max-width: 1140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery-cta-text {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
}

.gallery-cta-text strong {
    color: var(--crypterra-cyan);
}

/* ==========================================================================
   10. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
    .hero-showcase-container {
        flex-direction: column;
        gap: 24px;
    }
    .showcase-card-left, .showcase-card-right {
        flex: 1 1 auto;
        width: 100%;
        max-width: 440px;
        transform: none !important;
    }
    .showcase-card-center {
        max-width: 440px;
        width: 100%;
    }
    .advancing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stacked-cards-container {
        display: none;
    }
    .tools-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tools-grid-6 {
        grid-template-columns: 1fr;
    }
    .hero-section-crypterra {
        padding-top: 100px;
    }
    .hero-title-crypterra {
        font-size: 2.2rem;
    }
    .advancing-stats-row {
        grid-template-columns: 1fr;
    }
    .comparison-table-wrap {
        padding: 16px;
    }
    .comparison-table th, .comparison-table td {
        padding: 12px 10px;
        font-size: 0.82rem;
    }
    .onboarding-grid-4 {
        grid-template-columns: 1fr;
    }
    .tools-platform-outer-box {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   11. Mirror Floor Reflection & Enhanced Glass Containers
   ========================================================================== */
.hero-showcase-wrapper {
    position: relative;
    padding-bottom: 30px;
}

.hero-reflection-floor {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1020px;
    height: 70px;
    background: radial-gradient(ellipse at center, rgba(234, 118, 0, 0.16) 0%, rgba(234, 118, 0, 0.08) 45%, transparent 75%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

/* 4-Step Onboarding Bento Cards (Crypterra Journey) */
.section-onboarding {
    padding: 70px 0 90px 0;
    position: relative;
    z-index: 2;
}

.onboarding-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 40px auto 0 auto;
}

.onboarding-card {
    background: rgba(17, 19, 21, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.onboarding-card:hover {
    border-color: rgba(234, 118, 0, 0.35);
    background: rgba(17, 19, 21, 0.88);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(234, 118, 0, 0.1);
}

.onboarding-card .step-number-watermark {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--crypterra-font-mono);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.onboarding-card .step-title {
    font-family: var(--crypterra-font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.onboarding-card .step-desc {
    font-size: 0.88rem;
    color: var(--crypterra-text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.onboarding-card .step-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--crypterra-cyan);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.onboarding-card .step-link:hover {
    gap: 10px;
    text-decoration: underline;
}

/* Smart Trading Tools Platform Master Outer Box Container */
.tools-platform-outer-box {
    background: rgba(8, 9, 9, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.06);
    position: relative;
}

/* ==========================================================================
   12. Section: Ultra-Fast Real-Time Crypto Screener (Faster than TradingView)
   ========================================================================== */
.section-screener {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

.screener-terminal-card {
    background: rgba(8, 9, 9, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(234, 118, 0, 0.25);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(234, 118, 0, 0.1);
    margin-top: 36px;
}

.screener-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.screener-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.screener-tab-btn {
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--crypterra-text-muted);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.screener-tab-btn.active, .screener-tab-btn:hover {
    background: rgba(234, 118, 0, 0.12);
    border-color: rgba(234, 118, 0, 0.35);
    color: var(--crypterra-cyan);
    box-shadow: 0 0 15px rgba(234, 118, 0, 0.15);
}

.screener-search-wrap {
    position: relative;
    min-width: 240px;
}

.screener-search-input {
    width: 100%;
    padding: 8px 14px 8px 36px;
    border-radius: 9999px;
    background: rgba(8, 9, 9, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.84rem;
    outline: none;
    transition: border-color 0.2s;
}

.screener-search-input:focus {
    border-color: var(--crypterra-cyan);
}

.screener-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--crypterra-text-dim);
    pointer-events: none;
}

.screener-table-wrap {
    overflow-x: auto;
}

.screener-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    font-size: 0.88rem;
}

.screener-table th {
    padding: 12px 16px;
    color: var(--crypterra-text-dim);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.screener-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
    white-space: nowrap;
    transition: background 0.25s ease;
}

.screener-table tr:hover td {
    background: rgba(234, 118, 0, 0.03);
}

.screener-table .coin-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.screener-table .coin-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.screener-meter-bar {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 4px;
}

.screener-meter-fill {
    height: 100%;
    border-radius: 9999px;
    background: var(--crypterra-cyan);
}

.screener-meter-fill.emerald {
    background: var(--crypterra-emerald);
}

.screener-meter-fill.gold {
    background: var(--crypterra-gold);
}

.screener-signal-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.screener-signal-tag.strong-buy {
    background: rgba(0, 242, 152, 0.15);
    color: var(--crypterra-emerald);
    border: 1px solid rgba(0, 242, 152, 0.3);
}

.screener-signal-tag.breakout {
    background: rgba(234, 118, 0, 0.15);
    color: var(--crypterra-cyan);
    border: 1px solid rgba(234, 118, 0, 0.3);
}

.screener-signal-tag.scalp {
    background: rgba(234, 118, 0, 0.15);
    color: #FF9A3D;
    border: 1px solid rgba(234, 118, 0, 0.3);
}

.screener-signal-tag.oversold {
    background: rgba(255, 184, 0, 0.15);
    color: var(--crypterra-gold);
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.screener-btn-action {
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.screener-btn-action.copy {
    background: linear-gradient(135deg, #EA7600 0%, #C96500 100%);
    color: #080909;
    border: none;
}

.screener-btn-action.copy:hover {
    box-shadow: 0 0 16px rgba(234, 118, 0, 0.5);
    transform: translateY(-1px);
}

.screener-btn-action.chart {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.screener-btn-action.chart:hover {
    border-color: var(--crypterra-cyan);
    color: var(--crypterra-cyan);
}

.screener-footer-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--crypterra-text-muted);
}

/* Price Flash Animation for Real-Time Tick */
@keyframes priceTickGreen {
    0% { background-color: rgba(0, 242, 152, 0.35); }
    100% { background-color: transparent; }
}

@keyframes priceTickRed {
    0% { background-color: rgba(255, 51, 102, 0.35); }
    100% { background-color: transparent; }
}

.tick-up {
    animation: priceTickGreen 0.75s ease-out;
}

.tick-down {
    animation: priceTickRed 0.75s ease-out;
}

/* ==========================================================================
   13. Circular Orbital Crypto Assets Arc (Exact Image Replica)
   ========================================================================== */
.orbital-arc-wrapper {
    position: relative;
    max-width: 680px;
    height: 240px;
    margin: 40px auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-arc-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbital-token-node {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 19, 21, 0.95);
    border: 1px solid rgba(234, 118, 0, 0.35);
    box-shadow: 0 0 20px rgba(234, 118, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translate(-50%, -50%);
}

.orbital-token-node:hover {
    transform: translate(-50%, -50%) scale(1.22);
    border-color: var(--crypterra-cyan);
    box-shadow: 0 0 30px rgba(234, 118, 0, 0.55);
    z-index: 5;
}
