/* 
   Style Name: Luminous Precision V26 (Exchange Hub)
*/
:root {
    --bg-main: #030303;
    --bg-glass: rgba(255, 255, 255, 0.02);
    --bg-glass-hover: rgba(255, 255, 255, 0.05);
    --border-subtle: rgba(255, 255, 255, 0.05);

    /* PALETTE: Electric Cyan */
    --primary-glow: #00E5FF;
    --secondary-glow: #2979FF;

    --text-primary: #EDEDED;
    --text-secondary: #9CA3AF;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Times New Roman', serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-xl: 32px;
    --easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h1 {
    font-size: 5.5rem;
    font-weight: 800;
}

h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

/* Canvas & Globe Viz (V14: Right Aligned) */
#hero-canvas {
    display: none;
}

/* Scheme F: Rising Digital Tiles */
#bg-digital-tiles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #050608; /* Dark Graphite */
    pointer-events: none;
}

#globe-viz {
    position: fixed;
    right: 0;
    /* Stick to right */
    top: 0;
    width: 60vw;
    /* Take up 60% width */
    height: 100vh;
    z-index: -1;
    pointer-events: all;
    /* Allow interaction */
    /* Fade out the left edge significantly to blend with text area */
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 60px 40px;
    /* Extended padding for gradient */
    background: linear-gradient(to bottom, #030303 20%, rgba(3, 3, 3, 0.8) 60%, rgba(3, 3, 3, 0) 100%);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    border-bottom: none;
}

.nav-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    display: block;
    width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

/* Utility: Mobile Only */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.nav-cta {
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s;
    white-space: nowrap; /* Prevent wrapping */
}

.nav-link:hover {
    color: #fff;
}

.nav-cta {
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav-cta:hover {
    transform: scale(1.05);
}

/* Hero (V14: Adjustment for Left Text) */
.hero-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.hero-visual {
    height: 100%;
    pointer-events: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ccc;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-glow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 40%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.btn-primary {
    padding: 18px 48px;
    background: #fff;
    color: #000;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    box-shadow: 0 0 80px rgba(0, 229, 255, 0.4);
    transform: translateY(-4px);
}

.btn-glass {
    padding: 18px 48px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-stats-bar {
    display: flex;
    gap: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    letter-spacing: -0.05em;
}

.stat-lbl {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Utils */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.d-block {
    display: block;
}

.hero-title {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
}

.section {
    padding: 180px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.01);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(12px);
    transition: all 1s var(--easing);
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

[data-delay="100"] {
    transition-delay: 0.1s;
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="300"] {
    transition-delay: 0.3s;
}

/* Bento */
.bento-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--bg-glass);
    border-radius: var(--radius-xl);
    padding: 50px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.3), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    background: var(--bg-glass-hover);
}

.icon-box {
    margin-bottom: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 0, 0, 0));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-glow);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

/* V26: Exchange Hub Split */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.platform-card-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    cursor: default;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.platform-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

/* Brands */
.platform-card.paypal:hover {
    border-color: rgba(41, 121, 255, 0.5);
    box-shadow: 0 0 30px rgba(41, 121, 255, 0.1);
}

.platform-card.venmo:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}

.platform-card.cash:hover {
    border-color: rgba(28, 200, 138, 0.5);
    box-shadow: 0 0 30px rgba(28, 200, 138, 0.1);
}

.plat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.plat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.plat-info p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Ticker Wall */
.currency-ticker-box {
    background: transparent;
    border: none;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    /* V28: True transparency using mask-image instead of background overlays */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.currency-scroller {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.currency-scroller-inner {
    display: flex;
    gap: 16px;
    animation: scrollLeft 40s linear infinite;
}

/* Alternating Directions & Speeds for organic flow */
.currency-scroller:nth-child(1) .currency-scroller-inner {
    animation-duration: 45s;
}

.currency-scroller:nth-child(2) .currency-scroller-inner {
    animation-direction: reverse;
    animation-duration: 50s;
}

.currency-scroller:nth-child(3) .currency-scroller-inner {
    animation-duration: 40s;
}

.currency-scroller:nth-child(4) .currency-scroller-inner {
    animation-direction: reverse;
    animation-duration: 55s;
}

.ticker-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    font-family: 'JetBrains Mono';
    color: #ccc;
    white-space: nowrap;
    font-size: 0.9rem;
    border: none;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* COMPARISON V21: Holographic Grid (No 3D) */
.comp-grid-holographic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center; /* Center vertically */
    margin-top: 60px;
}

/* Base Card Style */
.comp-card {
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Glass Panel (Side Cards) */
.glass-panel {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.8;
}

.glass-panel:hover {
    transform: translateY(-5px);
    opacity: 1;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Hero Panel (Center Card) */
.hero-glass-panel {
    background: linear-gradient(165deg, rgba(3, 3, 3, 0.6) 0%, rgba(0, 229, 255, 0.05) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.15);
    transform: scale(1.05); /* Slight pop */
    z-index: 2;
}

.hero-glass-panel:hover {
    transform: scale(1.07);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 229, 255, 0.2);
}

/* Typography & Content */
.comp-header {
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.comp-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-gradient {
    background: linear-gradient(135deg, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2rem !important; /* Larger for hero */
}

.comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.comp-row:last-child {
    border-bottom: none;
}

.hero-row {
    border-bottom-color: rgba(0, 229, 255, 0.1);
}

/* Labels */
.c-lbl {
    font-size: 0.9rem;
    color: #888;
}

.c-val {
    font-size: 1rem;
    font-family: var(--font-mono);
    color: #ddd;
    font-weight: 500;
}

.c-val.dimmed {
    color: #777;
}

.text-warn {
    color: #ccc; /* Updated per new style */
    text-decoration: underline dotted #666;
}

.icon-cross {
    color: #555;
    font-size: 1.2rem;
    line-height: 1;
}

/* Hero Values */
.c-lbl-hero {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.c-val-hero {
    font-size: 1.2rem;
    font-family: var(--font-mono);
    color: #fff;
    font-weight: 700;
}

.price-glow {
    color: var(--primary-glow);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.icon-check {
    width: 24px;
    height: 24px;
    stroke: var(--primary-glow);
    stroke-width: 3;
    fill: none;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

@media (max-width: 1024px) {
    .comp-grid-holographic {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-glass-panel {
        transform: none;
    }
}


/* Process */
.process-pipeline-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.process-pipeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-glow);
    border-radius: 10px;
    width: 20px;
    box-shadow: 0 0 20px var(--primary-glow);
    animation: pipelineTravel 4s linear infinite;
}

@keyframes pipelineTravel {
    0% {
        left: 0;
        width: 0;
        opacity: 0;
    }

    5% {
        left: 0;
        width: 100px;
        opacity: 1;
    }

    95% {
        left: 100%;
        width: 50px;
        opacity: 1;
    }

    100% {
        left: 100%;
        width: 0;
        opacity: 0;
    }
}

.process-steps-v2 {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -30px;
}

.step-item-v2 {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-dot {
    width: 20px;
    height: 20px;
    background: #000;
    border: 2px solid #555;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.step-item-v2:nth-child(1) .step-dot {
    border-color: var(--primary-glow);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Editorial Case Showcase */
.case-showcase {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.case-stage {
    padding: 80px 5% 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    min-height: 400px;
    position: relative;
}

.case-stage::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.case-metric-box {
    transition: all 0.5s var(--easing);
    opacity: 1;
    transform: translateY(0);
}

.case-metric-big {
    font-size: 6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    background: linear-gradient(135deg, #fff 20%, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.case-metric-label-big {
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.case-quote-box {
    transition: all 0.5s var(--easing);
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.case-quote-big {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.case-author-big {
    font-size: 1rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-author-big::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #444;
}

.fade-out-up {
    opacity: 0;
    transform: translateY(-20px);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
}

.case-tabs {
    display: flex;
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.2);
}

.case-tab {
    flex: 1;
    padding: 25px 0;
    text-align: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
}

.case-tab:hover {
    background: rgba(255, 255, 255, 0.02);
    color: #aaa;
}

.case-tab.active {
    border-bottom-color: var(--primary-glow);
    color: #fff;
    background: rgba(0, 229, 255, 0.02);
}

/* About & FAQ (Keep existing) */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-content h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    color: #fff;
}

.about-box {
    border-left: 1px solid var(--border-subtle);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-stat h4 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.about-stat p {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 30px 0;
    cursor: pointer;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.2s;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    color: #666;
}

.faq-icon.rotate {
    transform: rotate(45deg);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
}

.faq-a.open {
    max-height: 200px;
    margin-top: 20px;
}

.faq-item:hover .faq-q {
    color: var(--primary-glow);
}

/* V33: About Section & Stats Harmonization */
.about-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
    /* Align top */
}

.about-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
    line-height: 1.4;
}

.about-content p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.8;
}

/* New Backbone Stats */
.about-box {
    margin-top: 10px;
    /* Slight offset */
    padding-left: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    /* Visual anchor backbone */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 450px;
    /* Ensure it stretches to cover text + contacts */
    padding-bottom: 20px;
}

.about-stat h4 {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    font-family: var(--font-mono);
    /* Tech feel */
    background: linear-gradient(135deg, #fff 30%, #7c4dff 100%);
    /* Match contact icon tones */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* PRICING V17 (Harmonized) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

/* Glass Card with Spotlight */
.pricing-card {
    background: var(--bg-glass);
    /* Switch from #0A0A0A to Glass */
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    /* For spotlight */
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.3), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: var(--bg-glass-hover);
}

/* Highlight Card (Enterprise) */
.pricing-card.highlight {
    background: rgba(0, 229, 255, 0.03);
    /* Subtle Cyan Tint */
    border: 1px solid rgba(0, 229, 255, 0.3);
    /* Thin Cyan Border */
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
    /* Cyan Glow */
}

.badge-recommend {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    /* Gradient Badge */
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 100px;
    letter-spacing: 1px;
    z-index: 2;
}

/* Typography */
.pricing-card h3 {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-mono);
    /* JetBrains Mono */
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.price-small {
    font-size: 1.5rem;
    color: #888;
    letter-spacing: 0;
}

.price-blue {
    /* Text Gradient */
    background: linear-gradient(135deg, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-sub {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Divider */
.pricing-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

/* List */
.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-list li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-glow);
    /* CYAN Check for harmonization */
    stroke-width: 3;
    fill: none;
    drop-shadow: 0 0 5px var(--primary-glow);
}

/* Buttons */
.pricing-btn-outline {
    margin-top: auto;
    padding: 15px 0;
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    z-index: 2;
}

.pricing-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.pricing-btn-solid {
    margin-top: auto;
    padding: 15px 0;
    width: 100%;
    display: block;
    text-align: center;
    /* Luminous Gradient Button */
    background: linear-gradient(179deg, #e8e8e8bf, #292929);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
    position: relative;
    z-index: 2;
}

.pricing-btn-solid:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* V32: Minimalist Contact List (Integrated) */
.about-contact-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item-minimal {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ci-icon .icon-outline {
    stroke: #ccc;
    opacity: 0.8;
}

.ci-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ci-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.ci-value {
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-body);
    /* Standard layout font */
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    padding: 180px 0 80px;
    margin-top: 0;
    background: linear-gradient(to top, #030303 20%, rgba(3, 3, 3, 0.8) 60%, rgba(3, 3, 3, 0) 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "Soonest";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.01);
    pointer-events: none;
    white-space: nowrap;
    font-family: var(--font-heading);
    z-index: 0;
}

.footer-cta {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 50px;
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 150px;
    }

    #globe-viz {
        width: 100vw;
        height: 50vh;
        top: auto;
        bottom: 0;
        mask-image: linear-gradient(to top, transparent, black);
    }

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats-bar {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Layout Reset */
    .bento-grid-3x2,
    .pricing-grid,
    .feature-split,
    .comparison-split,
    .about-split,
    .faq-grid,
    .safety-grid-premium {
        grid-template-columns: 1fr;
    }
    
    /* Hero Section Fixes */
    .hero-wrapper {
        padding-top: 120px; /* Reduced from 150px */
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 4.5rem; /* Reduced from 3rem+ to fit screen */
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 20px;
        word-break: keep-all; /* Try to keep words together */
    }

    /* Brute force fix for "Global Payout" text wrapping */
    .hero-content h1 br {
        display: none; /* Hide desktop breaks */
    }

    .hero-desc {
        font-size: 1rem;
        padding: 0 20px; /* Add breathing room */
    }

    /* Globe Mobile Adjustments */
    #globe-viz {
        width: 100vw;
        height: 60vh; /* Taller to push earth lower */
        top: auto;
        bottom: -10vh; /* Push half off screen */
        left: 0;
        opacity: 0.6; /* Dim it slightly on mobile */
        mask-image: linear-gradient(to top, transparent 0%, black 60%); 
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 60%);
        pointer-events: none; /* No interaction on mobile to allow scrolling */
    }

    /* Stack Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 40px;
    }
    
    .btn-primary-glow, .btn-glass {
        width: 100%;
        justify-content: center;
    }

    /* Other Modules */
    .comp-pillar {
        width: 100%;
        margin-bottom: 20px;
        transform: none !important;
        opacity: 1;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-svg-container {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .footer-cta h2 {
        font-size: 3rem;
    }

    .about-box {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-subtle);
        padding-top: 40px;
        margin-top: 50px;
    }

    .case-stage {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .case-author-big {
        justify-content: center;
    }

    .case-author-big::before {
        display: none;
    }

    /* Mobile Menu System */
    .mobile-menu-btn {
        display: block; /* Show hamburger on mobile */
    }

    .nav-links {
        display: flex; /* Always display flex, but hide visually */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 998; /* Behind navbar (999) but above content */
        gap: 40px;
        
        /* Hidden State */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateY(-20px);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.5rem; /* Larger text for mobile */
        color: #fff;
    }


    .case-tabs {
        flex-wrap: wrap;
    }

    .case-tab {
        min-width: 50%;
    }
}

/* SAFETY SECTION (V36: Ultimate Holographic) */
.safety-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    perspective: 1000px; /* Enable 3D transitions */
}

.safety-card-premium {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    /* Subtle glow at rest */
    box-shadow: 0 0 0 1px rgba(0,0,0,0); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hover Effect: Card Lift & Glow */
.safety-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 229, 255, 0.1); /* Primary Cyan Glow */
}

/* Inner Glow Gradient Overlay (Animated) */
.safety-card-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transform: translate(0, 0);
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.safety-card-premium:hover::before {
    opacity: 1;
}

/* Top Highlight Border Line */
.safety-card-premium::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0.3;
}

.safety-content {
    position: relative;
    z-index: 1;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The Iconic Number Badge */
.safety-icon-box {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-num {
    font-size: 5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    /* Clean transparent text with gradient stroke */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

/* Badge Background Glow */
.safety-icon-box::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: var(--primary-glow);
    filter: blur(40px);
    opacity: 0.2;
    transition: all 0.4s;
}

.safety-card-premium:hover .safety-num {
    -webkit-text-stroke: 0px;
    color: #fff;
    text-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.1);
}

.safety-card-premium:hover .safety-icon-box::after {
    opacity: 0.6;
    filter: blur(50px);
    background: var(--secondary-glow); /* Switch to purple/blue on hover */
}

/* Headings */
.safety-card-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Paragraphs */
.safety-card-premium p {
    font-size: 1rem;
    line-height: 1.7;
    color: #bbb; /* Softer contrast */
    text-align: justify;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    transition: color 0.3s;
}


.safety-card-premium:hover p {
    color: #ddd;
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* FINAL MOBILE OVERRIDE (Ensure Safety Grid Stacks) */
@media (max-width: 768px) {
    .safety-grid-premium {
        grid-template-columns: 1fr !important;
    }
    
    .safety-card-premium {
        margin-bottom: 20px;
    }

    /* Hide CTA on mobile to save space */
    .nav-cta {
        display: none;
    }

    /* Fixed: Table Scrolling */
    .coverage-table-container {
        overflow-x: auto;
        padding: 20px; /* Reduce padding on mobile */
    }
    .cov-table {
        min-width: 600px; /* Force minimum width to trigger scroll */
    }
}

/* Sales Contact Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.modal-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.qr-img {
    width: 180px;
    height: 180px;
    display: block;
}

.modal-note {
    font-size: 0.8rem !important;
    color: #666 !important;
    margin-bottom: 0 !important;
}

/* --- Product Feature Page Styles (Added) --- */

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px; /* Increased spacing */
    min-height: 400px;
    position: relative;
    z-index: 10; /* Ensure above globe */
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    text-align: left; /* Force left align */
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-glow);
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(0,0,0,0.2); 
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc; /* Lighter text for better contrast */
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #eee;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-glow);
    color: #000;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px var(--primary-glow); /* Glow effect */
}

/* Glass Mockups */
.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.glass-mockup {
    width: 100%;
    max-width: 500px;
    background: rgba(20, 20, 30, 0.6); /* Darker background for visibility */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.glass-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(78, 115, 223, 0.15);
}

/* Mockup Internal Styles */
.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
}

.mockup-header .dots {
    display: flex;
    gap: 6px;
}
.mockup-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.mockup-header .dots span:nth-child(1) { background: #ff5f56; }
.mockup-header .dots span:nth-child(2) { background: #ffbd2e; }
.mockup-header .dots span:nth-child(3) { background: #27c93f; }

.mockup-header .bar {
    height: 20px;
    background: rgba(255,255,255,0.05);
    flex: 1;
    border-radius: 4px;
    color: #888;
    font-size: 10px;
    line-height: 20px;
    padding-left: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.upload-zone {
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 12px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}
.upload-zone:hover {
    border-color: var(--primary-glow);
    background: rgba(78, 115, 223, 0.08);
    box-shadow: 0 0 20px rgba(78, 115, 223, 0.1);
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}
.progress-bar::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--primary-glow);
    animation: progressFill 2s infinite;
}
@keyframes progressFill {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.upload-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.9;
    color: #fff;
}

/* Dashboard Mockup */
.mockup-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.widget {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px;
}
.widget.small {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.widget.large {
    height: 160px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}
.widget .label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.widget .value {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}
.widget .trend {
    font-size: 0.8rem;
    font-weight: 600;
}
.widget .trend.up { color: #1cc88a; }

.chart-lines {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    width: 100%;
    padding: 0 10px;
}
.chart-lines span {
    width: 10%;
    background: linear-gradient(to top, rgba(78,115,223,0.6), transparent);
    border-top: 3px solid var(--primary-glow);
    border-radius: 4px 4px 0 0;
    position: relative;
}
.chart-lines span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: inherit;
    filter: blur(4px);
    opacity: 0.5;
}
.chart-lines span:nth-child(1) { height: 40%; }
.chart-lines span:nth-child(2) { height: 60%; }
.chart-lines span:nth-child(3) { height: 30%; }
.chart-lines span:nth-child(4) { height: 80%; }
.chart-lines span:nth-child(5) { height: 50%; }
.chart-lines span:nth-child(6) { height: 75%; }


/* Validation Mockup */
.validation-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid transparent;
    transition: background 0.2s;
}
.validation-item:hover {
    background: rgba(255,255,255,0.05);
}
.validation-item:last-child { margin-bottom: 0; }

.validation-item.success {
    border-left-color: #1cc88a;
}
.validation-item.processing {
    border-left-color: #f6c23e;
}

.validation-item .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.validation-item.success .icon {
    background: rgba(28, 200, 138, 0.2);
    color: #1cc88a;
}
.validation-item.processing .icon {
    background: rgba(246, 194, 62, 0.2);
    color: #f6c23e;
}

.validation-item .text {
    display: flex;
    flex-direction: column;
}
.validation-item .text .title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.validation-item .text .sub {
    font-size: 0.8rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }
    
    .feature-text {
        text-align: center;
    }
    .feature-icon {
        margin: 0 auto 24px;
    }
    .feature-list li {
        justify-content: center;
    }
    .glass-mockup {
        transform: none !important; 
        max-width: 100%;
        margin-top: 20px;
    }
}

/* --- Added Feature 4, 5 & 6 Styles --- */

/* Feature 4: Currency Mockup */
.currency-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px;
    justify-content: space-between;
    transition: transform 0.2s;
}
.currency-row:hover {
    background: rgba(255,255,255,0.08);
}
.currency-row.target {
    background: rgba(28, 200, 138, 0.1);
    border: 1px solid rgba(28, 200, 138, 0.2);
}

.currency-row .flag-icon {
    font-size: 24px;
    margin-right: 12px;
}
.currency-row .currency-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.currency-row .currency-info .code {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}
.currency-row .currency-info .name {
    font-size: 0.8rem;
    color: #888;
}

.amount-box {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}
.amount-box.output { color: #888; }
.amount-box.input { color: #1cc88a; font-size: 1.2rem; }

.exchange-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0;
    color: rgba(255,255,255,0.2);
    position: relative;
}
.exchange-arrow .rate-badge {
    background: #222;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.15);
    margin-top: -14px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


/* Feature 6: API Mockup */
.api-mockup {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(145deg, #1e1e2e, #181825) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

/* Custom Scrollbar */
.code-block::-webkit-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
    width: 8px;
}
.code-block::-webkit-scrollbar-track {
    background: transparent;
}
.code-block::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
.code-block::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.code-block {
    color: #c9d1d9;
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    padding-bottom: 10px;
}

/* Neon Syntax Highlighting */
.code-block .keyword { color: #ff79c6; font-weight: bold; } /* Pink/Magenta for verbs */
.code-block .string { color: #a6e22e; } /* Green for strings */
.code-block .number { color: #bd93f9; } /* Purple for numbers */
.code-block .key { color: #8be9fd; } /* Cyan for JSON keys */
.code-block .comment { 
    color: #6272a4; 
    display: block; 
    margin: 15px 0 8px 0; 
    font-style: italic; 
    padding-top: 15px; 
}

/* API Specific Header - Authentic macOS Look */
.api-mockup .mockup-header {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}
.api-mockup .mockup-header .dots {
    display: flex;
    gap: 6px;
}
.api-mockup .mockup-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #5f5f6b;
}
/* Colorful MacOS Dots */
.api-mockup .mockup-header .dots span:nth-child(1) { background: #ff5f56; box-shadow: 0 0 5px rgba(255, 95, 86, 0.4); }
.api-mockup .mockup-header .dots span:nth-child(2) { background: #ffbd2e; box-shadow: 0 0 5px rgba(255, 189, 46, 0.4); }
.api-mockup .mockup-header .dots span:nth-child(3) { background: #27c93f; box-shadow: 0 0 5px rgba(39, 201, 63, 0.4); }

.api-mockup .mockup-header .bar {
    display: none; /* Hide filename for cleaner look if preferred, or style it better */
}
/* Alternative: Style filename if we want to keep it */
.api-mockup .mockup-header .bar {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin-left: 20px;
}


/* Feature 6: Team/Sub-account Styles */
.team-mockup {
    background: rgba(30,30,40,0.8);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.team-header .title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.team-header .badge {
    background: rgba(78, 115, 223, 0.2);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 99px;
    color: #4e73df;
    font-weight: 600;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-member {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.team-member:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.1);
}

.team-member .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e73df, #224abe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.team-member .info {
    flex: 1;
}
.team-member .info .name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.team-member .info .role {
    font-size: 0.85rem;
    color: #888;
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
}

.team-member .status {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
}
.team-member .status.active {
    color: #1cc88a;
    background: rgba(28, 200, 138, 0.15);
    border: 1px solid rgba(28, 200, 138, 0.2);
}
.team-member .status.inactive {
    color: #888;
    border: 1px solid rgba(255,255,255,0.1);
}
