:root {
    --bg-page: #080B11;
    --bg-secondary: #0D111A;
    --bg-card: rgba(14, 19, 30, 0.75);
    --bg-card-hover: rgba(20, 27, 42, 0.9);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(0, 242, 254, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.05);
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-dim: #6B7280;
    
    --accent-blue: #00F2FE;
    --accent-blue-hover: #38E1FF;
    --accent-blue-soft: rgba(0, 242, 254, 0.12);
    
    --accent-green: #00E676;
    --accent-green-soft: rgba(0, 230, 118, 0.12);
    --accent-gold: #FFB800;
    
    --shadow-subtle: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-hover: 0 16px 40px rgba(0, 242, 254, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 242, 254, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(0, 230, 118, 0.025) 0%, transparent 45%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Navigation */
.navbar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 11, 17, 0.85);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.55));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.12);
    filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.95)) drop-shadow(0 0 4px #00F2FE);
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.nav-logo-text span {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* Hero Section - Responsive Keynote Grid */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 40px 0 60px 0;
    overflow: hidden;
    background: var(--bg-page);
    width: 100%;
}

.hero .hero-container {
    width: 100%;
    padding-left: max(24px, calc((100% - 1340px) / 2 + 24px));
    padding-right: 0;
    box-sizing: border-box;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(460px, 520px) 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "header visual"
        "body visual";
    column-gap: 20px;
    row-gap: 20px;
    align-items: center;
    width: 100%;
}

.hero-header {
    grid-area: header;
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.hero-body {
    grid-area: body;
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.hero-visual {
    grid-area: visual;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: visible;
}

.hero-img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.95));
    transition: transform 0.4s ease;
    mask-image: 
        linear-gradient(to right, transparent 0%, black 4%, black 100%),
        linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: 
        linear-gradient(to right, transparent 0%, black 4%, black 100%),
        linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass-hover);
    color: var(--accent-blue);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 242, 254, 0.1);
}

h1.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 0;
}

h1.hero-title span {
    background: linear-gradient(135deg, #00F2FE 0%, #0071E3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.hero-metric-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.25s ease;
}

.hero-metric-pill:hover {
    border-color: var(--border-glass-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.pill-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
    color: var(--text-primary);
}

.pill-val.green {
    color: var(--accent-green);
}

.pill-val.blue {
    color: var(--accent-blue);
}

.pill-lbl {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Button System */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0071E3, #00F2FE);
    color: #FFFFFF;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 113, 227, 0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
    filter: brightness(1.08);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border-glass);
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--border-glass-hover);
    background: var(--bg-card-hover);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-blue);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-play:hover {
    background: rgba(0, 242, 254, 0.16);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Section Global Standards */
.section {
    padding: 90px 0;
    position: relative;
    background: var(--bg-page);
}

.section.alt-bg {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 52px auto;
}

.section-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-blue);
    background: var(--accent-blue-soft);
    padding: 5px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: inline-block;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section 2: Video Cinema Player */
.video-cinema-box {
    background: #000000;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
    max-width: 1040px;
    margin: 0 auto;
}

.video-cinema-topbar {
    background: #0B0E14;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.video-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-topbar-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.video-topbar-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid var(--border-glass);
}

.video-responsive-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000000;
}

.video-responsive-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Section 3: Capital Security Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-box {
    background: 
        radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.1) 0%, transparent 65%),
        linear-gradient(175deg, rgba(13, 21, 33, 0.96) 0%, rgba(6, 11, 18, 0.98) 100%);
    border: 1.5px solid rgba(0, 242, 254, 0.2);
    border-radius: 22px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.trust-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 242, 254, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.trust-symbol-frame {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 6px;
}

.trust-symbol-img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 18px rgba(0, 242, 254, 0.22));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.trust-box:hover .trust-symbol-img {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 25px rgba(0, 242, 254, 0.45));
}

.trust-box-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.trust-box-desc {
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Section 4: How It Works & Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pillar-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

.pillar-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.pillar-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent-blue-soft);
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--accent-blue);
}

.pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pillar-desc {
    font-size: 12.8px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Section 5: Data Room (3 Clean Pillars Aesthetic) */
.dataroom-summary-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(13, 21, 33, 0.7);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    padding: 10px 28px;
    margin: 22px auto 0 auto;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.1);
}

.summary-strip-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.summary-strip-item .strip-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.summary-strip-item .strip-val.cyan {
    color: var(--accent-blue);
}

.summary-strip-item .strip-val.green {
    color: var(--accent-green);
}

.summary-strip-item .strip-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-strip-sep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
}

.dataroom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.dataroom-card {
    background: 
        radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.1) 0%, transparent 65%),
        linear-gradient(175deg, rgba(13, 21, 33, 0.96) 0%, rgba(6, 11, 18, 0.98) 100%);
    border: 1.5px solid rgba(0, 242, 254, 0.2);
    border-radius: 22px;
    padding: 30px 24px 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.dataroom-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 242, 254, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.dataroom-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    background: var(--accent-blue-soft);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 242, 254, 0.25);
}

.dataroom-badge.green {
    color: var(--accent-green);
    background: var(--accent-green-soft);
    border-color: rgba(0, 230, 118, 0.3);
}

.dataroom-symbol-frame {
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 2px 0;
}

.dataroom-symbol-img {
    max-width: 100%;
    max-height: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.dataroom-symbol-img.cyan {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 16px rgba(0, 242, 254, 0.35));
}

.dataroom-symbol-img.green {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 16px rgba(0, 230, 118, 0.35));
}

.dataroom-card:hover .dataroom-symbol-img {
    transform: scale(1.1);
}

.dataroom-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

.dataroom-metric-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 18px;
    width: 100%;
    box-sizing: border-box;
}

.dataroom-hero-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.dataroom-hero-val.green {
    color: var(--accent-green);
}

.dataroom-hero-unit {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
}

.dataroom-submetrics {
    font-size: 11.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dataroom-submetrics strong {
    color: #fff;
}

.submetric-dot {
    color: rgba(255, 255, 255, 0.25);
}

.dataroom-card-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
    min-height: 58px;
}

.dataroom-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.dataroom-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(0, 113, 227, 0.25) 100%);
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: 12px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.dataroom-btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.3) 0%, rgba(0, 113, 227, 0.45) 100%);
    border-color: rgba(0, 242, 254, 0.7);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

.dataroom-csv-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.dataroom-csv-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.dataroom-methodology-note {
    margin-top: 24px;
    padding: 14px 20px;
    background: rgba(13, 21, 33, 0.5);
    border: 1px solid rgba(0, 242, 254, 0.12);
    border-radius: 14px;
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
}

.dataroom-methodology-note strong {
    color: #fff;
}

.dataroom-methodology-note em {
    color: var(--accent-blue);
    font-style: normal;
    font-weight: 600;
}

.terminal-banner {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.12) 0%, rgba(14, 19, 30, 0.9) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 22px;
    padding: 30px 36px;
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.terminal-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.terminal-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.cred-pill {
    display: inline-flex;
    gap: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

.cred-pill span {
    color: var(--accent-blue);
    font-weight: 700;
}

/* Section 6: Interactive Calculator */
.sim-mode-switcher {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto 28px auto;
}

.sim-mode-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sim-mode-btn:hover {
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

.sim-mode-btn.active {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 24px rgba(0, 242, 254, 0.2);
}

.sim-mode-tag {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sim-mode-tag.gold {
    color: var(--accent-gold);
}

.sim-mode-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.sim-mode-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.sim-container.sim-panel {
    display: none !important;
}

.sim-container.sim-panel.active {
    display: grid !important;
    animation: fadeInSim 0.3s ease;
}

@keyframes fadeInSim {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.sim-container {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow-card);
}

.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ================================================================= */
/* PREMIUM SIMULATOR PARAMETER CARDS (REFINED & INTUITIVE)           */
/* ================================================================= */
.sim-param-card {
    background: rgba(13, 18, 28, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sim-param-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Card Color Personas: Gold (Seed), Cyan (Fleet), Green (ROI) */
.sim-param-card.card-gold {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.04) 0%, rgba(13, 18, 28, 0.85) 100%);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-left: 4px solid #FFB800;
}
.sim-param-card.card-gold:hover {
    border-color: rgba(255, 184, 0, 0.45);
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.07) 0%, rgba(16, 23, 36, 0.92) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 184, 0, 0.12);
    transform: translateY(-2px);
}

.sim-param-card.card-cyan {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.04) 0%, rgba(13, 18, 28, 0.85) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-left: 4px solid #00F2FE;
}
.sim-param-card.card-cyan:hover {
    border-color: rgba(0, 242, 254, 0.45);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.07) 0%, rgba(16, 23, 36, 0.92) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.12);
    transform: translateY(-2px);
}

.sim-param-card.card-green {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.04) 0%, rgba(13, 18, 28, 0.85) 100%);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-left: 4px solid #00E676;
}
.sim-param-card.card-green:hover {
    border-color: rgba(0, 230, 118, 0.45);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.07) 0%, rgba(16, 23, 36, 0.92) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 230, 118, 0.12);
    transform: translateY(-2px);
}

.sim-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sim-card-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sim-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.sim-icon-img.gold {
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.45));
}

.sim-icon-img.cyan {
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.45));
}

.sim-icon-img.green {
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.45));
}

.sim-param-card:hover .sim-icon-img {
    transform: scale(1.12);
}

.sim-param-card:hover .sim-icon-img.gold {
    filter: drop-shadow(0 0 18px rgba(255, 184, 0, 0.8));
}

.sim-param-card:hover .sim-icon-img.cyan {
    filter: drop-shadow(0 0 18px rgba(0, 242, 254, 0.8));
}

.sim-param-card:hover .sim-icon-img.green {
    filter: drop-shadow(0 0 18px rgba(0, 230, 118, 0.8));
}

.sim-card-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sim-card-step-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sim-card-step-tag.gold { color: #FFB800; }
.sim-card-step-tag.cyan { color: #00F2FE; }
.sim-card-step-tag.green { color: #00E676; }

.sim-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
}

.sim-card-main-val {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.sim-hero-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.sim-hero-subtext {
    font-size: 12.5px;
    color: var(--text-dim);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.sim-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 9999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sim-badge-pill.gold {
    background: rgba(255, 184, 0, 0.12);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 184, 0, 0.35);
    text-shadow: 0 0 12px rgba(255, 184, 0, 0.4);
}

.sim-badge-pill.green {
    background: rgba(0, 230, 118, 0.12);
    color: var(--accent-green);
    border: 1px solid rgba(0, 230, 118, 0.35);
    text-shadow: 0 0 12px rgba(0, 230, 118, 0.4);
}

.sim-badge-pill.cyan {
    background: rgba(0, 242, 254, 0.12);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 242, 254, 0.35);
    text-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

.sim-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sim-slider-range {
    width: 100%;
    height: 6px;
    background: #182234;
    border-radius: 9999px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: background 0.2s;
}

.sim-slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00F2FE;
    cursor: grab;
    box-shadow: 0 0 14px rgba(0, 242, 254, 0.8), 0 2px 6px rgba(0,0,0,0.6);
    border: 2px solid #FFFFFF;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sim-slider-range::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(0, 242, 254, 1);
}

/* Color-Themed Slider Thumbs */
.sim-slider-range.slider-gold::-webkit-slider-thumb {
    background: #FFB800;
    box-shadow: 0 0 14px rgba(255, 184, 0, 0.85), 0 2px 6px rgba(0,0,0,0.6);
    border: 2px solid #FFFFFF;
}
.sim-slider-range.slider-gold::-webkit-slider-thumb:active {
    box-shadow: 0 0 22px rgba(255, 184, 0, 1);
}

.sim-slider-range.slider-cyan::-webkit-slider-thumb {
    background: #00F2FE;
    box-shadow: 0 0 14px rgba(0, 242, 254, 0.85), 0 2px 6px rgba(0,0,0,0.6);
    border: 2px solid #FFFFFF;
}
.sim-slider-range.slider-cyan::-webkit-slider-thumb:active {
    box-shadow: 0 0 22px rgba(0, 242, 254, 1);
}

.sim-slider-range.slider-green::-webkit-slider-thumb {
    background: #00E676;
    box-shadow: 0 0 14px rgba(0, 230, 118, 0.85), 0 2px 6px rgba(0,0,0,0.6);
    border: 2px solid #FFFFFF;
}
.sim-slider-range.slider-green::-webkit-slider-thumb:active {
    box-shadow: 0 0 22px rgba(0, 230, 118, 1);
}

/* Custom Segmented Pills Active State per Card Theme */
.card-gold .sim-pill-option.active {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.22), rgba(255, 140, 0, 0.15));
    color: #FFFFFF;
    border-color: rgba(255, 184, 0, 0.5);
    box-shadow: 0 2px 12px rgba(255, 184, 0, 0.25);
}
.card-gold .sim-pill-option.active .sim-pill-sub {
    color: #FFB800;
    opacity: 0.95;
}

.card-cyan .sim-pill-option.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.22), rgba(0, 113, 227, 0.25));
    color: #FFFFFF;
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 2px 12px rgba(0, 242, 254, 0.25);
}
.card-cyan .sim-pill-option.active .sim-pill-sub {
    color: #00F2FE;
    opacity: 0.95;
}

.card-green .sim-pill-option.active {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.22), rgba(0, 180, 90, 0.15));
    color: #FFFFFF;
    border-color: rgba(0, 230, 118, 0.5);
    box-shadow: 0 2px 12px rgba(0, 230, 118, 0.25);
}
.card-green .sim-pill-option.active .sim-pill-sub {
    color: #00E676;
    opacity: 0.95;
}

.sim-range-bounds {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-dim);
}

/* Segmented Pills Row */
.sim-segmented-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    background: rgba(8, 12, 20, 0.6);
    padding: 3px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-segmented-pills.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.sim-pill-option {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 7px 3px;
    color: #94A3B8;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1.15;
}

.sim-pill-option:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.sim-pill-option.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.18), rgba(0, 113, 227, 0.25));
    color: #FFFFFF;
    border-color: rgba(0, 242, 254, 0.45);
    box-shadow: 0 2px 10px rgba(0, 242, 254, 0.2);
}

.sim-pill-main {
    font-weight: 700;
    font-size: 11px;
}

.sim-pill-sub {
    font-size: 9.5px;
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.75;
}

.sim-card-footnote {
    font-size: 11.8px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.4;
    margin-top: 2px;
}

.sim-card-footnote span.highlight {
    color: var(--accent-blue);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

/* Priority Payback Shield Card (Full Width & Compact) */
.sim-priority-banner {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(14, 20, 32, 0.95) 100%);
    border: 1px solid rgba(0, 242, 254, 0.28);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.sim-priority-banner.full-width {
    grid-column: 1 / -1;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.06) 0%, rgba(14, 20, 32, 0.92) 100%);
    border: 1px solid rgba(0, 242, 254, 0.25);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.sim-priority-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
}

.sim-priority-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sim-priority-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.sim-priority-desc {
    font-size: 12.5px;
    color: #94A3B8;
    line-height: 1.5;
}

.sim-priority-desc strong {
    color: #E2E8F0;
}

/* Full Width Centered CTA Block */
.sim-cta-wrap.full-width {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
}

.sim-cta-main-btn {
    width: 100%;
    max-width: 540px;
    justify-content: center;
    text-align: center;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0, 242, 254, 0.35);
    transition: all 0.25s ease;
}

.sim-cta-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 242, 254, 0.55);
}

.sim-cta-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #94A3B8;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sim-cta-secondary-link:hover {
    color: #00F2FE;
    background: rgba(0, 242, 254, 0.08);
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

.slider-display {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--accent-blue);
}

input[type=range] {
    width: 100%;
    height: 6px;
    background: #1F2937;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 242, 254, 0.5);
}

.capital-split-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-glass);
}

.cap-split-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cap-split-lbl {
    font-size: 10.5px;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
}

.cap-split-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.scenario-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip-btn {
    flex: 1;
    min-width: 100px;
    padding: 9px 12px;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.chip-btn.active {
    background: var(--accent-blue-soft);
    border-color: rgba(0, 242, 254, 0.35);
    color: var(--accent-blue);
}

.sim-results {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-metric {
    margin-bottom: 20px;
}

.result-lbl {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.result-val {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--accent-green);
}

.result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--border-glass);
}

@media (max-width: 900px) {
    .sim-mode-switcher {
        grid-template-columns: 1fr;
    }
}

/* Mobile Floating Live HUD - Hidden by default on Desktop */
.sim-mobile-hud {
    display: none;
}

/* Section 7: Founder Profile & Story */
.founder-bento {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 28px;
}

.founder-profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 22px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-subtle);
}

.founder-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.founder-avatar-icon {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: #080C14;
    border: 2px solid rgba(0, 242, 254, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.2);
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.founder-profile-card:hover .founder-avatar-icon {
    border-color: rgba(0, 242, 254, 0.65);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 28px rgba(0, 242, 254, 0.35);
    transform: scale(1.03);
}

.founder-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 12.5px;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-quote {
    font-style: italic;
    font-size: 13.5px;
    color: #D1D5DB;
    line-height: 1.65;
    border-left: 3px solid var(--accent-blue);
    padding-left: 18px;
    margin: 20px 0 24px 0;
    background: rgba(0, 242, 254, 0.03);
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 0 12px 12px 0;
}

.founder-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
    font-size: 13px;
    color: var(--text-secondary);
}

.founder-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    display: inline-block;
}

.meta-icon.cyan { color: #00F2FE; filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.45)); }
.meta-icon.green { color: #00E676; filter: drop-shadow(0 0 6px rgba(0, 230, 118, 0.45)); }
.meta-icon.coral { color: #FF5252; filter: drop-shadow(0 0 6px rgba(255, 82, 82, 0.45)); }
.meta-icon.gold { color: #FFB800; filter: drop-shadow(0 0 6px rgba(255, 184, 0, 0.45)); }

.founder-stories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: var(--shadow-subtle);
    transition: all 0.25s ease;
}

.story-item:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-2px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.story-icon-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.story-icon-img.cyan {
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.45));
}

.story-icon-img.green {
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.45));
}

.story-icon-img.gold {
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.45));
}

.story-item:hover .story-icon-img {
    transform: scale(1.12);
}

.story-item:hover .story-icon-img.cyan {
    filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.8));
}

.story-item:hover .story-icon-img.green {
    filter: drop-shadow(0 0 16px rgba(0, 230, 118, 0.8));
}

.story-item:hover .story-icon-img.gold {
    filter: drop-shadow(0 0 16px rgba(255, 184, 0, 0.8));
}

.story-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.story-desc {
    font-size: 13.2px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================================= */
/* SEKCJA 8: DOMKNIĘCIE OFERTY · EXECUTIVE PARTNERSHIP CTA          */
/* ================================================================= */
.deal-close-card {
    background: linear-gradient(180deg, rgba(16, 23, 38, 0.94) 0%, rgba(10, 14, 24, 0.98) 100%);
    border: 1px solid rgba(255, 184, 0, 0.32);
    border-radius: 26px;
    padding: 48px 52px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
}

.deal-close-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
}

.deal-close-hero {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 38px auto;
}

.deal-close-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 5px 14px;
    border-radius: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.deal-close-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.deal-close-desc {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.65;
    margin: 0 auto;
}

.deal-close-desc strong {
    color: #E2E8F0;
}

/* 3 Główne Filary */
.deal-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 34px;
}

.deal-pillar-box {
    background: rgba(13, 18, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.28s ease;
}

.deal-pillar-box:hover {
    border-color: rgba(255, 184, 0, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.deal-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 4px;
}

.deal-pillar-icon.gold {
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.35);
}

.deal-pillar-icon.green {
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.35);
}

.deal-pillar-icon.cyan {
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.35);
}

.deal-pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.deal-pillar-desc {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}

.deal-pillar-desc strong {
    color: #E2E8F0;
}

/* Dyskretny pasek VIP */
.deal-vip-strip {
    background: rgba(0, 242, 254, 0.03);
    border: 1px dashed rgba(0, 242, 254, 0.22);
    border-radius: 14px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.deal-vip-strip-text {
    font-size: 13px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-vip-strip-text strong {
    color: var(--accent-blue);
}

.deal-vip-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.deal-vip-link:hover {
    color: #38E1FF;
    transform: translateX(2px);
}

/* Przyciski Decyzyjne */
.deal-close-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.deal-btn-whatsapp {
    background: linear-gradient(135deg, #FFB800, #F59E0B) !important;
    color: #04070D !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    padding: 14px 28px !important;
    box-shadow: 0 4px 22px rgba(255, 184, 0, 0.35) !important;
    gap: 8px;
}

.deal-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 184, 0, 0.5) !important;
}

.deal-btn-deck {
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    gap: 8px;
}

.deal-btn-call {
    font-weight: 600;
    font-size: 14px;
    padding: 14px 22px;
    gap: 8px;
}

@media (max-width: 900px) {
    .deal-close-card {
        padding: 30px 22px;
    }
    .deal-close-title {
        font-size: 1.6rem;
    }
    .deal-pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .deal-close-actions {
        flex-direction: column;
        width: 100%;
    }
    .deal-close-actions a {
        width: 100%;
        justify-content: center;
    }
}

.contact-box {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.12) 0%, rgba(13, 17, 26, 0.95) 100%);
    border: 1px solid var(--border-glass-hover);
    border-radius: 24px;
    padding: 38px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: var(--shadow-card);
}

.contact-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 13.5px;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.6;
}

.contact-details-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--accent-blue);
    flex-wrap: wrap;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 50px 0 40px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 12.5px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--accent-blue);
}

/* Mobile & Responsive Rules */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 28px;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding: 35px 0 50px 0;
    }
    .hero .container, .hero .hero-container {
        padding: 0 16px;
    }
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .hero-header {
        max-width: 100%;
        width: 100%;
        margin-bottom: 12px;
    }
    .hero-visual {
        width: calc(100% + 32px);
        margin: 4px -16px 20px -16px;
        padding: 0;
        overflow: hidden;
    }
    .hero-img {
        max-width: 100%;
        width: 100%;
    }
    .hero-body {
        max-width: 100%;
        width: 100%;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .comp-grid {
        grid-template-columns: 1fr;
    }
    .portals-grid, .dataroom-grid {
        grid-template-columns: 1fr;
    }
    .sim-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 14px;
    }
    .sim-controls {
        gap: 12px;
    }
    .sim-param-card {
        padding: 14px 14px;
        gap: 10px;
        border-radius: 14px;
    }
    .sim-param-card::before {
        left: 14px;
        right: 14px;
    }
    .sim-card-header-left {
        gap: 10px;
    }
    .sim-icon-img {
        width: 34px;
        height: 34px;
    }
    .sim-card-step-tag {
        font-size: 9px;
    }
    .sim-card-title {
        font-size: 13.5px;
    }
    .sim-hero-number {
        font-size: 1.48rem;
    }
    .sim-hero-subtext {
        font-size: 11.5px;
    }
    .sim-badge-pill {
        padding: 3px 9px;
        font-size: 11px;
    }
    .sim-segmented-pills {
        gap: 4px;
        padding: 2px;
    }
    .sim-pill-option {
        padding: 5px 2px;
        font-size: 10px;
    }
    .sim-pill-sub {
        font-size: 8.5px;
    }
    .sim-card-footnote {
        font-size: 11px;
        padding-top: 6px;
    }

    /* Mobile Floating Live HUD (Executive Bottom Bar) */
    .sim-mobile-hud {
        display: block;
        position: fixed;
        bottom: 14px;
        left: 12px;
        right: 12px;
        z-index: 1000;
        background: rgba(10, 15, 26, 0.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(0, 242, 254, 0.38);
        border-radius: 14px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85), 0 0 24px rgba(0, 242, 254, 0.18);
        padding: 8px 12px;
        opacity: 0;
        transform: translateY(120%);
        pointer-events: none;
        transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sim-mobile-hud.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .sim-mobile-hud-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .hud-mode-content {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        min-width: 0;
    }

    .hud-metric-col {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .hud-lbl {
        font-family: 'JetBrains Mono', monospace;
        font-size: 8.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #94A3B8;
        white-space: nowrap;
    }

    .hud-val-wrap {
        display: flex;
        align-items: baseline;
        gap: 4px;
        white-space: nowrap;
    }

    .hud-val {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 800;
        color: #FFFFFF;
        line-height: 1.1;
        white-space: nowrap;
    }

    .hud-val.green {
        color: var(--accent-green);
        text-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    }

    .hud-val.cyan {
        color: var(--accent-blue);
        text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    }

    .hud-sub {
        font-family: 'JetBrains Mono', monospace;
        font-size: 9.5px;
        color: #94A3B8;
    }

    .hud-divider {
        width: 1px;
        height: 22px;
        background: rgba(255, 255, 255, 0.12);
        flex-shrink: 0;
    }

    .hud-action-btn {
        background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(0, 113, 227, 0.32));
        border: 1px solid rgba(0, 242, 254, 0.5);
        border-radius: 9px;
        padding: 6px 9px;
        color: #FFFFFF;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        cursor: pointer;
        flex-shrink: 0;
        box-shadow: 0 2px 10px rgba(0, 242, 254, 0.2);
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .hud-action-btn:active {
        transform: scale(0.95);
        background: rgba(0, 242, 254, 0.4);
    }

    /* Mobile Responsiveness for Simulator:
       Natural DOM flow: Sliders -> Results -> Full-Width Priority Payback -> Full-Width CTA */
    .sim-priority-banner.full-width {
        padding: 14px 16px;
        gap: 12px;
    }
    .sim-priority-banner.full-width .sim-priority-desc {
        font-size: 12px;
    }
    .sim-cta-main-btn {
        max-width: 100%;
    }

    /* Mobile Reordering for Client Mode:
       Sliders -> Financial Results -> Secondary CTA */
    #simPanelClient.sim-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #simPanelClient .sim-controls {
        display: contents;
    }
    #simPanelClient .slider-group {
        order: 1;
    }
    #simPanelClient .capital-split-bar {
        order: 1;
    }
    #simPanelClient .sim-client-note {
        order: 1;
    }
    #simPanelClient .sim-results {
        order: 2;
    }
    #simPanelClient .sim-client-cta-wrap {
        order: 3;
    }
    .founder-bento {
        grid-template-columns: 1fr;
    }
    .offer-mode-switcher {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .offer-seed-card {
        padding: 28px 22px;
    }
    .offer-params-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offer-sync-banner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .offer-sync-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 18px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .offer-checklist-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .offer-vip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-secondary, .btn-play {
        width: 100%;
        justify-content: center;
    }
    .video-takeaways-grid {
        grid-template-columns: 1fr;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .dataroom-summary-strip {
        flex-direction: column;
        gap: 12px;
        border-radius: 20px;
        padding: 14px 20px;
    }
    .summary-strip-sep {
        display: none;
    }
    .offer-params-grid {
        grid-template-columns: 1fr;
    }
    .offer-cashflow-row {
        grid-template-columns: 1fr auto 1fr;
        gap: 8px;
        padding: 10px 12px;
    }
    .offer-cashflow-col .val {
        font-size: 1.25rem;
    }
    .offer-sync-right {
        grid-template-columns: 1fr;
    }
    .offer-seed-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .offer-action-buttons {
        flex-direction: column;
        width: 100%;
    }
    .offer-action-buttons .btn-primary, .offer-action-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .contact-box {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-actions {
        flex-direction: column;
    }
    .scenario-chips {
        flex-direction: column;
    }
}

/* ================================================================= */
/* ================================================================= */
/* AUTHENTIC PCB CIRCUIT BOARD STYLING (REFINED & CONTINUOUS)        */
/* ================================================================= */
.pcb-board-workspace {
    margin-top: 48px;
    position: relative;
    background: #06090E;
    border: 1px solid rgba(0, 242, 254, 0.24);
    border-radius: 28px;
    padding: 36px 28px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Ambient PCB Board Canvas with integrated circuit traces */
.pcb-board-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pcb-bg-traces-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.18;
}

.pcb-board-grid-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(0, 242, 254, 0.09) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(0, 230, 118, 0.07) 0%, transparent 45%),
        linear-gradient(rgba(0, 242, 254, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.025) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px;
}

/* Header Bar */
.pcb-board-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 242, 254, 0.15);
    flex-wrap: wrap;
    gap: 12px;
}

.pcb-board-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Desktop Multi-Column Row with Connected PCB Buses */
.pcb-board-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.pcb-board-row:first-of-type {
    margin-bottom: 0;
}

/* Inter-Row Desktop Crossover PCB Bus (03 -> 04) */
.pcb-crossover-bus {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 0;
}

.pcb-crossover-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    overflow: visible;
}

.pulse-dot-cyan {
    width: 7px;
    height: 7px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.7);
    animation: pulseCyan 1.8s infinite;
}

@keyframes pulseCyan {
    0% { transform: scale(0.95); opacity: 0.75; }
    70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 6px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); opacity: 0.75; }
}

.pcb-v-bus-special {
    position: relative;
    height: 60px;
}

/* ================================================================= */
/* CLEAN HIGH-TECH MODULE CHIP CARDS (MATCHING SECURITY TRUST-BOX)  */
/* ================================================================= */
.pcb-module-chip {
    flex: 1;
    position: relative;
    background: 
        radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.1) 0%, transparent 65%),
        linear-gradient(175deg, rgba(13, 21, 33, 0.96) 0%, rgba(6, 11, 18, 0.98) 100%);
    border: 1.5px solid rgba(0, 242, 254, 0.2);
    border-radius: 22px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 335px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pcb-module-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 242, 254, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.pcb-module-chip.emerald-chip {
    background: 
        radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.12) 0%, transparent 65%),
        linear-gradient(175deg, rgba(10, 22, 17, 0.96) 0%, rgba(6, 12, 9, 0.98) 100%);
    border: 1.5px solid rgba(0, 230, 118, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pcb-module-chip.emerald-chip:hover {
    border-color: rgba(0, 230, 118, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 230, 118, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Card Header - Centered for Full Axial Symmetry */
.chip-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    text-align: center;
}

.chip-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 0 0 14px rgba(0, 242, 254, 0.5);
}

.chip-header-texts {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

/* Visual Center Area - Transparent & Frameless, directly on Module Background */
.chip-visual-frame {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    max-height: 155px;
    position: relative;
    overflow: visible;
    box-shadow: none;
}

.emerald-chip .chip-visual-frame {
    border: none;
    box-shadow: none;
}

.pcb-module-chip:hover .chip-visual-frame,
.pcb-module-chip.emerald-chip:hover .chip-visual-frame {
    border: none;
    box-shadow: none;
}

.chip-symbol-img {
    max-width: 100%;
    max-height: 135px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 16px rgba(0, 242, 254, 0.22));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.pcb-module-chip:hover .chip-symbol-img {
    transform: scale(1.06);
    filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(0, 242, 254, 0.4));
}

.pcb-module-chip.emerald-chip .chip-symbol-img {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 16px rgba(0, 230, 118, 0.25));
}

.pcb-module-chip.emerald-chip:hover .chip-symbol-img {
    filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(0, 230, 118, 0.45));
}

.chip-summary-p {
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Horizontal PCB Bus Connector Between Cards (Desktop) */
.pcb-h-bus {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
}

.pcb-h-bus svg {
    width: 80px;
    height: 100%;
    min-height: 335px;
    overflow: visible;
}

/* Vertical PCB Conduit from Module 06 down to Module 07 */
.pcb-conduit-to-07 {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 140px;
}

.pcb-conduit-to-07 svg {
    width: 60px;
    height: 50px;
    overflow: visible;
}

/* Row 3 - Featured Bybit Node */
.pcb-featured-execution-row {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pcb-featured-card {
    position: relative;
    background: 
        radial-gradient(circle at 8% 20%, rgba(0, 230, 118, 0.14) 0%, transparent 65%),
        linear-gradient(175deg, rgba(10, 22, 17, 0.96) 0%, rgba(6, 12, 9, 0.98) 100%);
    border: 1.5px solid rgba(0, 230, 118, 0.25);
    border-radius: 22px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pcb-featured-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 230, 118, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 230, 118, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.bybit-badge-soft {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.4);
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

/* Mobile Vertical Connector (Only visible on screens < 1024px) */
.pcb-v-bus {
    display: none;
    width: 100%;
    height: 52px;
    align-items: center;
    justify-content: center;
}

.pcb-v-bus svg {
    width: 100%;
    max-width: 280px;
    height: 52px;
}

/* CTA Deep Dive Button */
.pcb-cta-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 36px;
}

.btn-pcb-deep-dive {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(0, 194, 203, 0.15) 100%);
    border: 1px solid rgba(0, 242, 254, 0.45);
    color: #fff;
    padding: 14px 30px;
    border-radius: 9999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}

.btn-pcb-deep-dive:hover {
    background: var(--accent-blue);
    color: #04070D;
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.65);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .pcb-board-row {
        flex-direction: column;
        align-items: center;
    }
    .pcb-crossover-bus {
        display: none;
    }
    .pcb-h-bus {
        display: none;
    }
    .pcb-v-bus {
        display: flex;
    }
    .pcb-conduit-to-07 {
        display: none;
    }
    .pcb-module-chip {
        width: 100%;
        max-width: 520px;
        min-height: auto;
    }
    .pcb-featured-card {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }
}
