/* ==========================================================================
   Crypto Sphere — Premium Dark Fintech Design System
   Architecture: 75–85% Black/Dark Neutrals, 10–15% White/Grays, 5–10% Accents
   Accents: Orange (Brand CTA), Green (Profit), Blue (Data), Red (Stop-Loss)
   Zero Emojis. Inter + JetBrains Mono. Small radii (6px, 8px, 10px).
   ========================================================================== */

:root,
html[data-theme="dark"] {
    --bg-base: #080909;
    --bg-base-alt: #0A0B0C;
    --bg-surface: #111315;
    --bg-surface-secondary: #151819;
    --bg-surface-elevated: #191C1E;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-focus: #00F0FF;
    
    --text-primary: #F0F4F8;
    --text-secondary: #8E9BAE;
    --text-muted: #5A687D;
    
    --accent-orange: #EA7600;
    --accent-orange-hover: #C96500;
    --accent-orange-subtle: rgba(234, 118, 0, 0.12);
    --accent-orange-border: rgba(234, 118, 0, 0.35);
    
    --accent-green: #00F298;
    --accent-green-hover: #00d984;
    --accent-green-subtle: rgba(0, 242, 152, 0.12);
    --accent-green-border: rgba(0, 242, 152, 0.3);
    
    --accent-cyan: #00F0FF;
    --accent-cyan-subtle: rgba(0, 240, 255, 0.12);
    --accent-cyan-border: rgba(0, 240, 255, 0.3);
    
    --accent-blue: #0284c7;
    --accent-blue-subtle: rgba(2, 132, 199, 0.12);
    --accent-blue-border: rgba(2, 132, 199, 0.3);
    
    --accent-red: #EF4444;
    --accent-red-subtle: rgba(239, 68, 68, 0.12);
    --accent-red-border: rgba(239, 68, 68, 0.3);
    
    --header-bg: rgba(8, 9, 9, 0.88);
    --header-border: rgba(255, 255, 255, 0.07);
    --footer-bg: #050606;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.65);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', var(--font-sans);
    --font-mono: 'JetBrains Mono', monospace;
    
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

html[data-theme="light"] {
    --bg-base: #F6F7F8;
    --bg-base-alt: #EDEFF2;
    --bg-surface: #FFFFFF;
    --bg-surface-secondary: #F0F2F4;
    --bg-surface-elevated: #E5E8EB;
    
    --border-color: #D9DEE3;
    --border-subtle: #E2E6EA;
    --border-focus: #EA7600;
    
    --text-primary: #111315;
    --text-secondary: #5F676D;
    --text-muted: #899197;
    
    --accent-orange: #EA7600;
    --accent-orange-hover: #C96500;
    --accent-orange-subtle: rgba(234, 118, 0, 0.1);
    --accent-orange-border: rgba(234, 118, 0, 0.3);
    
    --accent-green: #0F9F6E;
    --accent-green-hover: #0c8259;
    --accent-green-subtle: rgba(15, 159, 110, 0.1);
    --accent-green-border: rgba(15, 159, 110, 0.3);
    
    --accent-blue: #2563EB;
    --accent-blue-subtle: rgba(37, 99, 235, 0.1);
    --accent-blue-border: rgba(37, 99, 235, 0.25);
    
    --accent-red: #DC3545;
    --accent-red-subtle: rgba(220, 53, 69, 0.1);
    --accent-red-border: rgba(220, 53, 69, 0.25);
    
    --header-bg: rgba(246, 247, 248, 0.92);
    --header-border: #D9DEE3;
    --footer-bg: #EAECEF;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --------------------------------------------------------------------------
   Ambient Animated Glow Background (Matches Gallery Theme)
   -------------------------------------------------------------------------- */
.showcase-ambient-bg {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.showcase-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.6;
    animation: orbFloat 24s infinite alternate ease-in-out;
}

.showcase-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.16) 0%, transparent 70%);
    top: -120px;
    left: 10%;
}

.showcase-orb-2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(0, 242, 152, 0.12) 0%, transparent 70%);
    top: 35%;
    right: -80px;
    animation-delay: -7s;
}

.showcase-orb-3 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.14) 0%, transparent 70%);
    bottom: 5%;
    left: 15%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.08); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

#main-header, #main-content, .footer-fintech, .footer {
    position: relative;
    z-index: 1;
}

.mono-num {
    font-family: var(--font-mono);
    font-feature-settings: "tnum" 1;
    letter-spacing: -0.01em;
}

.container-fintech,
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.section-fintech {
    padding: 88px 0;
    scroll-margin-top: 80px;
}

.hero-section-fintech,
section[id] {
    scroll-margin-top: 80px;
}

.section-header-wrap {
    margin-bottom: 48px;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.section-heading-fintech {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.split-panel-editorial,
.matrix-panel-heroic,
.hero-visual-panel,
.pricing-card-fintech,
.testimonial-card-fintech,
.benchmark-comparison-card,
.asymmetric-feature-card,
.capability-card-fintech,
.desk-notice-box {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.section-desc-fintech {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    line-height: 1.65;
}

/* ==========================================================================
   Buttons (Disciplined, Small Radius, No Giant Pills)
   ========================================================================== */
.btn-fintech {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.btn-fintech-sm {
    padding: 7px 14px;
    font-size: 0.85rem;
}

.btn-fintech-md {
    padding: 9px 18px;
    font-size: 0.92rem;
}

.btn-fintech-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-fintech-primary,
.btn-cta-orange {
    background: var(--accent-orange);
    color: #080909 !important;
    border-color: var(--accent-orange);
}

.btn-fintech-primary:hover,
.btn-cta-orange:hover {
    background: var(--accent-orange-hover);
    border-color: var(--accent-orange-hover);
}

.btn-fintech-secondary,
.btn-cta-secondary {
    background: var(--bg-surface);
    color: var(--text-primary) !important;
    border-color: var(--border-color);
}

.btn-fintech-secondary:hover,
.btn-cta-secondary:hover {
    background: var(--bg-surface-secondary);
    border-color: var(--text-secondary);
}

/* ==========================================================================
   Animated Logo Preloader
   ========================================================================== */
.cs-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-base);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    pointer-events: all;
}

.cs-preloader.cs-preloader-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cs-preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
}

.cs-preloader-logo-wrap {
    position: relative;
    width: 84px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-preloader-glow {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.28) 0%, rgba(37, 99, 235, 0.12) 50%, transparent 70%);
    animation: csGlowPulse 2s infinite ease-in-out;
    pointer-events: none;
}

@keyframes csGlowPulse {
    0%, 100% { transform: scale(0.85); opacity: 0.35; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

.cs-preloader-logo {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.45));
}

.cs-logo-stroke {
    stroke: #00f2fe;
    stroke-width: 8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: csStrokeDraw 2s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.cs-logo-fill-c, .cs-logo-fill-s {
    fill: #ffffff;
    opacity: 0.95;
    animation: csGlyphBreathe 2s infinite ease-in-out;
}

.cs-logo-fill-dot {
    fill: #00f2fe;
    animation: csDotBreathe 1.5s infinite ease-in-out;
}

@keyframes csStrokeDraw {
    0% { stroke-dashoffset: 1200; opacity: 0.3; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes csGlyphBreathe {
    0%, 100% { opacity: 0.85; transform: scale(0.99); transform-origin: center; }
    50% { opacity: 1; transform: scale(1.01); transform-origin: center; }
}

@keyframes csDotBreathe {
    0%, 100% { opacity: 0.7; transform: scale(0.9); transform-origin: 256.33px 167.22px; }
    50% { opacity: 1; transform: scale(1.12); transform-origin: 256.33px 167.22px; filter: drop-shadow(0 0 8px #00f2fe); }
}

/* Radar Beacon Ripple from Center Dot */
.cs-radar-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 242, 254, 0.7);
    animation: csRadarRipple 1.6s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes csRadarRipple {
    0% { transform: scale(0.4); opacity: 0.9; }
    100% { transform: scale(3.2); opacity: 0; }
}

.cs-preloader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cs-brand-name {
    font-family: var(--font-display, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.cs-brand-name .brand-accent {
    color: var(--accent-orange, #ea7600);
}

.cs-preloader-bar {
    width: 130px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.cs-preloader-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, #00f2fe, #ea7600, transparent);
    animation: csBarRunner 1.2s infinite ease-in-out;
}

@keyframes csBarRunner {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.cs-preloader-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header-fintech {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--header-border);
    transition: all 0.2s ease;
}

.header-fintech.header-scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper-fintech {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand-link-fintech {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.brand-logo-img {
    width: 38px;
    height: 25px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.brand-link-fintech:hover .brand-logo-img {
    transform: scale(1.04);
}

html[data-theme="light"] .brand-logo-img,
html[data-theme="light"] .logo-mark {
    filter: invert(1);
}

.brand-text-accent {
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu-fintech {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.35vw, 18px);
    list-style: none;
    white-space: nowrap;
}

.nav-item-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.15s ease;
    padding: 6px 2px;
    position: relative;
    letter-spacing: -0.01em;
}

.nav-item-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-link:hover,
.nav-item-link.active {
    color: var(--text-primary);
}

.nav-item-link:hover::after,
.nav-item-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-gallery-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-external-arrow {
    font-size: 0.75rem;
    color: var(--accent-orange);
    transition: transform 0.15s ease;
}

.nav-gallery-badge-link:hover .nav-external-arrow {
    transform: translate(2px, -2px);
}

.nav-actions-fintech {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Minimalist Single-Click Theme Switcher */
.btn-theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.btn-theme-toggle:hover {
    color: var(--text-primary);
    border-color: var(--border-color);
    background: var(--bg-surface-elevated);
}

.btn-theme-toggle .theme-icon-sun {
    display: none;
}
.btn-theme-toggle .theme-icon-moon {
    display: block;
}

html[data-theme="light"] .btn-theme-toggle .theme-icon-sun {
    display: block;
}
html[data-theme="light"] .btn-theme-toggle .theme-icon-moon {
    display: none;
}

/* Theme Switcher (Legacy dropdown fallback preserved) */
.theme-dropdown-wrap {
    position: relative;
}

.btn-theme-switcher {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.btn-theme-switcher:hover {
    border-color: var(--border-color);
    color: var(--text-primary);
    background: var(--bg-surface-secondary);
}

.theme-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 4px;
    min-width: 110px;
    box-shadow: var(--shadow-md);
    z-index: 1001;
    flex-direction: column;
    gap: 2px;
}

.theme-dropdown-menu.is-open {
    display: flex;
}

.theme-opt-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 10px;
    font-size: 0.82rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    transition: all 0.1s ease;
}

.theme-opt-btn:hover,
.theme-opt-btn.active {
    background: var(--bg-surface-secondary);
    color: var(--accent-orange);
}

.btn-nav-login {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 6px 10px;
    transition: color 0.15s ease;
}

.btn-nav-login:hover {
    color: var(--text-primary);
}

/* Mobile Toggle & Right-Slide Drawer */
.mobile-nav-toggle,
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.mobile-nav-toggle:hover,
.mobile-toggle:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--border-color);
}

.mobile-nav-drawer,
.mobile-drawer-backdrop,
.mobile-drawer {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    height: 100dvh !important;
    background: rgba(5, 8, 17, 0.82) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transform: none !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    border: none !important;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-nav-drawer.is-open,
.mobile-drawer-backdrop.is-active,
.mobile-drawer.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-drawer-inner {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 330px !important;
    max-width: 86% !important;
    height: auto !important;
    background: var(--bg-surface-elevated, #191C1E) !important;
    border-left: 1px solid var(--border-color) !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.7) !important;
    padding: 20px 20px 28px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%) !important;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
}

.mobile-nav-drawer.is-open .mobile-drawer-inner,
.mobile-drawer.is-open .mobile-drawer-inner {
    transform: translateX(0) !important;
}

.mobile-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.mobile-drawer-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
}

.mobile-drawer-close:hover {
    color: var(--text-primary);
    background: var(--bg-surface-elevated);
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-link:hover,
.mobile-drawer-link:active {
    color: var(--text-primary);
    background: var(--bg-surface-secondary);
}

.mobile-drawer-bottom {
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section-fintech {
    padding: 80px 0 64px 0;
}

.hero-grid-fintech {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-left-content {
    max-width: 580px;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.hero-headline-fintech {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-subheading-fintech {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 32px;
}

.hero-actions-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Bottom metrics: one connected 4-cell panel — hairline dividers via a
   1px gap over the border color, every cell centered with a minimum
   height so multi-line labels never break row alignment. Sits full-width
   under the hero grid (moved out of the left column), hence the top margin. */
.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    margin-top: 40px;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 100px;
    padding: 16px 8px;
    background: var(--bg-surface);
}

.hero-trust-val {
    font-size: clamp(1.5rem, 1.6vw + 0.85rem, 1.85rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-trust-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

/* Footer "Cookie Settings" reopen link (bound by cookie_consent.js) */
.footer-cookie-link {
    margin-left: 12px;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.footer-cookie-link:hover {
    color: var(--accent-orange);
}

/* Hero Visual Panel */
.hero-right-visual {
    width: 100%;
}

.hero-visual-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-surface-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.hero-panel-pair {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pair-symbol {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.pair-type-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--border-subtle);
    color: var(--text-secondary);
}

.hero-panel-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-live-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.market-stat-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-bull {
    background: var(--accent-green-subtle);
    color: var(--accent-green);
    border: 1px solid var(--accent-green-border);
}

.badge-bear {
    background: var(--accent-red-subtle);
    color: var(--accent-red);
    border: 1px solid var(--accent-red-border);
}

/* ==========================================================================
   Hero Demo Signal Panel
   ========================================================================== */
.demo-tag {
    background: rgba(249, 115, 22, 0.14);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.35);
}

.demo-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-surface-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.demo-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.demo-stat-lbl {
    font-size: clamp(0.56rem, 1.7vw, 0.68rem);
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.demo-stat-val {
    font-size: clamp(0.88rem, 3vw, 1.08rem);
    font-weight: 700;
    color: var(--text-primary);
}

.demo-pos {
    color: var(--accent-green);
}

.demo-neg {
    color: var(--accent-red);
}

.demo-signal-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 20px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
}

.demo-side-badge {
    font-size: clamp(0.6rem, 1.8vw, 0.7rem);
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.demo-side-badge.is-long {
    background: rgba(22, 199, 132, 0.14);
    color: var(--accent-green);
    border: 1px solid rgba(22, 199, 132, 0.4);
}

.demo-side-badge.is-short {
    background: rgba(239, 68, 68, 0.14);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.demo-tp-pill {
    font-size: clamp(0.56rem, 1.7vw, 0.66rem);
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
    font-family: var(--font-mono);
    white-space: nowrap;
}

.demo-tp-pill.tp-hit {
    background: rgba(22, 199, 132, 0.12);
    color: var(--accent-green);
    border: 1px solid rgba(22, 199, 132, 0.35);
}

.demo-tp-pill.tp-pending {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px dashed var(--border-color);
}

/* Light mode: the white tint above is invisible on the white card —
   use a subtle dark tint instead so the pending pill keeps its chip shape. */
html[data-theme="light"] .demo-tp-pill.tp-pending {
    background: rgba(17, 19, 21, 0.04);
}

.demo-chart-wrap {
    padding: 14px 16px 6px;
    background: var(--bg-base-alt);
}

.demo-chart-svg {
    display: block;
    width: 100%;
    height: clamp(160px, 34vw, 210px);
    pointer-events: none;
    user-select: none;
}

/* Label halo matches the chart background per theme:
   dark = #0A0B0C (same as the old hardcoded stroke), light = #EDEFF2.
   Keeps TP/ENTRY labels crisp and masks the zone line behind the text. */
.demo-chart-svg text {
    stroke: var(--bg-base-alt);
}

.demo-disclaimer {
    padding: 8px 16px 12px;
    font-size: clamp(0.56rem, 1.9vw, 0.64rem);
    line-height: 1.45;
    color: var(--text-muted);
    text-align: center;
    background: var(--bg-surface-secondary);
    border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Market Ticker
   ========================================================================== */
.ticker-section-fintech {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

.ticker-row-fintech {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ticker-item-fintech {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
}

.ticker-pair {
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.ticker-price {
    font-weight: 700;
    color: var(--text-primary);
}

.ticker-change {
    font-weight: 600;
    font-size: 0.8rem;
}

.ticker-change.positive {
    color: var(--accent-green);
}

.ticker-change.negative {
    color: var(--accent-red);
}

/* ==========================================================================
   Platform Preview Terminal
   ========================================================================== */
.terminal-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.terminal-bar {
    background: var(--bg-surface-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

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

.t-dot-red { background: #EF4444; }
.t-dot-yellow { background: #F59E0B; }
.t-dot-green { background: #10B981; }

.terminal-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.terminal-status-pill {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    background: var(--accent-green-subtle);
    padding: 2px 8px;
    border-radius: 4px;
}

.terminal-grid-3col {
    display: grid;
    grid-template-columns: 280px 1fr 310px;
    min-height: 380px;
}

.terminal-col-watchlist {
    border-right: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.terminal-pane-title {
    padding: 14px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-watchlist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background 0.15s ease;
}

.terminal-watchlist-row:hover,
.terminal-watchlist-row.active {
    background: var(--bg-surface-secondary);
}

.terminal-watchlist-row.active {
    border-left: 3px solid var(--accent-orange);
}

.wl-name {
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.wl-sub {
    font-size: 0.74rem;
    color: var(--text-muted);
    display: block;
}

.wl-price-box {
    text-align: right;
}

.wl-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: block;
}

.wl-chg {
    font-size: 0.76rem;
    font-weight: 600;
}

.wl-chg.positive { color: var(--accent-green); }
.wl-chg.negative { color: var(--accent-red); }

.terminal-col-chart {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-base-alt);
}

.terminal-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px;
    flex-wrap: wrap;
}

.chart-pair-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.chart-timeframe-pills {
    display: flex;
    gap: 6px;
}

.tf-pill {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--text-muted);
    cursor: pointer;
    background: var(--bg-surface);
}

.tf-pill.active {
    color: var(--text-primary);
    background: var(--border-color);
}

.terminal-svg-box {
    width: 100%;
    height: 200px;
    margin: 16px 0;
}

.terminal-chart-svg {
    width: 100%;
    height: 100%;
}

.terminal-chart-indicators {
    display: flex;
    gap: 10px 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.terminal-col-signal {
    border-left: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.signal-spec-card {
    padding: 20px;
}

.sig-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.sig-pair-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sig-badge {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.sig-badge-long {
    background: var(--accent-green-subtle);
    color: var(--accent-green);
    border: 1px solid var(--accent-green-border);
}

.sig-badge-short {
    background: var(--accent-red-subtle);
    color: var(--accent-red);
    border: 1px solid var(--accent-red-border);
}

.sig-data-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sig-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.sig-lbl {
    color: var(--text-muted);
}

.sig-val {
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================================================
   Capabilities Section (4 Minimalist Panels)
   ========================================================================== */
.capabilities-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fintech-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.fintech-panel:hover {
    transform: translateY(-2px);
    border-color: var(--text-muted);
}

.panel-num-accent {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.panel-heading-fintech {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.panel-body-fintech {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.panel-metric-chip {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--bg-surface-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

/* ==========================================================================
   Trading Signals Showcase
   ========================================================================== */
.signals-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.signal-card-fintech {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--bg-surface-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.signal-pair-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.signal-type-sub {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.signal-ladder-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ladder-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-secondary);
    border: 1px solid var(--border-subtle);
    font-size: 0.85rem;
}

.ladder-label {
    color: var(--text-secondary);
}

.ladder-val {
    font-weight: 700;
    color: var(--text-primary);
}

.ladder-pct {
    font-weight: 700;
    color: var(--accent-green);
}

.ladder-row.ladder-entry {
    border-color: var(--accent-orange-border);
    background: var(--accent-orange-subtle);
}

.ladder-row.ladder-stop {
    border-color: var(--accent-red-border);
    background: var(--accent-red-subtle);
}

.ladder-row.ladder-stop .ladder-pct {
    color: var(--accent-red);
}

.signal-card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 14px 20px;
    background: var(--bg-surface-secondary);
    border-top: 1px solid var(--border-subtle);
    gap: 10px;
    font-size: 0.78rem;
}

.sig-meta-item {
    display: flex;
    flex-direction: column;
}

.sig-meta-item span {
    color: var(--text-muted);
}

.sig-meta-item strong {
    color: var(--text-primary);
    margin-top: 2px;
}

/* ==========================================================================
   Audited Performance Section & Table
   ========================================================================== */
.performance-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.perf-stat-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.perf-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.perf-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.perf-table-wrap {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
}

.fintech-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.fintech-data-table th {
    background: var(--bg-surface-secondary);
    padding: 14px 20px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border-color);
}

.fintech-data-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.fintech-data-table tr:last-child td {
    border-bottom: none;
}

.fintech-data-table tr:hover td {
    background: var(--bg-surface-secondary);
}

.td-pair {
    font-weight: 700;
}

.table-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.badge-long {
    background: var(--accent-green-subtle);
    color: var(--accent-green);
    border: 1px solid var(--accent-green-border);
}

.badge-short {
    background: var(--accent-red-subtle);
    color: var(--accent-red);
    border: 1px solid var(--accent-red-border);
}

.table-result.positive {
    color: var(--accent-green);
    font-weight: 700;
}

.table-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.82rem;
}

.table-link:hover {
    text-decoration: underline;
}

.perf-cta-row {
    text-align: center;
    margin-top: 28px;
}

/* ==========================================================================
   How It Works (01, 02, 03, 04)
   ========================================================================== */
.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.step-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid-fintech {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.pricing-card-fintech {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pricing-card-fintech.featured {
    border-color: var(--accent-orange);
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.12);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-orange);
    color: #080909;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.08em;
}

.pricing-card-head {
    margin-bottom: 24px;
}

.plan-label-tag {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 8px 0 10px 0;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.pricing-rate-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.price-main {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-cycle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-alt-terms {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feat-check {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-features-list li strong {
    color: var(--text-primary);
}

.desk-notice-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.desk-notice-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
}

.desk-notice-desc {
    font-size: 0.86rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ==========================================================================
   Testimonials / Trust
   ========================================================================== */
.testimonials-grid-fintech {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card-fintech {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
}

.author-avatar-chip {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--accent-orange);
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion-wrap {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon-indicator {
    color: var(--text-muted);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-icon-indicator {
    transform: rotate(45deg);
    color: var(--accent-orange);
}

.faq-content {
    display: none;
    padding: 0 24px 20px 24px;
}

.faq-item.is-open .faq-content {
    display: block;
}

.faq-answer-text {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==========================================================================
   Institutional Footer
   ========================================================================== */
.footer-fintech {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px 0;
}

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

.footer-brand-bio {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 320px;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color 0.15s ease;
}

.footer-nav-link:hover {
    color: var(--text-primary);
}

/* Institutional Regulatory Disclaimer Container Card */
.footer-disclaimer-box {
    margin-top: 40px;
    margin-bottom: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 24px;
}

.footer-disclaimer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.footer-disclaimer-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.footer-disclaimer-box p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-row {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0f9f6e;
    box-shadow: 0 0 6px rgba(15, 159, 110, 0.6);
}

/* ==========================================================================
   Modern Container Patterns (Second-Pass Refinement)
   ========================================================================== */

/* 1. Split Editorial Panel */
.split-panel-editorial {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    margin-top: 36px;
}

.split-editorial-text {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--border-subtle);
}

.editorial-tagline {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.editorial-narrative {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.editorial-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.editorial-pillar-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pillar-bullet {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--accent-orange-subtle);
    border: 1px solid var(--accent-orange-border);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-mono);
    flex-shrink: 0;
    margin-top: 2px;
}

.pillar-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pillar-content p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.split-editorial-media {
    background: var(--bg-surface-secondary);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-card-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}

.comparison-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comp-badge-retail {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--accent-red-subtle);
    color: var(--accent-red);
    border: 1px solid var(--accent-red-border);
}

.comp-badge-sphere {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--accent-green-subtle);
    color: var(--accent-green);
    border: 1px solid var(--accent-green-border);
}

.comp-metric-title {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.comp-detail-text {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.5;
}

/* 2. Visual 7-Stage Signal Lifecycle Timeline */
.timeline-lifecycle-track {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
    position: relative;
}

.lifecycle-node-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.2s ease;
    min-width: 0;
}

.lifecycle-node-card:hover {
    border-color: var(--accent-orange-border);
    transform: translateY(-2px);
}

.node-step-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.node-idx {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: var(--font-mono);
}

.node-stage-pill {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: var(--bg-surface-secondary);
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid var(--border-subtle);
    white-space: nowrap;
}

.node-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 8px;
    overflow-wrap: break-word;
}

.node-desc {
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* 3. Deconstructed Signal Container (What You Receive) */
.deconstructed-signal-shell {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 40px;
}

.deconstructed-shell-head {
    background: var(--bg-surface-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.deconstructed-head-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.signal-hash-id {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.signal-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--accent-green-subtle);
    color: var(--accent-green);
    border: 1px solid var(--accent-green-border);
}

.live-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.deconstructed-shell-body {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
}

.deconstructed-params-col {
    padding: 32px;
    border-right: 1px solid var(--border-subtle);
}

.deconstructed-col-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.params-structured-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.param-item-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 8px 16px;
    padding: 12px 16px;
    background: var(--bg-surface-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
}

.param-label {
    color: var(--text-muted);
    font-weight: 500;
}

.param-value {
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.param-context {
    text-align: right;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.deconstructed-dispatch-col {
    padding: 32px;
    background: var(--bg-base-alt);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dispatch-payload-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.payload-head-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.payload-channel-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.payload-raw-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.65;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}

/* 4. Asymmetric Feature Matrix (Market Analysis) */
.asymmetric-matrix-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.95fr;
    gap: 24px;
    margin-top: 36px;
}

.matrix-panel-heroic {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.matrix-heroic-head {
    margin-bottom: 24px;
}

.matrix-heroic-head h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.matrix-heroic-head p {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.technical-schematic-box {
    background: var(--bg-base-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 20px 0;
}

.schematic-level-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px 12px;
    flex-wrap: wrap;
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.level-liquidity {
    background: rgba(239, 68, 68, 0.08);
    border: 1px dashed rgba(239, 68, 68, 0.4);
    color: #F87171;
}

.level-fvg {
    background: rgba(249, 115, 22, 0.08);
    border: 1px dashed rgba(249, 115, 22, 0.4);
    color: #FB923C;
}

.level-orderblock {
    background: rgba(22, 199, 132, 0.08);
    border: 1px solid rgba(22, 199, 132, 0.4);
    color: #4ADE80;
}

.matrix-sub-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.matrix-panel-sub {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.matrix-panel-sub h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.matrix-panel-sub p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* 5. Target Audience Matrix (Who is it for) */
.audience-matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.audience-quadrant-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.audience-quadrant-card:hover {
    transform: translateY(-2px);
    border-color: var(--text-muted);
}

.audience-tag-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 14px;
}

.audience-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.audience-challenge-box {
    margin-bottom: 16px;
}

.challenge-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.challenge-txt {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.audience-solution-box {
    margin-bottom: 20px;
}

.solution-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.solution-txt {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.audience-fit-tag {
    font-size: 0.74rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--bg-surface-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    align-self: flex-start;
    line-height: 1.4;
    max-width: 100%;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1239px) and (min-width: 881px) {
    .timeline-lifecycle-track {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 1200px) {
    .audience-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1080px) {
    .header-fintech nav,
    .header nav,
    .nav-menu-fintech,
    .nav-links {
        display: none !important;
    }
    .mobile-nav-toggle,
    .mobile-toggle {
        display: flex;
    }
    .btn-nav-login {
        display: none;
    }
    .split-panel-editorial {
        grid-template-columns: 1fr;
    }
    .split-editorial-text {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 36px 28px;
    }
    .split-editorial-media {
        padding: 28px;
    }
    .deconstructed-shell-body {
        grid-template-columns: 1fr;
    }
    .deconstructed-params-col {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 24px;
    }
    .deconstructed-dispatch-col {
        padding: 24px;
    }
    .asymmetric-matrix-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid-fintech {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-left-content {
        max-width: 100%;
    }
    .terminal-grid-3col {
        grid-template-columns: 1fr;
    }
    .terminal-col-watchlist {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
    .terminal-col-signal {
        border-left: none;
        border-top: 1px solid var(--border-subtle);
    }
    .capabilities-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .signals-showcase-grid {
        grid-template-columns: 1fr;
    }
    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid-fintech {
        grid-template-columns: 1fr;
    }
    .testimonials-grid-fintech {
        grid-template-columns: 1fr;
    }
    .performance-stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 880px) and (min-width: 581px) {
    .timeline-lifecycle-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .container-fintech,
    .container {
        padding: 0 18px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .header-fintech,
    .header {
        height: 58px;
    }
    .nav-wrapper-fintech,
    .nav-wrap {
        height: 58px;
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
    }
    .brand-link-fintech,
    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .brand-logo-img {
        width: 32px;
        height: 21px;
    }
    .brand-link-fintech span,
    .logo span {
        font-size: 1.05rem;
    }
    .nav-actions-fintech,
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }
    .btn-theme-toggle,
    .theme-toggle-btn {
        width: 34px;
        height: 34px;
    }
    .mobile-nav-toggle,
    .mobile-toggle {
        width: 36px;
        height: 36px;
    }
    .nav-actions-fintech > .btn-fintech,
    .nav-actions > .btn-nav-cta {
        display: none;
    }
    .hero-grid-fintech,
    .hero-left-content,
    .hero-right-visual,
    .hero-terminal-card-glass,
    .benchmark-comparison-card,
    .terminal-container,
    .matrix-panel-heroic,
    .pricing-grid-fintech,
    .pricing-card-fintech,
    .capabilities-grid-4,
    .process-grid-4,
    .testimonials-grid-fintech,
    .testimonial-card-fintech,
    .faq-accordion-wrap,
    .faq-item,
    .footer-top-grid,
    .split-panel-editorial,
    .deconstructed-shell,
    .mobile-user-card,
    .mobile-drawer-links,
    .mobile-drawer-link,
    .mobile-drawer-bottom,
    .mobile-drawer-top {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .section-fintech {
        padding: 64px 0;
    }
    .section-header-wrap {
        margin-bottom: 32px;
    }
    .section-heading-fintech {
        font-size: clamp(1.45rem, 5vw, 2rem);
        line-height: 1.2;
    }
    .section-desc-fintech {
        font-size: 0.92rem;
        line-height: 1.55;
    }
    .hero-headline-fintech {
        font-size: clamp(1.85rem, 6vw, 2.25rem);
    }
    .param-item-row {
        grid-template-columns: 1fr auto;
        gap: 6px 12px;
        align-items: baseline;
    }
    .param-label {
        white-space: normal;
    }
    .param-value {
        text-align: right;
    }
    .param-context {
        grid-column: 1 / -1;
        text-align: right;
        font-size: 0.74rem;
        padding-top: 4px;
        border-top: 1px dashed var(--border-subtle);
    }
    .matrix-panel-heroic {
        padding: 24px;
    }
    .capabilities-grid-4 {
        grid-template-columns: 1fr;
    }
    .process-grid-4 {
        grid-template-columns: 1fr;
    }
    .performance-stat-strip {
        grid-template-columns: 1fr;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    .ticker-row-fintech {
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .container-fintech,
    .container {
        padding: 0 16px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .section-fintech {
        padding: 48px 0;
    }
    .hero-section-fintech {
        padding: 48px 0 36px 0;
    }
    .hero-headline-fintech {
        font-size: clamp(1.6rem, 6.2vw, 2.15rem);
        line-height: 1.15;
        letter-spacing: -0.025em;
        margin-bottom: 14px;
    }
    .hero-subheading-fintech {
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 24px;
    }
    .hero-actions-wrap {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 28px;
    }
    .hero-actions-wrap .btn-fintech {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }
    /* Mobile: same connected panel, 2x2 — hairline grid stays (gap/border
       from base), cells keep a minimum height for a balanced block. */
    .hero-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 12px;
    }
    .hero-trust-item {
        min-height: 88px;
        padding: 14px 8px;
        gap: 4px;
    }
    .hero-trust-val {
        font-size: clamp(1.35rem, 5.8vw, 1.6rem);
    }
    .hero-trust-lbl {
        font-size: 0.67rem;
        letter-spacing: 0.05em;
    }
    .hero-panel-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px;
    }
    .hero-panel-price-box {
        width: 100%;
        justify-content: space-between;
    }
    .demo-stats-row {
        gap: 8px;
        padding: 10px 14px;
    }
    .demo-signal-row {
        gap: 6px;
        padding: 8px 14px;
    }
    .demo-chart-wrap {
        padding: 10px 12px 4px;
    }
    .demo-disclaimer {
        padding: 7px 14px 11px;
    }
    .matrix-panel-heroic,
    .split-editorial-text,
    .split-editorial-media,
    .benchmark-comparison-card,
    .pricing-card-fintech,
    .testimonial-card-fintech,
    .deconstructed-params-col,
    .deconstructed-dispatch-col {
        padding: 18px 16px !important;
    }
    .benchmark-comparison-card > div:first-child {
        flex-direction: column;
        align-items: stretch !important;
        gap: 14px !important;
    }
    .benchmark-comparison-card > div:first-child > div:last-child {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .benchmark-comparison-card > div:first-child > div:last-child > div {
        padding: 8px 12px !important;
        text-align: left !important;
    }
    .benchmark-comparison-card > div:first-child > div:last-child .mono-num {
        font-size: 1.15rem !important;
    }
    .perf-table-wrap {
        position: relative;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-md);
    }
    .perf-table-wrap::after {
        content: '← Swipe horizontally to inspect full table →';
        display: block;
        font-size: 0.72rem;
        font-family: var(--font-mono);
        color: var(--accent-cyan);
        text-align: center;
        padding: 8px;
        background: rgba(0, 240, 255, 0.05);
        border-top: 1px solid var(--border-subtle);
    }
    .fintech-data-table th,
    .fintech-data-table td {
        padding: 12px 14px !important;
        font-size: 0.82rem !important;
    }
    .audience-matrix-grid {
        grid-template-columns: 1fr;
    }
    .schematic-level-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 12px;
    }
    .schematic-level-row span:last-child {
        align-self: flex-end;
        font-weight: 700;
    }
}

@media (max-width: 580px) {
    .timeline-lifecycle-track {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .param-item-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .param-value {
        text-align: left;
    }
    .param-context {
        width: 100%;
        text-align: left;
        border-top: none;
        padding-top: 2px;
    }
}

@media (max-width: 420px) {
    .container-fintech,
    .container {
        padding: 0 12px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .hero-headline-fintech {
        font-size: 1.55rem;
        line-height: 1.18;
    }
    .section-heading-fintech {
        font-size: 1.3rem;
    }
    .hero-trust-item {
        min-height: 84px;
        padding: 12px 6px;
    }
    .hero-trust-val {
        font-size: 1.3rem;
    }
    .hero-trust-lbl {
        font-size: 0.65rem;
    }
    .price-main {
        font-size: 2rem !important;
    }
    .benchmark-comparison-card > div:first-child > div:last-child {
        grid-template-columns: 1fr !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1080px) {
    .header-fintech .btn-theme-toggle {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   Header Brand Intro: the "Crypto Sphere" wordmark next to the logo fades and
   collapses shortly after load so it does not duplicate the hero eyebrow.
   Brand remains covered by <title>/meta/og/JSON-LD, logo alt/aria and the
   hero eyebrow text.
   -------------------------------------------------------------------------- */
@keyframes brandTextOut {
    0% {
        opacity: 1;
        max-width: 240px;
        margin-left: 0;
    }
    100% {
        opacity: 0;
        max-width: 0;
        margin-left: -10px;
    }
}

.header-fintech .brand-link-fintech > span {
    max-width: 240px;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    animation: brandTextOut 0.55s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards;
}

.header-fintech .brand-logo-img {
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .header-fintech .brand-link-fintech > span {
        animation-duration: 0.01s;
        animation-delay: 0.6s;
    }
}

/* ==========================================================================
   Hero Demo Chart — TP2-cross attention flash (DemoTickFlash, JS section 5c)
   The burst ring is created lazily by JS on first signal; flash animations
   run via Web Animations API (focus-gated, reduced-motion respected in JS).
   ========================================================================== */
#demo-burst {
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
    pointer-events: none;
}
