/* Custom Global CSS Variable Definitions matching Argon Visual Assets */
:root {
    --bg-base-dark: #030712;
    --card-glass-bg: rgba(10, 15, 30, 0.65);
    --card-glass-border: rgba(255, 255, 255, 0.08);
    --argon-brand-neon: #d4ff00; /* Neon Chartreuse Highlight Color from Identity */
    --text-primary-white: #f9fafb;
    --text-muted-gray: #9ca3af;
    --accent-glow-orange: rgba(212, 255, 0, 0.15);
    --transition-fluid-cubic: cubic-bezier(0.25, 1, 0.5, 1);
    --font-stack-jakarta: 'Plus Jakarta Sans', sans-serif;
}

/* Global Reset Protocol */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base-dark);
    font-family: var(--font-stack-jakarta);
    color: var(--text-primary-white);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Advanced WebGL Canvas Positioning Layer */
#webgl-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Custom Interactive Micro-Pointer Layer */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--argon-brand-neon);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s var(--transition-fluid-cubic), height 0.3s var(--transition-fluid-cubic), background-color 0.3s;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--text-primary-white);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

/* Glassmorphic Navigation Module CSS Layout */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(3, 7, 18, 0.7);
    border-bottom: 1px solid var(--card-glass-border);
    z-index: 1000;
    transition: all 0.4s var(--transition-fluid-cubic);
}

.nav-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.brand-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text-primary-white);
    display: flex;
    flex-direction: column;
}

.logo-accent {
    color: var(--argon-brand-neon);
}

.brand-logo .studio-sub {
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-muted-gray);
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
}

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

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--argon-brand-neon);
    transition: width 0.3s var(--transition-fluid-cubic);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.btn-nav-cta {
    background: var(--text-primary-white);
    color: var(--bg-base-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s var(--transition-fluid-cubic), background-color 0.3s;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    background-color: var(--argon-brand-neon);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary-white);
    font-size: 22px;
    cursor: pointer;
}

/* Master Wrapper Strategy */
.main-content-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Hero Interface Stage Typography Styles */
.hero-section {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-ambient-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow-orange) 0%, rgba(3,7,18,0) 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-container {
    margin-bottom: 24px;
}

.pill-badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary-white);
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.badge-new {
    background: var(--argon-brand-neon);
    color: var(--bg-base-dark);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 11px;
    margin-right: 6px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--argon-brand-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted-gray);
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.btn-primary-action {
    background: var(--argon-brand-neon);
    color: var(--bg-base-dark);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s var(--transition-fluid-cubic), box-shadow 0.3s;
}

.btn-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.25);
}

.btn-secondary-action {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-glass-border);
    color: var(--text-primary-white);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.3s var(--transition-fluid-cubic);
    backdrop-filter: blur(10px);
}

.btn-secondary-action:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.btn-form-submit-cta i {
    display: inline-block !important; /* Forces visibility */
    margin-left: 8px;                 /* Provides space */
    pointer-events: none;             /* Ensures clicks pass to the button */
}
/* Complex Layered 3D Perspective Canvas Container */
.hero-preview-container-3d {
    perspective: 1500px;
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
    position: relative;
    height: 480px;
}

.glass-card {
    background: var(--card-glass-bg);
    border: 1px solid var(--card-glass-border);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.main-preview-ui-card {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    padding: 30px;
    text-align: left;
    transition: transform 0.1s ease;
}

.mock-ui-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}

.mock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mock-dot.red { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #27c93f; }

.mock-title {
    font-size: 12px;
    color: var(--text-muted-gray);
    margin-left: 12px;
    font-weight: 500;
}

.mock-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.streak-pill {
    font-size: 12px;
    background: rgba(212, 255, 0, 0.1);
    color: var(--argon-brand-neon);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(212, 255, 0, 0.2);
}

.task-count {
    color: var(--text-muted-gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.mock-task-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.task-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
}

.mock-task-item.checked .task-checkbox {
    border-color: var(--argon-brand-neon);
    color: var(--argon-brand-neon);
}

.mock-task-item.verified .task-checkbox {
    background: var(--text-primary-white);
    border-color: var(--text-primary-white);
    color: var(--bg-base-dark);
}

.task-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.task-info p {
    font-size: 12px;
    color: var(--text-muted-gray);
}

.task-stat {
    margin-left: auto;
    font-weight: 700;
    font-size: 14px;
}

.task-stat.positive { color: var(--argon-brand-neon); }
.task-stat.completed { color: #27c93f; }

/* Sublayers 3D positioning configs */
.floating-widget {
    position: absolute;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.1s ease;
}

.widget-left {
    bottom: 40px;
    left: -120px;
    width: 240px;
    transform: translateZ(40px);
}

.widget-right {
    top: 60px;
    right: -140px;
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    transform: translateZ(60px);
}

.widget-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(212, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--argon-brand-neon);
    font-size: 18px;
}

.widget-right h4 {
    font-size: 14px;
    color: var(--text-muted-gray);
}

.widget-right p {
    font-size: 18px;
    font-weight: 700;
}

.widget-avatar-row {
    margin-top: 8px;
    width: 100%;
}

.mini-progress-circle {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Sections Mechanics Definitions */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--argon-brand-neon);
    margin-bottom: 12px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-center { text-align: center; }
.d-block { display: block; }

.section-subtitle-center {
    font-size: 16px;
    color: var(--text-muted-gray);
    max-width: 600px;
    margin: 0 auto 64px auto;
    line-height: 1.6;
}

/* About Layout Configurations */
.about-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted-gray);
    margin-bottom: 32px;
}

.about-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.check-item i {
    color: var(--argon-brand-neon);
}

.modern-info-box {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow-orange) 0%, transparent 60%);
}

.info-icon-large {
    font-size: 48px;
    color: var(--argon-brand-neon);
    margin-bottom: 24px;
}

.modern-info-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modern-info-box p {
    font-size: 14px;
    color: var(--text-muted-gray);
    line-height: 1.6;
}

/* Bento Adaptive Layout Grid Infrastructure */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    transition: transform 0.4s var(--transition-fluid-cubic), border-color 0.4s;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 255, 0, 0.3);
}

.grid-col-2 {
    grid-column: span 2;
    flex-direction: row;
}

.card-content {
    max-width: 320px;
    z-index: 2;
}

.bento-card i {
    font-size: 32px;
    margin-bottom: 24px;
    display: block;
}

.icon-accent-1 { color: #3b82f6; }
.icon-accent-2 { color: #ef4444; }
.icon-accent-3 { color: #10b981; }
.icon-accent-4 { color: #f59e0b; }
.icon-accent-5 { color: #a855f7; }
.icon-accent-6 { color: #ec4899; }

.bento-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-muted-gray);
    line-height: 1.6;
}

.bento-graphic-mock {
    margin-left: auto;
    width: 240px;
    height: 100%;
    background: rgba(255,255,255,0.01);
    border-left: 1px solid rgba(255,255,255,0.04);
    position: relative;
}

.design-mock .vector-nodes-simulation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 16px;
}

.vector-nodes-simulation .node {
    width: 12px;
    height: 12px;
    border: 2px solid var(--argon-brand-neon);
    background: var(--bg-base-dark);
}

/* Localized Investment Card Pricing Layout Matrix */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s var(--transition-fluid-cubic);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(15,25,45,0.8) 0%, rgba(10,15,30,0.65) 100%);
    border-color: rgba(212, 255, 0, 0.25);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--argon-brand-neon);
    color: var(--bg-base-dark);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted-gray);
    margin-bottom: 16px;
}

.price-display {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary-white);
    display: flex;
    align-items: baseline;
}

.price-display .plus-sign {
    color: var(--argon-brand-neon);
    font-size: 24px;
    margin-left: 2px;
}

.price-subtext {
    font-size: 13px;
    color: var(--text-muted-gray);
    margin-top: 4px;
    margin-bottom: 40px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--argon-brand-neon);
    font-size: 12px;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-glass-border);
    color: var(--text-primary-white);
    margin-top: auto;
    transition: all 0.3s ease;
}

.btn-pricing.active, .btn-pricing:hover {
    background: var(--text-primary-white);
    color: var(--bg-base-dark);
}

/* Analytics & Administration Mechanism Layout */
.metrics-wrapper-card {
    padding: 80px 60px;
    position: relative;
}

.metrics-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--argon-brand-neon);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.metrics-heading {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.metrics-dashboard-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.giant-stat-display {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -5px;
    color: var(--text-primary-white);
    margin-bottom: 16px;
    transition: color 0.5s ease;
}

.stat-explanation-sub {
    font-size: 15px;
    color: var(--text-muted-gray);
    line-height: 1.5;
}

.sub-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sub-metric-item {
    padding: 10px 0;
}

.sub-metric-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sub-metric-item p {
    font-size: 13px;
    color: var(--text-muted-gray);
    line-height: 1.4;
}

.border-x {
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding-left: 24px;
    padding-right: 24px;
}

.border-top {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 32px;
}

/* Administrative Input Panels Drawer UI Overlay */
.admin-panel-toggle-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: flex-end;
}

.btn-admin-toggle {
    background: none;
    border: none;
    color: rgba(255,255,255,0.2);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.btn-admin-toggle:hover {
    color: var(--argon-brand-neon);
}

.admin-control-panel-drawer {
    margin-top: 24px;
    background: rgba(0,0,0,0.3);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 16px;
    max-height: 500px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.4s var(--transition-fluid-cubic);
}

.admin-control-panel-drawer.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    border-color: transparent;
}

.admin-drawer-inner {
    padding: 32px;
}

.admin-drawer-inner h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.admin-warning-text {
    font-size: 12px;
    color: var(--text-muted-gray);
    margin-bottom: 20px;
}

.admin-input-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-input-group input, .admin-input-group select {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-glass-border);
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-stack-jakarta);
    font-size: 13px;
}

.admin-input-group input:focus, .admin-input-group select:focus {
    outline: 1px solid var(--argon-brand-neon);
}

.admin-input-group select option {
    background: var(--bg-base-dark);
}

.btn-admin-submit {
    background: var(--text-primary-white);
    color: var(--bg-base-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.admin-status-console {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
}

.admin-status-console.success { color: #27c93f; }
.admin-status-console.error { color: #ff5f56; }

/* Leadership Interface Nodes Structures CSS Styling */
.team-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-interactive-node {
    padding: 48px 24px;
    transition: transform 0.4s var(--transition-fluid-cubic);
}

.team-interactive-node:hover {
    transform: scale(1.02);
}

.team-avatar-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    padding: 6px;
    border: 2px solid var(--card-glass-border);
    position: relative;
}

.avatar-image-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: rgba(255,255,255,0.05);
}

.team-interactive-node h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role-label {
    font-size: 13px;
    color: var(--text-muted-gray);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-social-node-links a {
    color: var(--text-muted-gray);
    font-size: 16px;
    transition: color 0.3s;
}

.team-social-node-links a:hover {
    color: var(--argon-brand-neon);
}

/* Form Directive & Funnel Containers CSS Layout */
.download-wrapper {
    padding: 64px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.interactive-lead-form {
    margin-top: 32px;
    margin-bottom: 40px;
}

.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.input-field-wrapper label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-gray);
}

.input-field-wrapper input, .input-field-wrapper select, .input-field-wrapper textarea {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-glass-border);
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-stack-jakarta);
    font-size: 14px;
    transition: border-color 0.3s, background-color 0.3s;
}

.input-field-wrapper input:focus, .input-field-wrapper select:focus, .input-field-wrapper textarea:focus {
    outline: none;
    border-color: var(--argon-brand-neon);
    background-color: rgba(255,255,255,0.04);
}

.input-field-wrapper select option {
    background: var(--bg-base-dark);
    color: #fff;
}

.btn-form-submit-cta {
    width: 100%;
    background: var(--text-primary-white);
    color: var(--bg-base-dark);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s var(--transition-fluid-cubic);
}

.btn-form-submit-cta:hover {
    background: var(--argon-brand-neon);
    transform: translateY(-2px);
}

.technical-contact-subgrid {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 32px;
}

.contact-node {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon-accent {
    font-size: 20px;
    color: var(--argon-brand-neon);
}

.contact-node h5 {
    font-size: 12px;
    color: var(--text-muted-gray);
    margin-bottom: 4px;
}

.links-wrapper a {
    color: var(--text-primary-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.links-wrapper .splitter {
    color: rgba(255,255,255,0.2);
    margin: 0 8px;
}



.qr-code-showcase {
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--card-glass-border);
    padding: 40px;
    border-radius: 24px;
}

.qr-code-showcase p {
    font-size: 13px;
    color: var(--text-muted-gray);
}

.qr-box-wrapper {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 16px;
    margin: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-simulated-graphics {
    font-size: 110px;
    color: var(--bg-base-dark);
}

.qr-code-showcase .qr-subtext {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary-white);
}

/* Studio Global Footer Styles */
.glass-footer {
    border-top: 1px solid var(--card-glass-border);
    background: rgba(3,7,18,0.9);
    backdrop-filter: blur(20px);
    padding: 80px 40px 40px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand-sec h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand-sec p {
    font-size: 14px;
    color: var(--text-muted-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--argon-brand-neon);
    color: var(--bg-base-dark);
    transform: translateY(-2px);
}

.footer-link-group h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-gray);
    margin-bottom: 24px;
}

.footer-link-group a {
    display: block;
    color: var(--text-muted-gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-link-group a:hover {
    color: var(--text-primary-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted-gray);
}


@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .about-layout-grid, .metrics-dashboard-grid, .download-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .bento-grid, .pricing-grid, .team-grid-layout { grid-template-columns: 1fr; }
    .grid-col-2 { grid-column: span 1; flex-direction: column; }
    .bento-graphic-mock { width: 100%; height: 140px; border-left: none; border-top: 1px solid rgba(255,255,255,0.04); margin-top: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .mobile-menu-toggle { display: block; }
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--bg-base-dark); flex-direction: column; padding: 40px; border-bottom: 1px solid var(--card-glass-border); text-align: center; }
    .nav-links.active { display: flex; }
    .nav-actions { display: none; }
}

/* --- NEW: Optimized for Short/Small Mobile Screens --- */

@media (max-height: 700px) {
    /* Reduce Hero padding to fit more content on screen */
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 32px !important;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Shrink the 3D preview container on small heights to prevent vertical scroll */
    .hero-preview-container-3d {
        height: 300px;
        transform: scale(0.85);
        margin-top: 0;
    }

    /* Reduce vertical padding in sections */
    .section-container {
        padding: 60px 20px;
    }

    /* Make buttons and inputs slightly more compact */
    .btn-primary-action, .btn-secondary-action {
        padding: 12px 24px;
    }
}

/* Mobile-Specific Refinements (Already existing, keeping for context) */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .sub-metrics-grid { grid-template-columns: 1fr 1fr; }
    .form-row-double { display: flex; flex-direction: column; gap: 10px; }
    
    /* Ensure the Download Wrapper fits */
    .download-wrapper { padding: 30px; }
}